/* TEMPLATE CSS
*********************************************/
html {overflow-y:scroll;}

/* LAYOUT
*********************************************/

/* Floats */
.float-left {float:left;}
.float-right {float:right;}
.group:before, .group:after {content:""; display:table;}
.group:after {clear:both;}
.ie7 .group {zoom:1;}
.clear {clear: both;}



/* Floating Layout */
body {
	margin:0;
	padding:0;
	border:0;			/* This removes the border around the viewport in old versions of IE */
	width:100%;
	background:#fff;
	min-width:600px;    	/* Minimum width of layout - remove line if not required */
					/* The min-width property does not work in old versions of Internet Explorer */
	background-image:url(../images/Study_for_Adam_sw.png);
	background-repeat:no-repeat;
	background-position:50% 20px;
	background-attachment: scroll;
	font:normal normal normal 75%/125% Calibri, Verdana, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
	height:100%;
	font-size:13px;

}


#overall{
	
	width: 980px;
	margin: 20px auto;
	height: 100%;
	border: 1px solid gray;
}

#header {

	zoom: 1;
	clear:both;
	float:left;
	width:100%;
	height: 165px;
	background-image:url(../images/gradient_header_opacity.png);
	
	border-bottom: 1px black solid;

}

#topline {
	clear:both;
	float:left;
	width: 100%;
	height: 40px;
	background-image: url(../images/background_cccccc_opacity_10x10.png);
	border-bottom: solid #bbbbbb 1px;
	position: relative;
	z-index: 100;

}

#content {
	width: 649px;
	position: relative;
	float: left;
	padding: 20px;
	

}


#sidebar {
	width: 250px;
	float: right;
	position: relative;
	min-height: 400px;
	border-left: 1px gray solid;
	padding: 20px;

}


/* Border for Sidebar */
#sidebar:before,
#sidebar:after {
content: '';
display: block;
position: absolute;
top:0;
width: 1px;/*this value should match the rounded corner radius, otherwise use 1px*/
height: 100%;
background:-webkit-gradient(
   linear,
   left top,
   left bottom,
   color-stop(0.00, gray),
   color-stop(0.60, gray),
   color-stop(1.00, #cccccc)
);
background:-moz-linear-gradient(
   left top,
   gray 0%,
   gray 60%,
   #cccccc 100%
);
}

#sidebar:before {
left:-1px;
}

#sidebar:after {
right:-1px;
}




#footer {
	clear:both;
	float:left;
	width:100%;
	background-image: url(../images/background_cccccc_opacity_10x10.png);

	border-top: solid #bbbbbb 1px;
}



/* Breadcrumbs */
.breadcrumbs {
	padding: 12px;
	float: right;
	color: #666;
	overflow-x: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 400px;
	text-align: right;
}

.breadcrumbs a{
	color: #666;
}


/* Search */
.moduletable_search{
	margin-bottom: 20px;
	padding: 0 20px;
}


/* Logo ISA */
#header img{
	float: right;
	position: relative;
	margin-top: -105px;
	margin-right: 100px;
	border: none;
}


/* TopNavigation */
/* Vertical Navigation */
#vertical-navigation { 
	list-style: none; 
	margin: 0; 
	padding: 0;
	font-size: 1.2em;
	float: left;
	position: relative;
}


/* CSS for each Parent Item */
#vertical-navigation li {
	float: left; 
	position: relative;
}

#vertical-navigation li a, #vertical-navigation li span
{
	float: left;
	display: block;
	padding: 12px;
	text-decoration: none;
	color: #666;
	text-transform: uppercase;

}

/* 
Change background color and font color 
of parent items when mouse hover 
*/
#vertical-navigation li:hover a,
#vertical-navigation li a:hover,
#vertical-navigation li:hover span,
#vertical-navigation li span:hover

{
	background-image: url(../images/navigation_opacity_10x10.png);
	color: #fff;
	z-index: 100;

}




/* 
Apply to group of Child Items
Each Child Item will be invisible by default
*/
#vertical-navigation ul {
	display: none;
	z-index: 100;

}

/* Each Child Item will be visible if mouse hover */
#vertical-navigation li:hover ul {
	display: block;
	z-index: 100;
	

}

#vertical-navigation ul
{
	float: none;
	position: absolute;
	list-style: none;
	padding: 0;
	top: 40px;
	left: 0;
	background-image: url(../images/navigation_opacity_10x10.png);
	width: 100%;
	border-top: 1px white solid;

}

