

/* ~~ Element/tag selectors ~~ */

ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */

	padding: 0;

	margin: 0;

}





a:visited {

		color: rgb(132,207,238);
} 


a:hover {
	color: rgb(132,207,238)

}   



a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */

text-decoration: none;	}

a:active {color: rgb(254,182,100);
}  /* selected link */







/* ~~ This is the layout information. ~~ 






/* ~~ This grouped selector gives the lists in the .content area space ~~ */

.content ul, .content ol { 

	padding: 0 0px 0px 0px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */

}



/* ~~ miscellaneous float/clear classes ~~ */

.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: 0px;

}

.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */

	float: left;

	margin-right: 0px;

}

.clearfloat { /* this class can be placed on a br or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */

	clear:both;

	height:0;

	font-size: 1px;

	line-height: 0px;

}

table.one

{

border-style:solid;

border-width:1px;

}

td.one

{

padding-left:20px;

border-style:solid;

border-width:1px;

}




div.sc_menu {
	/* Set it so we could calculate the offsetLeft */

	position: relative;
	height: 420px;
	width: 750px;
	overflow: auto;
	margin-top: 40px;
}

ul.sc_menu {

	display: block;

	height: 110px;

	/* max width here, for users without javascript */	

	width: 9525px;	

	/* padding: 0px 0 0 15px; 

	/* removing default styling */

	margin: 0;

	background: url('navigation.png');		

	list-style: none;

}

.sc_menu li {

	display: block;

	float: left;	

	padding: 0 4px;

}

.sc_menu a {

	display: block;

	text-decoration: none;

}
.sc_menu img {

	border: 3px #fff solid;	

	/*-webkit-border-radius: 3px;

    -moz-border-radius: 3px; */

}

/*.sc_menu a:hover img {
	

	filter:alpha(opacity=50);	

	opacity: 0.5;

}   */
 
 

 

/* Here are styles for the back button, don't look at them */

#back {

	display: block;

	width: 500px;

	text-align: center;

	color: #003469;

	font-size: 16px;

}
