@charset "UTF-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	background-color: #6699CC;
	
	background-repeat: repeat-x;
}
.thehorsediva #container {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #6699CC;
	
	background-repeat: repeat-y;
	margin: 0 auto;
	text-align: left;
	padding-bottom: 0;
	border-right: 2px solid #660099;
	border-left: 2px solid #660099;
} 
.thehorsediva #header {
	width: 980px;
	margin: 0 auto;
	background-color: #FF0099;
	text-align: left;
	height: 170px;
	padding-top: 0;
	padding-bottom: 0;
	background-image: url(images/headerbg.jpg);
	background-repeat: repeat-y;
	border-bottom: 1px solid #660099;
	
}
.thehorsediva #headerlogobox {
	margin-left: 110px;
	padding-top: 10px;
	height: 130px;
	width: 295px;
}
.thehorsediva #shopnav{
	color: #FFCCFF;
	float: right;
	width: 200px;
	height: 148px;
	margin-top: 5px;
	margin-right: 0px;
	background-position: bottom;
	padding-bottom: 10px;
	padding-right: 0px;
}

.thehorsediva #shopnav a {
	color: #FFF;
	text-decoration: none;
	font-size: 11px;
}

.thehorsediva #shopnav a:hover {
	color: #6699CC;
	text-decoration: underline;
}
.thehorsediva #globalnav {
	margin-left: 110px;
	height: 10px;
	padding-top: 4px;
	color: #FFF;
}
.thehorsediva #globalnav a {
	color: #FFF;
	text-decoration: none;
}
.thehorsediva #globalnav a:hover {
	color: #6699CC;
	text-decoration: underline;
}
.thehorsediva #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.thehorsediva #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 210px; /* the background color will be displayed for the length of the content in the column, but no further */
	background-color: #660099;
}
.thehorsediva #sidebar1 h1 {
	padding-left: 8px;
	font-size: 16px;
	color: #6699CC;
}
.thehorsediva #sidebar1 p a {
	color: #FFFFFF;
}
.thehorsediva #sidebar1 p a:hover {
	color: #6699CC;
}
.thehorsediva #search {
	color: #FFF;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 8px;
	border-bottom: 1px solid #FFF;
}
.thehorsediva #search h2 {
	font-size: 14px;
	margin-bottom: 5px;
	color: #6699CC;
}
.thehorsediva #search a {
	color: #FFF;
	font-size: 11px;
}
.thehorsediva #registerbox {
	color: #FFF;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 8px;
	border-bottom: 1px solid #FFF;
}
.thehorsediva #registerbox h2 {
	font-size: 14px;
	margin-bottom: 5px;
	color: #6699CC;
}
.thehorsediva #registerbox a {
	color: #FFF;
	text-decoration: none;
}
.thehorsediva #registerbox a:hover {
	color: #6699CC;
}
.thehorsediva #mainContent {
	margin: 0 0 0 220px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.thehorsediva #mainContent h1 {
	margin: 0;
	padding-top: 20px;
	color: #660099;
	font-size: 19px;
}
.thehorsediva #mainContent a {
	color: #660099;
	text-decoration: none;
}
.thehorsediva #mainContent a:hover {
	color: #660099;
	text-decoration: underline;
}
.thehorsediva #mainContent h2 {
	color: #FF0099;
	font-size: 16px;
}
.thehorsediva #footer {
	background-color: #FF0099;
	background-image: url(images/stripes.gif);
	background-color: #FF0099;
	background-repeat: repeat-y;
	text-align: left;
	border-top: 1px solid #660099;
	border-bottom: 2px solid #660099;
}

.thehorsediva #footerinner {
	width: 980px;
	margin: 0 auto;
	

	padding-top: 5px;
} 
.thehorsediva #footerinner p {
	color: #660099;
	margin-left: 110px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 0px;
	padding-bottom: 10px;
	font-size: 10px;
}
.thehorsediva #footerinner p a {
	color: #660099;
	text-decoration: none;
}
.thehorsediva #footerinner p a:hover {
	color: #FFF;
	text-decoration: underline;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.smallwhitetext { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	font-size: 11px;
}
.boxout {
	padding: 3px;
	border: 1px solid #660099;
	color: #FFF;
	background-color: #FF0099;
}


#lightbox{	position: absolute;	left: 0; width: 100%; z-index: 100; text-align: center; line-height: 0;}
#lightbox img{ width: auto; height: auto;}
#lightbox a img{ border: none; }

#outerImageContainer{ position: relative; background-color: #fff; width: 250px; height: 250px; margin: 0 auto; }
#imageContainer{ padding: 10px; }

#loading{ position: absolute; top: 40%; left: 0%; height: 25%; width: 100%; text-align: center; line-height: 0; }
#hoverNav{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 10; }
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{ width: 49%; height: 100%; background-image: url(data:image/gif;base64,AAAA); /* Trick IE into showing hover */ display: block; }
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(images/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(images/nextlabel.gif) right 15% no-repeat; }

#imageDataContainer{ font: 10px Verdana, Helvetica, sans-serif; background-color: #fff; margin: 0 auto; line-height: 1.4em; overflow: auto; width: 100%	; }

#imageData{	padding:0 10px; color: #666; }
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }	
#imageData #caption{ font-weight: bold;	}
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em;	}			
#imageData #bottomNavClose{ width: 66px; float: right;  padding-bottom: 0.7em; outline: none;}	 	

#overlay{ position: absolute; top: 0; left: 0; z-index: 90; width: 100%; height: 500px; background-color: #000; }

