/* Start of CMSMS style sheet 'Accessibility and cross-browser tools' */
/* accessibility */

/* 
menu links accesskeys 
*/
span.accesskey {
   text-decoration:none;
}

/* 
accessibility divs are hidden by default 
text, screenreaders and such will show these 
*/
.accessibility, hr {
   position: absolute;
   top: -999em;
   left: -999em;
}

/* 
definition tags are also hidden 
these are also used for menu links    
*/
dfn {
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}
/* end accessibility */


/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
  position: absolute;
  left: -5000px;
  width: 4000px;
}

/* make some room for the image */
a.external {
/* css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
  padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
  color: #18507C;
/* background image for the link to show wiki style arrow */
  background: url(images/cms/external.gif) no-repeat 100% 0;
}
a.external:visited {
  color: #18507C; /* a different color can be used for visited external links */

/* 
Set the last 0 to -100px to use that part of the external.gif image for different color for active links 
external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.
*/
  background: url(images/cms/external.gif) no-repeat 100% 0; 
}

a.external:hover {
  color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
  background: url(images/cms/external.gif) no-repeat 100% 0; 
  background-color: #C3D4DF;
}
/* end wiki style external links */


/* clearing */
/* 
clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item.
We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience.
Do not edit if you dont know what you are doing
*/
	.clearfix:after {
		content: "."; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	* html>body .clearfix {
		display: inline-block; 
		width: 100%;
	}
	
	* html .clearfix {
		/* Hides from IE-mac \*/
		height: 1%;
		/* End hide from IE-mac */
	}

/* end clearing */
/* End of 'Accessibility and cross-browser tools' */

/* Start of CMSMS style sheet 'Main Style' */
/********************************************
   AUTHOR:  			InteSols 
   WEBSITE:   			http://www.intesols.com.au/
   LAST MODIFIED:       Feb-2008       	
 *******************************************/
 
/********************************************
   HTML ELEMENTS
********************************************/ 

/* Top Elements */
* { margin: 0; padding: 0; outline: 0 }

body {
	background: #F3F3F3 url(/images/body_background.jpg) repeat-x;
	font: 70%/1.5em Verdana, Tahoma, arial, sans-serif;
	color: #666666; 
	text-align: center;
	margin: 15px 0;
}

/* links */
a, a:visited {	
	color: #e94706;
	background: inherit;
	text-decoration: none;
}
a:hover {
	color: #88ac0b;
	background: inherit;
	text-decoration: underline;
}

/* headers */
h1, h2, h3 {
	font-family: Arial, Arial, Tahoma, Sans-serif;
	font-weight: Bold; 		
}
h1 {
	font-size: 130%;	
	font-weight:bold;
	color: #f85417;
}
h2 {
	font-size: 120%;
	color: #88ac0b;
}
h3 {
	font-size: 130%;	
}

h1, h2, h3 {
	padding: 5px;		
	padding-left:0px;
	margin: 0;
}
p {
	padding: 3px 0px 8px 0px;		
	margin: 0;
        text-align:justify;
}
ul, ol {
	margin: 5px 20px;
	padding: 0 20px;
}
ul {
	list-style: none;
}

/* images */
img {
}
img.float-right {
  	margin: 5px 0px 10px 10px;  
}
img.float-left {
  	margin: 5px 10px 10px 0px;
}

code {
  	margin: 5px 0;
  	padding: 10px;
  	text-align: left;
  	display: block;
  	overflow: auto;  
  	font: 500 1em/1.5em 'Lucida Console', 'courier new', monospace ;
  	/* white-space: pre; */
  	background: url(/images/post.jpg);
	border: 1px solid #E0DBC9;  
}
acronym {
  cursor: help;
  border-bottom: 1px dashed #777;
}
blockquote {
	margin: 10px;
 	padding: 0 0 0 25px;  
   background: url(/images/post.jpg);
	border: 1px solid #E0DBC9;
	font: bold 1.3em/1.5em Arial, Tahoma, Sans-serif;
	color: #A89A6A;
}


/* start - table */
table {
	border-collapse: collapse;
	margin: 0px;	
}
th strong {
	color: #fff;
}
th {
	background: #93BC0C;
	height: 29px;
	padding-left: 3px;
	padding-right: 3px;
	color: #FFF;
	text-align: left;
	border-left: 1px solid #B6D59A;
	border-bottom: solid 2px #FFF;
}
tr {
	height: 30px;
}
td {
	padding-left: 3px;
	padding-right: 3px;
}
td.first,th.first {
	border-left: 0px;
}

/* end - table */

/* form elements */
form {
	margin:0px; padding: 0 0px;
}
label {
	display:block;
	font-weight:bold;
	margin:2px 0;
}
input {
	padding:2px;
	width: 200px;
	height: 16px;
	padding: 2px;	
	vertical-align: top;
	border:1px solid #417eb7;
        background:white;
        color:black;
}

textarea {
	width:400px;
	padding:2px;
	height:100px;
	display:block;
	border:1px solid #417eb7;
        background:white;
        color:black;
}
.button input { 
	width: 73px;
	height: 22px;
	padding: 2px 2px;
	vertical-align: top;
	text-align:center;
	background:#1F7BC6;
	color:#e6ffff;
	font-size:11px;
	font-weight:bold;
	font-family:arial;
}

/* search form */
#search form{
	background-color: transparent;
	border: none;	
	margin: 0 0 0 3px; padding: 0px 0 9px 0;	
	
}
#search p { margin: 0; padding: 0; }

