@charset "utf-8";
/*
--------------------------------------------------------------------------------------------
Seperate CSS files exist for specific, one page tools, like treeView.css, and sortTable.css
--------------------------------------------------------------------------------------------
*/


/* Formatting for default body text. Unless otherwise contained, this will be the default */
body
{
	font-size: 17px;
	color: black;
	font-family: 'Nanum Gothic', Arial, sans-serif;
}

/* Formatting for  header*/
header
{
	width: 100%;
	border: 0;
	margin: 0;
	padding: 0;
	display: inline-block;
	text-align: center;
}

/* Formatting for the logo on the left of the TECHNICAL SUPPORT GROUP text */ 
logoleft
{
	vertical-align: top;
	text-align: left;
	float: left;
	width: 300px;
	display: inline-block;
}

/* Formatting for main portion of header */
mainheader
{
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	align: center;
	margin: 0;
	line-height: .5;
}

/* Formatting for the logo on the right of the TECHNICAL SUPPORT GROUP text */ 
logoright
{
	vertical-align: top;
	float: right;
	width: 308px;
	display: inline-block;
}

/* Formatting for the TECHNICAL SUPPORT GROUP text in header */
h1	
{	
	font-size:	230%;
	font-weight: bold;
	color: black;
	letter-spacing: -.03em;
}	

/* Formatting for the outer main table */
#main
{
	width: 80%;
	border: 2px solid black;
	padding: 30px;
	vertical-align: top;
	margin: 0 auto;
}

#subHeader
{
	width: 85%;
	height: 100px;
	text-align: center;
	margin: 0 auto;
	display: table;
	vertical-align: middle;
	background-color: #747474;
}

/* Formatting for header in main table */
h3
{
	color: white;
	font-size: 170%;
	vertical-align: middle;
	text-align: center;
}
	
/* Formatting for the table headings */
.fileHeader
{
	font-size: 120%;
	color:	black;
	text-align: center;
	margin-bottom: 30px;
	font-weight: bold;
}	

/*
Formatting for tables with fieldsets
*/

#fieldsetTable
{
	width: 100%;
}

#fieldsetTable td, #fieldsetTable tr
{
	padding: 10px;
}

#fieldsetTable td
{
	width: 25%;
	vertical-align: top;
}


/*
	Formatting for index.html file tree/document viewer
*/
#left
{
	width: 45%;
	height: 800px;
	display: inline-block;
	left:0;
	border: 1px black;
}

#right 
{
	width: 45%;
	height: 700px;
	display:inline;
	/*float:right;*/
	float: right;
	border: 1px black;
}




/* Formatting for Fieldset elements */
fieldset {	
	color:	black;
	line-height: 1.6;
	}	




/*
--------------------------------------------------------------------------------
Styling for Hyperlinks
--------------------------------------------------------------------------------
*/

/* link is current color on page, visited is a link that's already clicked, hover is mouse hover over */
a:link, a:visited{	
	text-decoration:	none;
	color: #D10003;
	}	
		
/* styling for when mouse hovers over link */
A:hover	{	
	text-decoration:	none;
	color: black;
	}





/*
--------------------------------------------------------------------------------
Styling for navigation bar
--------------------------------------------------------------------------------
*/

/* style for navigation bar's background */
.navBack
{
	font-size: 90%;
	width: 100%;
	background: #747474;
	padding: 0;
	margin:0;
	display:table;
	text-align: center;
}

#primary_nav_wrap ul
{
	padding:0;
	margin:0;
	list-style: none;
	position:relative;
	text-align: center;
}

#primary_nav_wrap ul a
{
	display:block;
	color: white;
	text-decoration:none;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-right: 30px;
	padding-left: 30px;
	text-align: left;
}

#primary_nav_wrap ul li:last-child 
{
	border-bottom: 0;
}

#primary_nav_wrap ul li
{
	display:inline-block;
	position:relative;
	margin:0;
	padding:0;
}

#primary_nav_wrap ul li:hover
{
	background: #8C0002; 
}

#primary_nav_wrap ul ul
{
	display:none;
	position:absolute;
	top:100%;
	left:0;
	padding:0;
	background: #949494;
	/*
	
	box-shadow: 0px 3px 5px 0px black;
	*/
}

#primary_nav_wrap ul ul li
{
	float:none;
	width:200px;
	border-bottom:  1px solid  #C8C8C8;
}

#primary_nav_wrap ul ul li:last-child 
{
	border-bottom: 0;
}

#primary_nav_wrap ul ul a
{
	color: white;
	text-decoration:none;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-right: 30px;
	padding-left: 30px;
	border-right:  1px solid #8C8C8C;
}

#primary_nav_wrap ul ul ul
{
	top:0;
	left:100%;
	background: #B5B5B5;
}

#primary_nav_wrap ul li:hover > ul
{
	display:block;
}

