@charset "UTF-8";

Author:  Jessica Levant, Prismatik Graphic Services, http://prismatik.com
Colors for this site:   	blue: 	#003366  (#036)
							tan:	#d8be8f
							gray:	#999999 (or #c4c8cc)
							red:	#cc0000   (#c00)


body, html  {
	background: #036;
	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 */
	font-family:Verdana, Geneva, sans-serif;
	font-size: .9em;
}
.caption {font-family:Verdana, Geneva, sans-serif;
	font-size: .7em; color:#999}

.blueback	{background:#036}

#container { 
	width: 912px;  
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #C4C8CC;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background:#036
} 

/* HEADERS */


#header { 
	background: #036; 
	padding: 0 20px 0 20px;  /* 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. */
	border-bottom: 1px solid; color:#c4c8cc
} 

/* SIDEBARS */

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 120px; /* 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: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
	background:#036
}

.button  a:hover{
	color:transparent;
	background-color: transparent;
	text-decoration:none
}


#sidebar2 {
	float: left; /* since this element is floated, a width must be given */
	width: 125px; /* 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: #036; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 10px 15px 20px;

}
/* MAIN CONTENT */

#mainContentHome { 
	margin: 0 0 0 0px; /* 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 */
	background: #c4c8cc;
} 


#mainContent { 
	margin: 0 20px 0 160px; /* 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 */
	background: #ddd;
} 
/* FOR GALLERIES LINK PAGE */
#mainContent2 { 
	margin: 0 20px 0 155px; /* 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. */
	background: #036;
} 


#mainContent p  { font-family:Verdana, Geneva, sans-serif;
	font-size: .9em;
	color: #036
}

td  { font-family:Verdana, Geneva, sans-serif;
	font-size: .8em;
	color: #036;
}

.comments {
	width:150px;
	font-family:Georgia;
	font-size:0.9em;
	font-style:italic;
	font-weight: bold;
	color:#C00;
	line-height:150%;
}






.inside {padding: 0 20px; }

/* FOOTER */

#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#d8be8f; 
	color:#036;
	border-top:  1px solid; border-color:#c4c8cc;
	font-family:Verdana, Geneva, sans-serif; /*duplicated rule for IE*/
	font-size: .8em; /*duplicated rule for IE*/
	text-align:center; /*duplicated rule for IE*/
} 
#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 */
	background:#d8be8f; /*duplicated rule for IE*/
	color: #036;
	font-family:Verdana, Geneva, sans-serif;
	font-size: .8em;
	text-align:center;
	
}

#footer a:link, a:visited {
	color:#C00;
	text-decoration:none;
}
#footer a:hover, a:active {
	color:#F60;
	text-decoration:none;
}

/* FLOATS */

.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;
}