#search p span.textbox input{ 
	width: 150px;
	color: #FFF; 
	height: 16px;
	padding: 2px;	
    border:0px;
	vertical-align: top;
	background:#417eb7;
        font-size:10px;
}
#search input.button { 
	width: 30px;
	height: 22px;
	padding: 2px 2px;
	vertical-align: top;
	text-align:center;
	background:#1F7BC6;
	color:#e6ffff;
	font-size:11px;
	font-weight:bold;
	font-family:arial;
}


/* client form */
#sidebar table.client 
{
    border-collapse:collapse;
    margin: 0px 10px 0px 20px; 
    padding:0px;
    
}

#sidebar table.client tr td
{
    padding:0px 6px 0px 0px;
    margin:0px;
    border:0px;
    border:0px solid black;
}
#sidebar form {
	background-color: transparent;
	border: none;	
	margin: 0px; 
	padding: 0px;	
	color:#FFF;
}
#sidebar span.textbox input { 
	width: 130px;
	color: #1F7BC6; 
	height: 18px;
	padding: 0px;	
    border:0px;
	vertical-align: top;
	background:#b9dff6;
}
#sidebar input.button { 
	width: 30px;
	height: 24px;
	padding: 2px 5px;
	vertical-align: top;
	text-align:center;
	background:#1F7BC6;
	color:#e6ffff;
	font-size:11px;
	font-weight:bold;
	font-family:arial;
	
}

.client a 
{
    color:#FFF;
}

/********************************************
   LAYOUT
********************************************/ 
#wrap {
	position: relative;
	width: 875px;
	margin: 0 auto;
	padding:0px;
	text-align: left;
	border: 10px solid #FFF;
        background:#FFF;
}

#intesols_footer {
        width: 875px;
        margin:0 auto;
        padding:0px;
        text-align:right;
        background: transparent;
}

#content-wrap {
	position: relative;
	clear: both;
	float: left;	
width:100%;
	padding: 0; 	
	margin: 10px 0px 0px 0px;	
	display: inline;
}
#header {
	position: relative;
	height: 350px;
	padding: 0;	
	background:url(/images/header_background.jpg);
	z-index:1;
}

#logo
{
    height:114px;
    padding:0px;
    margin-bottom:-2px;
    
}

#banner
{
    height:235px;
    padding:0px;
}
/* Header Top */
#header-top 
{
    clear:both;
	background: #114e91;			
	
}

/* Navigation */
#nav 
{
    padding-top:9px;     
    z-index:2;
}
/* Navigation */
ul#dropdown1
{
	margin: 0 0 0 10px;
    padding:0px;
    list-style-type:none;
    float:left;
    height:0px;
}

