/* Start of CMSMS style sheet 'INT-Basic' */
/* browsers interpret margin and padding a little differently, we'll remove all default padding and margins and set them later on */
* {
	margin: 0;
	padding: 0;
}
  
@font-face {
	font-family: 'Futura-CondensedLight-NormalReg';
	src: url('fonts/Futura-CondensedLight-Normal.eot');
	src: local('Futura-CondensedLight-Normal Regular'), local('Futura-CondensedLight-Normal'), url('fonts/Futura-CondensedLight-Normal.woff') format('woff'), url('fonts/Futura-CondensedLight-Normal.ttf') format('truetype'), url('fonts/Futura-CondensedLight-Normal.svg#Futura-CondensedLight-Normal') format('svg');
}

@font-face {
	font-family: 'Futura-BoldRegular';
	src: url('fonts/Futura-Bold.eot');
	src: local('Futura-Bold Regular'), local('Futura-Bold'), url('fonts/Futura-Bold.woff') format('woff'), url('fonts/Futura-Bold.ttf') format('truetype'), url('fonts/Futura-Bold.svg#Futura-Bold') format('svg');
}

@font-face {
	font-family: 'FuturaBook';
	src: url('fonts/Futura_Book_BT.eot');
	src: local('Futura Book'), local('FuturaBT-Book'), url('fonts/Futura_Book_BT.ttf') format('truetype'), url('fonts/Futura_Book_BT.svg#FuturaBT-Book') format('svg');
}
 
 
 /*Set initial font styles*/
body {
	text-align: left;
	font-size: 75.01%;
	line-height: 1em;
 }
 
 
/*set font size for all divs, this overrides some body rules*/
div {
	font-size: 1em;
}
/*if img is inside "a" it would have borders, we don't want that*/
img {
	border: 0;
}
/*default link styles*/
/* set all links to have underline and bluish color */
a, a:link a:active {
	text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
	background-color: inherit;
	color: #18507C;
}
a:visited {
	text-decoration: underline;
	background-color: inherit;
	color: #18507C;
/* a different color can be used for visited links */
}
/* remove underline on hover and change color */
a:hover {
	text-decoration: none;
	background-color: inherit;
	color: #385C72;
}

/*****************basic layout *****************/
body {
	margin: 0;
	padding: 0;
	/* default text color for entire site*/
	color: #333;
	background-color: #F5D06F;
	background-repeat: repeat-x;
	background-position: left top;
 }

div#pagewrapper {
	/* min max width, IE wont understand these, so we will use java script magic in the <head> */
 	color: black;
	width: 995px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	position: relative;
 }
/* header, we will hide h1 a text and replace it with an image, we assign a height for it so the image wont cut off */
div#header {
	/* adjust according your image size */
	height: 151px;
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;	/* you can set your own image here, will go behind h1 a image */
	position: relative; /* border just the bottom */
 }
div#header h1 a {
	/* this will make the "a" link a solid shape */
	display: block;
	/* adjust according your image size */
	height: 132px;
	/* this hides the text */
	text-indent: -999em;
	/* old firefox would have shown underline for the link, this explicitly hides it */
	text-decoration: none;
	background-image: url(images/cms/logo1.gif);
	background-repeat: no-repeat;
	background-position: left top;
	width: 254px;
	margin-left: 45px;
}
div#header h1 {
	margin: 0;
	padding: 0;
/*these keep IE6 from pushing the header to more than the set size*/
	line-height: 0;
	font-size: 0;
/* this will keep IE6 from flickering on hover */
 
}
div#header h2 {
/* this is where the site name is */
	float: right;
	line-height: 1.2em;
/* this keeps IE6 from not showing the whole text */
	font-size: 1.5em;
/* keeps the size uniform */
	margin: 35px 65px 0px 0px;
/* adjust according your text size */
	color: #f4f4f4;
}
/* Header Balls and Link styles */
#header-balls{
	position: absolute;
	top: -5px;
	right: -10px;
}
#header-balls ul{
	margin: 0px;
	padding: 0px;
 }
#header-balls ul li{
	float: left;
	list-style-type: none; 
 }
