/* General menu styling */
.rightnav {
margin: 0;
padding: 0;
line-height: 22px;
font-family: DepotNew-Regular;
letter-spacing: 1px;
text-transform: uppercase;
}

/* The main rightnavigation link containers */
.rightnav>li {
display: block;
float: none; /* Displaying them on the same line */
margin: 0;
padding: 0;
}

/* The main rightnavigation links */
.rightnav>li>a {
/* Layout */
display: block;
position: relative;
padding: 0px;
/* Text */
font-family: DepotNew-Regular;
color: #705d4b;
font-size: 12px;
text-decoration: none; /* Transparent background for modern browsers */
/* Making the color to change on hover with a transition */
-webkit-transition: color .2s ease-in;
-moz-transition: color .2s ease-in;
-o-transition: color .2s ease-in;
-ms-transition: color .2s ease-in;
}

/* Changing the color on hover */
.rightnav>li>a:hover, .rightnav>li:hover>a {
color: #957A63;
}

/* The links which contain rightdropdowns menu are wider, because they have a little arrow */
.rightnav>.rightdropdown>a {
padding-top: 3px;
padding-right: 0px;
padding-bottom: 3px;
padding-left: 0px;
}
