@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	margin: 0 0 0 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0 0 0 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;
}
.thrColFix #container { 
	height:722px;
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url("starworks_main_bg.jpg"/*tpa=http://www.tama.com/site/id/21/starworks/images/starworks_main_bg.jpg*/) repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	margin-bottom:0;
	padding:0;
	border-top: 0px solid #ffffff;
	border-left: 0px solid #ffffff;
	border-right: 0px solid #ffffff;
	border-bottom: 0px;solid #ffffff;
	text-align: left; /* this overrides the text-align: center on the body element. */
	overflow:hidden;
} 
.thrColFix #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 330px; /* 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: none; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px; /* padding keeps the content of the div away from the edges */
}

.thrColFix #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 220px; /* 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 */
	height:800px;
	background: none; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 20px 0px 0px; /* padding keeps the content of the div away from the edges */
	margin-top:45px;	
	overflow:hidden;
	position:relative;
	top:25px;
	right: 20px;
}

.thrColFix #mainContent { 
	height:700px;
	margin: 0 350px; /* 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. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	position:relative;
	top:135px;

}
.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;
	margin:0;
	padding:0;
}

#footer { 
	margin: 5px auto; /* the auto margins (in conjunction with a width) center the page */
	height:30px;
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-color: #000000
	padding:8px;
	padding-top: 5px;
	color:#666666;
	font-size:9px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
} 

a:link { 
	color:#666666;
	font-size:9px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	}
	
a:visited { 
	color:#666666;
	font-size:9px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	}
	
a:hover { 
	color:#3399CC;
	font-size:9px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	}
	
.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #ffffff;
padding: 5px;
left: 0px;
border: 1px dotted gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -800px;
left: 60px; /*position where enlarged image should offset horizontally */

}