#header-balls #idearoom a{
	background-image: url(images/cms/headerballs/idea.gif);
	background-repeat: no-repeat;
	background-position: bottom;
	height: 123px;
	width: 281px;
	font-size: 1px;
	text-indent: -9999px;
	display: block;
} 
#header-balls #ftp a{
	background-image: url(images/cms/headerballs/ftp.gif);
	background-repeat: no-repeat;
	background-position: bottom;
	height: 123px;
	width: 76px;
	font-size: 1px;
	text-indent: -9999px;
	display: block;
}  
#header-balls #igx a{
	background-image: url(images/cms/headerballs/IGX.gif);
	background-repeat: no-repeat;
	background-position: bottom;
	height: 123px;
	width: 127px;
	font-size: 1px;
	text-indent: -9999px;
	display: block;
}  
#header-balls #igx a:hover, #header-balls #ftp a:hover, #header-balls #idearoom a:hover {
	background-position: top;
}
 /* End Header Balls and Link styles */


div.breadcrumbs {
/* CSS short hand rule first value is top then right, bottom and left */
	padding: 1em 0em 1em 1em;
/* its good to set font sizes to be relative, this way viewer can change his/her font size */
	font-size: 90%;
/* css shorthand rule will be opened to be "0px 0px 0px 0px" */
	margin: 0px;
 }
div.breadcrumbs span.lastitem {
	font-weight: bold;
}
div#search {
	/* enough width for the search input box */
	width: 10em;
	text-align: right;
	position: absolute;
	top: 75px;
 	height: 4em;
	margin-top: 0;
	margin-right: 1em;
	margin-bottom: 0;
	padding-top: 0.5em;
	padding-right: 0;
	padding-bottom: 0.2em;
	padding-left: 0;
	left: 845px;
}
/* a class for Submit button for the search input box */
input.search-button {
	border: none;
	height: 19px;
	width: 63px;
	margin-left: 5px;
	/* makes the hover cursor show, you can set your own cursor here */
	cursor: pointer;
	margin-top: 10px;
	padding-top: 0px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 0px;
	background-image: url(images/cms/Search.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	font-size: 1px;
	text-indent: -9999px;
	position: absolute;
	left: -5px;
	bottom: 0px; 
}

div#content {
 	padding: 0px;
	color: #333333;
	position: relative;
	display: block;
	float: left;
	margin: 0px;
	font-family: FuturaBook, Arial Narrow, Tahoma,Geneva, Verdana, sans-serif;
	/* Normal font stack for IE -cuz the weft conversion tool is crap 
	_font-family: Arial Narrow, Tahoma,Geneva, Verdana, sans-serif;*/
 }

div#content strong{
 	font-family: Futura-BoldRegular, Arial Narrow, Tahoma,Geneva, Verdana, sans-serif;
	/* Normal font stack for IE -cuz the weft conversion tool is crap 
	_font-family: Arial Narrow, Tahoma,Geneva, Verdana, sans-serif;*/
 }

/* Basic Form Styling  */
fieldset{
	padding: 10px;
	width:300px;
	border: 1px solid #AAD4E6;
}
input{
	margin-top: 5px;
	margin-right: 5px;
}

.advancedcontactform span{
	margin-bottom: 10px;
	display: block;
	color: #FABA3F;
	padding-bottom: 5px;
}

legend{
	font-weight: bold;
	color: #0186A9;
}
textarea{
	height: 100px;
	width: 325px;
	padding: 0px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

/* this gets all the outside calls that were used on the div#main before  */
div#main {
	width: 506px;
	height: 400px;
	float: left;
	background-color: #FFFFFF;
	position: relative;
	padding-top: 32px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-image: url(images/cms/MainBlockBck.gif);
	background-repeat: repeat-x;
	background-position: top;
	overflow: hidden;
	font-size: 1.25em;
 }

#onecolumn{
	width: 995px;
	background-color: #FFFFFF;
	background-image: url(images/cms/MainBlockBck.gif);
	background-repeat: repeat-x;
	background-position: top;
	height: 400px;
	font-size: 1.5em;
	overflow: hidden;
}
#onecolumn #message{
	padding: 50px;
}
#myframe {
	height: 650px;
	/* border: 1px solid #FF0000; */
}

