@charset "utf-8";

/* CSS Document */



/* Sets the font and table destination alignment for the enire website */

body {

	font-family:Arial, Helvetica, sans-serif;

}

body td {

	vertical-align:top;

}



/* Controls the background image and color */

.global_bkgd {

	background-image:url(../images/background.jpg);

	background-repeat:repeat-x;

	background-color:#adadad;

}



/* Controls the background of the content table */

.content_bkgd {

	background-color:#FFFFFF;

}



/* Controls the hyperlink color and text */

a:link {

	color:#0000FF;

	text-decoration:underline;

}

a:hover {

	color:#FF0000;

	text-decoration:none;

}

a:visited {

	color:#0000FF;

	text-decoration:underline;

}



/*Controls the nav menu*/

ul#list-nav {

font-size:14px;

line-height:30px;

list-style:none;

margin:0;

padding:0;

}

ul#list-nav li {

display:inline;

}

ul#list-nav li a {

text-decoration:none;

width:20%;

background:#000000;

color:#FFFFFF;

float:left;

text-align:center;

}

ul#list-nav li a:hover {

background-color:#333333;

color:#FFFFFF;

}



/*controls the submenus*/

.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/

background: yellow;

}

/* ######### Default class for drop down menus ######### */

.submenucss{

position: absolute;

left: 0;

top: 0;

visibility: hidden;

border: 1px solid black;

border-bottom-width: 0;

font-size: 12px;

line-height: 24px;

z-index: 100; /* zIndex should be greater than that of shadow's below */

background: #666666;

width: 225px; /* default width for menu */

}

.submenucss ul{

margin: 0;

padding: 0;

list-style-type: none;

}

.submenucss ul li a{

width: 100%;

display: block;

border-bottom: 1px solid black;

padding: 1px 0;

text-decoration: none;

font-weight: bold;

text-indent: 5px;

color: white;

}

.submenucss a:hover{ /*hover background color*/

background: #CCCCCC;

color: #353F85;

}

/* ######### class for shadow DIV ######### */

.submenushadow{ /*CSS for shadow. Keep this as is */

position: absolute;

left: 0;

top: 0;

z-index: 99; /*zIndex for shadow*/

background: black;

visibility: hidden;

}



/* Controls the font attributes for the page titles */

.pageTitle {

	font-size:30px;

	font-weight:bold;

	margin-top:-10px;

	text-align:center;

	text-decoration:underline;

}



/* Controls the footer text */

.footer {

	font-size:12px;

	text-align:justify;

}



/* Controls the index page tables with the brochures */

.index_tables {

	border:#666666 thin solid;

	padding: 1px 1px 1px 1px;

}

.index_tables td {

	border:#666666 thin solid;

	width:125px;

	padding:5px 5px 5px 5px;

	font-size:12px;

	text-align:center;

}



/* Controls the grey shadinf for the comparison tables on atk-mtk-utk page */

.comparison_bkgd {

	background-color:#CCCCCC;

}

.comparison_blk_bkgd {

	background-color:#000000;

	color:#FFFFFF;

	font-weight:bold;

	vertical-align:top;

}



/* Controls the table spacing/padding/margins for the schematics page */

.schematic_table td {

	padding:0px 0px 10px 40px;

	width:25%;

}



/* Controls the <ip> link */

.invisiblePixels a:link {

	color:#999999 !important;

	text-decoration:none;

}

.invisiblePixels a:visited {

	color:#999999 !important;

	text-decoration:none;

}

.invisiblePixels a:hover {

	color:#FFFFFF !important;

