/*////////////////////////      HORIZONTAL DROP DOWN MENU     ///////////////////////////*/
#nav {
	width:1020px;
	height: 17px;
	margin-left: -40px;
	margin-top: -12px;
	color: #3e3e3e;
	font-family: verdana, helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
}
/*////////////////////       First Level of the Unordered List      /////////////////////  */
#nav ul {
	list-style-type: none;

}
#nav ul li {
	float: left;
	display: block;
	position: relative;
	background-color: #ff6600;
	border-top: 1px solid #ffffff;
}
#nav ul li a {
	border-right: 1px solid #ffffff;
	padding: 3px;
	display: block;
	text-align: center;
	color:#3e3e3e;
	text-decoration: none;
	height: 17px;
}
.homeButton{
	width: 115px;
}
.newRButton{
	width: 150px;
}
.specialsButton{
	width: 120px;
}
.KidsButton{
	width: 150px;
}
.browseButton{
	width: 163px;
}
.aboutUsButton{
	width: 163px;
}
.contactButton{
	width: 119px;
	border-right: none;
}
#nav ul li a:hover {
	background-color: #ff6600;
	color: #ffeda6;
}
#nav ul li a.browse {
	color: #ffeda6;
}
#nav ul li a.browse:hover {
	color:#3e3e3e;
}
#nav ul li a.aboutUs {
	color: #3e3e3e;
}
/*//////////////////////////////         Second Level of the Unordered List /////////////////////////////////////*/
#nav ul li ul {
	display: none;/*This is because we don't want this part of the list to appear till we hover over the menu*/
}
/*when we go over the first level menu the second level menu will display this way*/
#nav ul li:hover ul {
	display: block;
	position: absolute;
	left: -40px;
}
/* each particular item of the list will display this way*/
#nav ul li:hover ul li a {
	display:block;
	background:#ff6600;
	color:#3e3e3e;
	width: 152px;
	padding: 10px 5px;
	text-align: left;
	border-right: none;
}
#nav ul li:hover ul li a:hover {
     background:#ff6600;
     color:#ffeda6;
}
/*////////  Third Level of the Unordered List ///////*/
#nav ul li ul li ul li {
	display: none;/*This is because we don't want this part of the list to apear till we hover over the menu*/
}
#nav ul li ul li:hover ul li{
	display: block;
	position: relative;
	top: -37px;
	left: 190px;
}
#nav ul li ul li:hover ul li a {
	display:block;
	background:#ff6600;
	color:#3e3e3e;
	width: 140px;
	padding: 10px 5px;
	text-align: left;
	border-left: 1px solid #ffffff;
	font-size: 13px;
	font-weight: 900;
	font-family: verdana, helvetica, sans-serif;
}
/*///////  Default Links ////////////*/
a.def:link {
	color: #5f5f5f;
	text-decoration: underline;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-size: 11px;
}
a.def:visited {
	color: #5f5f5f;
	text-decoration: underline;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-size: 11px;
}
a.def:hover {
	color:#ff6600;
	text-decoration: underline;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-size: 11px;
}
a.def:active {
	color:#ff6600;
	text-decoration: underline;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-size: 11px;
}
/*//////////  Big Default Links //////////////*/
a.defbig:link {
	color: #5f5f5f;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}
a.defbig:visited {
	color: #5f5f5f;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}
a.defbig:hover {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}
a.defbig:active {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}
a.defbigactive:link {
	color: #ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}
a.defbigactive:visited {
	color: #ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}
a.defbigactive:hover {
	color: #5f5f5f;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}
a.defbigactive:active {
	color: #5f5f5f;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}
/*//////  Bigger Default Links ////////*/
a.defbigger:link {
	color: #5f5f5f;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
}
a.defbigger:visited {
	color: #5f5f5f;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
}
a.defbigger:hover {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
}
a.defbigger:active {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
}
/*//////  Inverted Colors Link ////////*/
a.oddOne:link {
	color: #ffeda6;
	background-color:#888;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}

a.oddOne:visited {
	color: #ffeda6;
	background-color:#888;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}
a.oddOne:hover {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}
a.oddOne:active {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}
/*/////////////// Links for Sub Headers  ///////////////*/
a.sub:link {
	color: #ffeda6;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	background-color:#888;
}
a.sub:visited {
	color: #ffeda6;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	background-color:#888;
}
a.sub:hover {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	background-color:#888;
}
a.sub:active {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	background-color:#888;
}
a.subactive:link {
	color: #ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	background-color:#888;
}
a.subactive:visited {
	color: #ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	background-color:#888;
}
a.subactive:hover {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	background-color:#888;
}
a.subactive:active {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	background-color:#888;
}
/*///////  Back to the Top Links ////////*/
a.toplink:link {
	color: #3e3e3e;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}
a.toplink:visited {
	color: #3e3e3e;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}
a.toplink:hover {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}
a.toplink:active {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}
/*///////////////  Big Default Links ////////////////////*/
a.title:link {
	color: #5f5f5f;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
}

a.title:visited {
	color: #5f5f5f;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
}
a.title:hover {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
}
a.title:active {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
}
/*/////////  New Releases  Default Links //////////////*/
a.releases:link {
	color: #5f5f5f;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
}
a.releases:visited {
	color: #5f5f5f;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
}
a.releases:hover {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
}
a.releases:active {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
}
/*/////////////////////  New Releases Months Links //////////////////////////*/
a.pageSubtitle:link {
	color: #3e3e3e;
	text-align: center;
	margin: 50px;
	text-decoration: none;
}
a.pageSubtitle:visited {
	color: #3e3e3e;
	text-align: center;
	margin: 50px;
	text-decoration: none;
}
a.pageSubtitle:hover {
	color:#ff6600;
	text-align: center;
	margin: 50px;
	text-decoration: none;
}
a.pageSubtitle:active {
	color:#ff6600;
	text-align: center;
	margin: 50px;
	text-decoration: none;
}
/*/////////////////////////   Footer Links  //////////////////////////////////*/
a.foot:link {
	color: #3e3e3e;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 11px;
}

a.foot:visited {
	color: #3e3e3e;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 11px;
}
a.foot:hover {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 11px;
}
a.foot:active {
	color:#ff6600;
	text-decoration: none;
	font-family: verdana, helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	font-size: 11px;
}
/*/////////////////////////   Home Page Links  //////////////////////////////////*/
a.HP:link {
	text-decoration: none;
	color: #3e3e3e;
	font-size: 11px;
	font-weight: bold;
	font-family: verdana, helvetica, sans-serif;
	line-height:100%;
	margin-bottom: 5px;
}
a.HP:visited {
	text-decoration: none;
	color: #3e3e3e;
	font-size: 11px;
	font-weight: bold;
	font-family: verdana, helvetica, sans-serif;
	line-height:100%;
	margin-bottom: 5px;
}
a.HP:hover {
	text-decoration: none;
	color: #ff6600;
	font-size: 11px;
	font-weight: bold;
	font-family: verdana, helvetica, sans-serif;
	line-height:100%;
	margin-bottom: 5px;
	
}
a.HP:active {
	text-decoration: none;
	color: #ff6600;
	font-size: 11px;
	font-weight: bold;
	font-family: verdana, helvetica, sans-serif;
	line-height:100%;
	margin-bottom: 5px;
}