div#subnav {
	width: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
 }
 
#scrollbar_container {
	position:absolute;
	width: 100%;
	height: 300px;
	top: 2.5em;
	_top: 4.5em;
} 

#scrollbar_track {
	position:absolute;
	top:2.5em;
	right:0;
	height:100%;
	width:10px;
	cursor:move;
	margin-right: 10px;
	background-image: url(images/cms/ScrollTrackBGD.png);
	background-repeat: no-repeat;
	background-position: center center;
   } 
    
#scrollbar_handle {  
	width:10px;  
	background-color:#73A5C8;  
	cursor: pointer;  
	-moz-border-radius: 5px;  
	-webkit-border-radius: 5px;  
	opacity:0.9;  
	-moz-opacity:0.9;  
} 
#scrollbar_content{
	overflow: hidden;
	width:  300px;
	height: 310px;
	padding-left: 105px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-right: 100px;
	margin-top: 50px;
	margin-bottom: 50px;
 } 
 
  
/* Portfolio Layout & Styles */

.paginationstyle{  
	width: 250px;
	text-align: center;
	padding: 2px 0;
	margin: 10px 0;
 }

.paginationstyle select{ 
	border: 1px solid navy;
	margin: 0 15px;
}

.paginationstyle a{

 /*Pagination links style*/
	padding: 0 5px;
	text-decoration: none;
	border: 1px solid black;
	color: navy;
	background-color: white;
}

.paginationstyle a:hover, .paginationstyle a.selected{
	color: #000;
	background-color: #FEE496;
}

.paginationstyle a.disabled, .paginationstyle a.disabled:hover{ /*Style for "disabled" previous or next link*/
	background-color: white;
	cursor: default;
	color: #929292;
	border-color: transparent;
}

.paginationstyle a.imglinks{ /*Pagination Image links style (class="imglinks") */
	border: 0;
	padding: 0;
}

.paginationstyle a.imglinks img{
	vertical-align: bottom;
	border: 0;
}

.paginationstyle a.imglinks a:hover{
	background: none;
}

.paginationstyle .flatview a:hover, .paginationstyle .flatview a.selected{ /*Pagination div "flatview" links style*/
	color: #000;
	background-color: yellow;
}
 
.portfolio strong{
	font-weight: bold;
	color: #0186A9;
 }

/* Portfolio Page Navigation */
#paginatediv{
	position: absolute;
	bottom: 20px;
	left: 125px;
} 
.thumbnail{
	margin-left: 200px;
	clear: both;
	margin-top: 25px;
  }

.thumbnail:hover{
	background-color: transparent;
	z-index: 50;
}
.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
 	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: 20px;
	left: 20px; /*position where enlarged image should offset horizontally */
	position: absolute;
}

#content .virtualpage ul{
	margin-top: 50px;
	width: 455px;
}
/*End Portfolio */

#print{
	padding-top: 35px;
	padding-left: 10px;
	position: absolute;
	bottom: 5px;
	right: 30px;
	z-index: 100;
}
div#sidebar {
	float: left;
	width: 489px;
	display: block;
	background-color: #FABA3F;
	background-image: url(images/cms/SidebarBck.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 433px;
	overflow: hidden;
}
/* If we have three columns set up the two columns in the normal sidebar */ 
#sb-cola{
	float: left;
	width: 153px;
	display: block;
	padding-top: 30px;
	text-align: center;
}
#sb-cola a{
	text-transform: uppercase;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 12px;
	line-height: 18px;
	font-family: FuturaBook, Arial Narrow, Tahoma,Geneva, Verdana, sans-serif;
	letter-spacing: .05em;
    }
#sb-cola a:hover{
	color: #0087A9; 
}
#content #sb-cola h1{
	color: #0186A9;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 5px;
}
#content #sb-cola h2{
	color: #FFFFFF;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: normal;
}
#content #sb-cola h3{}
#content #sb-cola h4{}

#content #sb-cola p{
	font-size: 11px;
	padding-right: 10px;
	padding-left: 10px;
}