ul#dropdown1 li
{
    float:left;
    margin:0px;
    padding:0px;
    
}

ul#dropdown1 a
{ 
	display: block;
    padding: 0 4px;

}

ul#dropdown1 li a img
{
    margin:0px; 
    padding-bottom:2px;
    border:0px;
}


ul#dropdown1 a
{ 
	display: block;
}


ul#dropdown1 li ul
{ /* second-level lists */
	margin:0px 0px 0px 4px;
	padding:0px;
	list-style-type:none;
	display:none;
	position:absolute;
	text-align:left;
	font-size:12px;
	border-bottom:0px;
	z-index:2;
}



ul li.currentpage, ul#dropdown1 li ul li
{
	float:left;
	border-top:0px;
	border-bottom:1px solid white;
	clear:left;
	margin:0px;
	padding:0px;
	background-color:#fe927a;
	text-align:left;
}

ul#dropdown1 li:hover ul,
ul#dropdown1 li.sfhover ul
{
	display:block;
}

ul li.currentpage h3, ul#dropdown1 li ul li a
{
	color:#ffffff;
	display:block; 
	border:0px; 
	text-indent:9px;	
	font-size:11px;
	font-family:Arial;
	font-weight:normal;
	width:200px;
	padding:3px 0px 3px 0px;
	
}

ul li.currentpage h3, ul#dropdown1 li ul li a:hover
{
	color:#ffffff;
	background-color:#F85417;
	text-decoration:none;
}

ul li.currentpage h3
{
        margin:0px;
}


ul#dropdown1 li ul li a, ul#dropdown1 li ul li h3 {
display:none;
line-height:0px;
background:none;
}

ul#dropdown1 li ul li ul li a, ul#dropdown1 li ul li ul li h3 {
display:block;
line-height:15px;
}


ul li dfn {
  display:none;
}


/* Search */
#search
{
    margin:0px 0px 0px 670px;
    
}

/* Left Column */
#left 
{
    float: left;
    width:230px;
	padding: 0px 0 0 0; margin: 0 0 0 10px;
}
table.left h2
{
    background: url(/images/bullet.jpg) left no-repeat;
    padding-left:18px;
    color:#4d636e;
    font-weight:normal;
    
    text-transform:none;
    font-family:Trebuchet MS;
    font-size:13px;
}

table.left 
{
    padding:0px;
    margin:0px 0px 20px 0px;
    border-collapse:collapse;
}
table.left tr td
{
    border:0px;
    padding-right:2px;
}
/* Main Column */
#main {
        background:#FFF;
	padding: 0px 0 0 0; margin: 0 284px 0 260px;
}

#main.internal {
        margin-left: 20px;
}
#main h2 {
	font: normal 120% Arial, Tahoma, Sans-serif;
	color: #85970C; 
	padding: 10px 0 0px 0px; 			
}
#main h2 a {
	color: #85970C;
	text-decoration: none;	
}
#main ul li {
	list-style-image: url(/images/bullet.gif);
}

/* Sidebar */	
#sidebar {
	float: right;
	width:244px;
	padding: 0px 0px 0 0; margin: 0;		
	background:url(/images/sidebar_background.jpg) repeat-x top;
}	
#sidebar h3 {
	padding: 5px 5px; 
	font: bold 1.4em Arial, Tahoma, Sans-serif;
	color: #8C9F0D; 		
}
#sidebar ul.sidemenu {
	text-align: left;
	margin: 7px 4px 8px 0; padding: 0;
	text-decoration: none;		
	background: url(/images/dots.jpg) repeat-x left top;
}
#sidebar ul.sidemenu li {
	list-style: none;
	background: url(/images/dots.jpg) repeat-x left bottom;
	padding: 4px 0 4px 5px;
	margin: 0 2px;		
	color: #8F8F8F;
}
* html body #sidebar ul.sidemenu li {
	height: 1%;
}
#sidebar ul.sidemenu li a {
	text-decoration: none;	
	background-image: none;	
	color: #666666;			
}
#sidebar ul.sidemenu li a:hover {	
	color: #1773BC;	
}
#sidebar ul.sidemenu ul { margin: 0 0 0 5px; padding: 0; }
#sidebar ul.sidemenu ul li { background: none; }

