@charset "UTF-8";
body  {
	font: 90% Tahoma, Geneva, sans-serif;
	background:url(images/bg.jpg) repeat-x #FFF top;

	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;
}
.tau #container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 940px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-left: 1px dotted #999;
		border-right: 1px dotted #999;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
h1, h2, h3, h4 {font-family: century gothic, Tahoma, Geneva, sans-serif; font-weight:normal; letter-spacing:.05em; margin: 6px 0;}
h2 { font-size:20px;}
h3 {font-size:15px; text-transform:uppercase; }
h4, h4 a:link {color:#245EB3}


a:link, a:visited, a:active  {text-decoration:none;
border-bottom: 1px dotted #666;
color:#666;}
a:hover  {text-decoration:none;
border-bottom: 1px dotted #666;
color:#f00;}

.tau #header {
	height: 210px;
	padding: 0;
	text-align: center;
	margin-bottom:0px;
	background:url(images/tauhead.jpg)
} 
.tau #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 */
}
.tau #topmenu {
	padding: 5px;
	height:30px;
	border-top: 1px dotted #999;
		border-bottom: 1px dotted #999;
	text-align: center;
	font-size:10px;	letter-spacing:.1em;
text-transform:uppercase;
	margin-bottom:0px;
} 
.tau #topmenu 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;} 
	
.tau #topmenu a:link {text-decoration:none; border-bottom:0px;
color:#666;}

.tau #topmenu a:hover  {text-decoration:none;
border-bottom: 0px6;
color:#f00;}

.tau #footer a:link {text-decoration:none; border-bottom:0px;
color:#666;}

.tau #footer a:hover  {text-decoration:none;
border-bottom: 0px6;
color:#f00;}


 
.tau #sidebar1 {
	position: absolute;
	top: 255px;
	left: 0;
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 15px 10px; /* padding keeps the content of the div away from the edges */
}
.tau #sidebar2 {
	position: absolute;
	top: 255px;
	right: 0;
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 0px 15px; /* padding keeps the content of the div away from the edges */
}
.tau #mainContent {
	margin: 0 230px 0 220px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-right: 1px dotted #999;
	border-left: 1px dotted #999;
}
.tau #wideContent {
	margin: 0; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-right: 1px dotted #999;
	border-left: 1px dotted #999;
}
.tau #leftContent {
	margin: 0 230px 0 0; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-right: 1px dotted #999;
	border-left: 1px dotted #999;
}
.tau #footer {
	padding: 10px 10px 0 20px;
	height:40px;
	border-top: 1px dotted #999;
	border-bottom: 1px dotted #999;
	text-align: center;
	font-size:10px;
	letter-spacing:0.1em;
	text-transform:uppercase;
	margin-top:0px;
}
.small {
	font-size:11px;	
} 
.smallred {
	font-size:11px;	
	color:#C00
} 
.tau #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;} 
 

.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;
}
.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #FFF;
padding: 1px;
left: -500px;
visibility: hidden;
font-size:8px;
color: #000;
font-weight:normal;
border: 1px dotted #000;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
bottom: -300px;
left: -205px; /*position where enlarged image should offset horizontally */

}