#sb-colb{
	float: left;
	width: 335px;
	display: block;
}
/* End three columns set up */ 
div#footer {
 	font-family: Futura-CondensedLight-NormalReg, Arial Narrow, Tahoma,Geneva, Verdana, sans-serif;
	color: #595959;
	font-size: 13pt;
	display: block;
	padding: 0px;
     }
#footer-cola{
	font-size: 14px;
	width: 491px;
	padding-top: 10px;
	float: left;
	display: block;
	padding-left: 15px;
}
#footer-colb{
	width: 489px;
	padding-top: 10px;
	float: left;
	display: block;
	background-color: #0387A7;
	padding-bottom: 10px;
 
}
#footer-colb ul{
	margin: 0px;
	padding: 0px;
}
#footer-colb li{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	float: left;
}
#footer-colb a{
	color: #D6F5FE;
	padding: 5px;
}
#footer-colb a:hover{}

div#footer p {
/* sets different font size from default */
/* some air for footer */
	padding: 1.5em;
/* centered text */
	text-align: center;
	margin: 0;
}
div#footer p a {
/* footer link would be same color as default we want it same as footer text */
	color: #595959;
}
/* as we hid all hr for accessibility we create new hr with div class="hr" element */
div.hr {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-top-color: #666666;
	border-right-color: #666666;
	border-bottom-color: #666666;
	border-left-color: #666666;
	margin-top: 10px;
	margin-bottom: 10px;
}
 
/********************CONTENT STYLING*********************/
/* HEADINGS */
div#content h1 {
 	font-size: 2em;
	line-height: 1em;
	margin: 0;
}
div#content h2 {color: #5AB1C7;
	line-height: 1.3em;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0.75em;
	margin-left: 0px;
	font-size: 1.8em;
	font-weight: normal;
 }
div#content h3 {
	color: #999999;
	font-size: 1em;
	line-height: 1em;
	margin: 0 0 0.5em 0;
	font-weight: normal;
}
div#content h4 {
	color: #294B5F;
	font-size: 1em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;	
	font-family: Futura-BoldRegular, Arial Narrow, Tahoma,Geneva, Verdana, sans-serif;
 }
div#content h5 {
	color: #294B5F;
	font-size: 1em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}
div#content h6 {
	color: #294B5F;
	font-size: 1em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}
/* END HEADINGS */
/* TEXT */
p {
	/* default p font size, this is set different in some other divs */
	font-size: 1em;
	/* some air around p elements */
	margin: 0 0 1.5em 0;
	line-height: 1.4em;
	padding: 0;
}
blockquote {
	border-left: 10px solid #ddd;
	margin-left: 10px;
}
strong, b {
/* explicit setting for these */
	font-weight: bold;
}
em, i {
/* explicit setting for these */
	font-style: italic;
}
/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
/* css-3 */
	white-space: pre-wrap;
/* Mozilla, since 1999 */
	white-space: -moz-pre-wrap;
/* Opera 4-6 */
	white-space: -pre-wrap;
/* Opera 7 */
	white-space: -o-pre-wrap;
/* Internet Explorer 5.5+ */
	word-wrap: break-word;
	font-family: "Courier New", Courier, monospace;
	font-size: 1em;
}
pre {
/* black border for pre blocks */
	border: 1px solid #000;
/* set different from surroundings to stand out */
	background-color: #ddd;
	margin: 0 1em 1em 1em;
	padding: 0.5em;
	line-height: 1.5em;
	font-size: 90%;
}
/* Separating the divs on the template explanation page */
div.templatecode {
	margin: 0 0 2.5em;
}
/* END TEXT */
/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
 	line-height: 1.4em;
	margin: 0 0 1.5em 0;
	_list-style-type: none;
}
div#main ul li,
div#main ol li {
	margin: 0 0 0.25em 3em;
}
/* definition lists topics on bold */
div#main dl {
	margin-bottom: 2em;
	padding-bottom: 1em;
	border-bottom: 1px solid #c0c0c0;
}
div#main dl dt {
	font-weight: bold;
	margin: 0 0 0 1em;
}
div#main dl dd {
	margin: 0 0 1em 1em;
}
/* END LISTS */

/* Bio Block Styles */
#bio{
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 8px; 
}
 
/* End of 'INT-Basic' */