/* footer */
#footer-wrap {
	clear: both;
	width: 820px;
	font-size: 95%;	
	padding: 15px 0 0 20px;
	background: url(/images/footer-bottom.jpg) no-repeat center bottom;	
}
#footer-wrap a {
	text-decoration: none;
	color: #666666;
	font-weight: bold;
}
#footer-wrap a:hover {
	color: #000;	
}
#footer-wrap p {
	padding:10px 0;
}
#footer-wrap h3 {
	color: #666666;
	margin: 0;
	padding: 0 10px; 
	text-transform: uppercase;
}


#intesols_footer a {
	font: bold 11px 'Trebuchet MS', Arial, Sans-serif;
	letter-spacing: -1px;
	color: #787676;
	text-transform: none;
	text-decoration: none;
}

#intesols_footer a span {
	color: #9A9696;
}

#footer-columns {
	color: #888;
	margin: 0 auto; 
	padding: 0;	
	width: 760px;		
}
#footer-columns ul {
	list-style: none;
	margin: 10px 0 0 0; 
	padding: 0;	
	background: url(/images/footer-dots.jpg) repeat-x left top;
}
#footer-columns li {
	background: url(/images/footer-dots.jpg) repeat-x left bottom;		
}
#footer-columns li a {
	display: block;
	font-weight: normal;
	padding: 4px 0 4px 10px;
	width: 96%;
}
#footer-columns .col3, .col3-center {
	float: left;
	width: 32%;
}
#footer-columns .col3-center { 
	margin: 0 15px; 
}

/* bottom */
#footer-bottom {
	clear: both;
	color: #666;	
	margin: 0 auto; 
	width: 820px;
	padding: 10px 0;
	text-align: center;
}

/* postmeta */
.post-footer {
	background: url(/images/post.jpg);
	padding: 5px; margin: 5px 10px 10px 10px;	
	font-size: 95%;	
	color: #AEA471;
	border: 1px solid #E0DBC9;
}
.post-footer .date{ margin: 0 10px 0 5px;	}
.post-footer a.comments { margin: 0 10px 0 5px;	}
.post-footer a.readmore { margin: 0 10px 0 5px;	}
.post-info { font-size: .95em; padding: 0 10px; margin-left: 2px; color: #888; }

/* alignment classes */
.float-left  { float: left; }
.float-right { float: right; }
.align-left  { text-align: left; }
.align-right { text-align: right; }

/* display and additional classes */
.clear { clear: both; }



/* End of 'Main Style' */

/* Start of CMSMS style sheet 'Module: News' */
div#news {
  margin: 2em 0 1em 1em;  /* margin for the entire div surrounding the news list */
  border: 1px solid #000; 
  background: #FFE9AF; 
}

div#news h2 {
   line-height: 2em;
   background: #fff;
}

.NewsSummary {
    padding: 0.5em 0.5em 1em; /* padding for the news article summary */
    margin: 0 0.5em 1em 0.5em; /* margin to the bottom of the news article summary */
    border-bottom: 1px solid #ccc; 
}

.NewsSummaryPostdate {
  font-size: 90%;
  font-weight: bold;
 }

.NewsSummaryLink {
    font-weight: bold;
    padding-top: 0.2em;
}

.NewsSummaryCategory {
  font-style: italic;
  margin: 5px 0;
 }

.NewsSummaryAuthor {
  font-style: italic;
  padding-bottom: 0.5em;
}

.NewsSummarySummary, .NewsSummaryContent {
  line-height: 140%;
 }

.NewsSummaryMorelink {
  padding-top: 0.5em;
}

#NewsPostDetailDate {
  font-size: 90%;
  margin-bottom: 5px;
  font-weight: bold;
  }

#NewsPostDetailSummary {
   line-height: 150%;
   }

#NewsPostDetailCategory {
  font-style: italic;
  border-top: 1px solid #ccc;
  margin-top: 0.5em;
  padding: 0.2em 0;
}

#NewsPostDetailContent {
  margin-bottom: 15px;
  line-height: 150%;
  }