#vertical-navigation ul li
{
	float: none;
	clear: none;
	margin: 0;
	padding: 0;
	width: auto;
	color: #999;
	z-index: 100;

}


/* 
Reset and re style 
link of each child item
*/
#vertical-navigation li:hover ul li a,
#vertical-navigation ul li a
{
	line-height: 200%;
	display: block;
	padding: 0 6px 0 12px;
	float: none;
	text-transform: lowercase;
	color: white;
	background: none;
	z-index: 100;

}

#vertical-navigation li:hover ul li a:hover,
#vertical-navigation ul li a:hover
{
	background: none;
	color: #000;
	z-index: 100;

}




/* Footer Navigation */
/* Vertical Navigation */
.menu_footer { 
	list-style: none; 
	margin: 0; 
	padding: 0;
	font-size: 1em;
	float: left;
	position: relative
}


/* CSS for each Parent Item */
.menu_footer li {float: left; position: relative;}

.menu_footer li a, .menu_footer li span
{
	float: left;
	display: block;
	padding: 6px;
	text-decoration: none;
/* 	color: #666; */
	text-transform: uppercase;

}







/* Content */
/* column container */
.colmask {
	position:relative;	/* This fixes the IE7 overflow hidden bug */
	clear:both;
	float:left;
	width:980px;			/* width of whole page */
	overflow:hidden;		/* This chops off any overhanging divs */
	z-index: 10;
}

/* common column settings */
.col1 {
	float:left;
	position:relative;
	width: 980px;
	overflow:hidden;
	min-height: 600px;

/* 	Just Background Opacity */
	background-image: url(../images/background_cccccc_opacity_10x10.png);
	
	z-index: 10;
}


/* Banner */
.tcvn-banner-bottom {
	display: none;
}






/* Style Classes */
.shadow {
	-moz-box-shadow: 0px 0px 5px 5px  #999;
	-webkit-box-shadow: 0px 0px 5px 5px #999;
	box-shadow: 0px 0px 5px 5px #999;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
}

.highlight{
	background: #cccccc; /* Old browsers */
	background: -moz-linear-gradient(top,  #cccccc 0%, #aaaaaa 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cccccc), color-stop(100%,#aaaaaa)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #cccccc 0%,#aaaaaa 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #cccccc 0%,#aaaaaa 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #cccccc 0%,#aaaaaa 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #cccccc 0%,#aaaaaa 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#aaaaaa',GradientType=0 ); /* IE6-9 */
	
}

.highlightreverse{
	background: #808080; /* Old browsers */
	background: -moz-linear-gradient(top,  #808080 0%, #eeeeee 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#808080), color-stop(100%,#eeeeee)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #808080 0%,#eeeeee 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #808080 0%,#eeeeee 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #808080 0%,#eeeeee 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #808080 0%,#eeeeee 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#808080', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
}

.img-border{
	padding: 5px;
	border: 1px solid gray;

}



/* Text Styling */
#header h1 {
	font-size: 2.5em;
	margin-top: 70px;
	color: yellow;
	padding: 5px;
}

#header h1 a, #header h1 a:hover, #header h1 a:visited{
	text-decoration: none;
	color: yellow;
}



h2{
	font-size: 26px;
	line-height: 26px;
}

h3{
	font-size: 20px;
	font-weight: bold;
}

h4{
	font-style: italic;
}


p, li{
	font-size: 13px;
}

a {
	color:black;
}

a:hover{
	color: yellow;
	text-decoration: none;
}

/* Newsticker */
#maskBlock {
	background-color: #333ccc;
	height: 30px;
}

.movingObj{
	font-size: 25px;
	font-weight: bold;
	color: yellow;
	line-height: 30px;
}


/* PDF, Word, Excel Symbols */
a[href$='.doc'], a[href$='.docx'] {
    background: transparent url(../images/icon_word.gif) center left no-repeat;
    padding-left: 20px;
}
a[href$='.xls'], a[href$='.xlsx'] {
    background: transparent url(../images/icon_excel.gif) center left no-repeat;
    padding-left: 20px;
}
a[href$='.pdf'] {
    background: transparent url(../images/icon_pdf.gif) center left no-repeat;
    padding-left: 20px;
}






/* Media Queries
*********************************************/

/* Landscape phones and down */
@media (max-width: 480px) { 
  
}
 
/* Landscape phone to portrait tablet */
@media (max-width: 767px) { 
  
}
 
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) { 
  
}
 
/* Large desktop */
@media (min-width: 1200px) { 
  
}


