@charset "utf-8";
/* ANTIKA ANTIQUES STYLE SHEET */

body  {
	font: 95% Verdana, Arial, Helvetica, sans-serif;
	background-color:transparent; /*IE hack for transparent iframes*/
	background-image:url(../images/1x2000_bg-gradient.jpg); background-repeat:repeat-x;
	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: #000000;
}
#outer-container { 
	width: 770px;  /* this will create an outer container of 770 pixels to hold the bg image */
	background-image:url(../images/770px_bg-shadow.png); background-repeat:repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
}
#container { 
	width: 740px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-color: #999999;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header { 
	float: left; /* since this element is floated, a width must be given */
	width: 740px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #DDDDDD;
	border-bottom:1px solid #5b0e00;
	padding: 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 

#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 */
}
#mainContent {
	margin: 0 0 0 200px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the leftnav 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: 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color:#FFFFFF;
}

#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	/*border-top:1px solid #5b0e00;*/
	border-top:1px solid #999999;
	background:#DDDDDD; 
} 
#footer-shadow { 
	width: 770px;  /* this will create an outer container of 770 pixels to hold the footer bg image */
	background-image:url(../images/770px_bg-footer-shadow.png); background-repeat:no-repeat;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}

/* Left Menu Elements */
#leftnav
{
float: left; /* since this element is floated, a width must be given */
width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
}

#leftnav ul
{
margin: 0;
padding: 0;
list-style-type: none;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
}

#leftnav li { margin: 0; }

#leftnav a
{
display: block;
padding: 4px 2px 4px 4px;
/*border-bottom:1px solid #5b0e00;*/
border-bottom:1px solid #FFFFFF;
background-color: #999999;
}

#leftnav a:link, #navlist a:visited
{
color: #FFFFFF;
text-decoration: none;
}

#leftnav a:hover
{
border-bottom:1px solid #FFFFFF;
background-color: #A82811;
color: #FFFFFF;
}

#active a:link, #active a:visited, #active a:hover
{
border-bottom:1px solid #FFFFFF;
background-color: #A82811;
color: #FFFFFF;
}


p,ul,li,blockquote{color:#000000;}

p {margin:5px 12px 10px 0px; font-size:95%;}

h1,h2{font-family:Georgia, "Times New Roman", Times, serif;}

h1{font-size:140%; color:#5b0e00; margin:10px 16px 0px 0px;}

h2{font-size:120%; color:#666600; margin:0px 16px 5px 0px;}

h3{font-size:100%; font-family:Verdana, Arial, Helvetica, sans-serif; color:#BD8D46; margin:12px 12px 0px 0px;}

ul{ margin:0px 16px 12px 38px; color:#666666; font-size:85%;}

li{margin-left:24px;}

a{color:#333333; text-decoration:underline;}

a:hover{color:#333333; text-decoration:underline; background-color:#FFFFCC;}

a:visited{ color:#333333; text-decoration:underline;}

a:visited:hover{color:#333333; text-decoration:underline;}

blockquote{margin:5px 12px 12px 20px; font-size:80%; }

.breadDiv{ border-bottom:1px solid #666666; border-top:1px solid #666666;}

.breadcrumb{color:#666666; font-size:70%; text-decoration:none; margin:2px 16px 2px 0px;}

.small1{font-size:75%;}

.photo-disclaimer {font-size:80%; margin-bottom:0px; background-color:#DDDDDD; padding:5px;}

.marginbottom0{margin-bottom:0px;}

.margintop0{margin-top:0px;}

.annotation1{font-size:75%; color: Red; background-color:#CCCCCC; }

.listnone{list-style-type:none;}

* html img, * html #outer-container, * html #footer-shadow { behavior: url(iepngfix.htc); } /* force IE 6 and earlier to support PNG transparency - this style sheet, the .htc file, and the blank.gif image should be in the same folder */

--> 
</style>

<!--[if IE 5]>
<style type="text/css"> 
/* place css box model fixes for IE 5* in this conditional comment */
#leftnav { width: 230px; }
</style>
<![endif]-->

<!--[if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
#mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]-->