#NewsPostDetailAuthor {

  padding-bottom: 1.5em;
  font-style: italic;
}


/* to add specific style to the below divs, uncomment them. */

/* 
#NewsPostDetailTitle {}
#NewsPostDetailHorizRule {}
#NewsPostDetailPrintLink {}
#NewsPostDetailReturnLink {}
*/
/* End of 'Module: News' */

/* Start of CMSMS style sheet 'Navigation: Simple - Vertical' */
/********************
MENU
*********************/
#menu_vert {
   padding-left: 0;
   margin-left: 1em;
}


/* third level has some padding to have it stand out */
div#menu_vert ul ul ul {
   padding-bottom: 0.5em;
}

/* menu li block */
#menu_vert li {
   list-style: none;
   margin: 0;
   border-bottom: 1px solid #c0c0c0;
   display: block;
}

#menu_vert ul ul li {
   border: none;
}

/** fix stupid ie bug with display:block; **/
* html #menu_vert li a { height: 1%; } 
* html #menu_vert li hr { height: 1%; }
/** end fix **/

/* first level links */
div#menu_vert a {
   text-decoration:none; /* no underline for links */
   display: block; /* IE has problems with this, fixed above */
   padding: 0.8em 0.5em 0.8em 1.5em; /* some air for it */
   color: #18507C; /* this will be link color for all levels */
   background: url(images/cms/arrow-right.gif) no-repeat 0.5em center; 
   background: transparent; 
   min-height:1em; /* Fixes IE7 whitespace bug */ 
}

/* next level links, more padding and smaller font */
div#menu_vert ul ul a {
   font-size: 90%;
   padding: 0.5em 0.5em 0.5em 2.8em;
   background-position: 1.5em center;
}

/* third level links, more padding */
div#menu_vert ul ul ul a {
   padding: 0.3em 0.5em 0.3em 4.3em;
   background: url(images/cms/dash.gif) no-repeat 2.8em center; 
}

/* hover state for all links */
div#menu_vert a:hover {
   background-color: #C3D4DF;
}
div#menu_vert a.activeparent:hover {
   background-color: #C3D4DF;
   color: #18507C;
}

/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/
div#menu_vert li a.activeparent {
   background: url(images/cms/arrow-down.gif) no-repeat 0.4em center; 
   background-color: #385C72;
   color: #fff;
}

div#menu_vert ul ul li a.activeparent {
   background-position: 1.5em center; 
   background-color: transparent;
   color: #18507C;
}


/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/
div#menu_vert ul h3 {
   background: url(images/cms/arrow-right-active.gif) no-repeat 0.4em center;
   background-color: #385C72;
   display: block; 
   padding: 0.8em 0.5em 0.8em 1.5em;  /* some air for it */
   color: #fff;                                 /* this will be link color for all levels */
   font-size: 1em;                           /* instead of the normal font size for <h3> */
   margin: 0;                                  /* as <h3> normally has some margin by default */
}

/* 
next level current pages, more padding, 
smaller font and no background color or bottom border 
*/
div#menu_vert ul ul h3 {
   font-size: 90%;
   padding: 0.3em 0.5em 0.3em 2.8em;
   background-position: 1.4em center;
   background-color: transparent;
   border-bottom: none;
   color: #000;     
}

/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
   padding: 0.3em 0.5em 0.3em 4.3em;
   background: url(images/cms/arrow-right-active.gif) no-repeat 2.7em center; 
}

/* section header */
div#menu_vert li.sectionheader {
   border-right: none;
   font-size: 130%;
   font-weight: bold;
   padding: 1.5em 0 0.8em 0;
   background-color: #fff;
   line-height: 1em;
   margin: 0;
   text-align:center;
}



/* separator */
div#menu_vert li.separator {
   height: 1px !important;
   margin-top: -1px;
   margin-bottom: 0;
   padding:2px 0 2px 0;
   background-color: #000;
   overflow:hidden !important;
   line-height:1px !important;
   font-size:1px; /* for ie */
}

div#menu_vert li.separator hr {
   display: none; /* this is for accessibility */
}
/* End of 'Navigation: Simple - Vertical' */

