/* Start of CMSMS style sheet 'ntahc_home' */
/*****************
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;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   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,
div#main a:link 
div#main a:active {
   text-decoration: none;
/* 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: #009999; 
}

div#main a:visited {
   text-decoration: none;
   background-color: inherit;
  color: #009999;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
div#main a:hover {
   text-decoration: underline;
   background-color: none;
   color: #009999;
}

/*****************
basic layout 
*****************/
body {
   background-color: #c8dbda;
   color: #000000;
   margin:1em; /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 1px solid black;
   margin: 0 auto;     /* this centers wrapper */
   width: 800px; /* IE wont understand these, so we will use javascript magick */
   background-color: #009999;
   color: black;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
	height: 125px; /* adjust according your image size */
 	background-image: url(uploads/images/header.gif);
	background-repeat:no-repeat;
}


div#leftbanner {
background-color:#009999;
float:left;
width:109px;
height:170px;
padding:10px;


}

div#rightbanner {
float:right;
width:490px;
height:190px;

}

div#main {
width:609px;
background-color:#FFFFFF;
float:left;
clear:left;
padding:5px;
min-height:300px;

}


div#sidebar {
   float: right;  
clear:right;
   width: 171px;    
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
   padding:5px;
   background-color:#009999;
 min-height:300px;  
line-height:20px;
vertical-align:top;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding:5px;
   width: 171px;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}

div#sidebar a,
div#sidebar a:link 
div#sidebar a:active {
   text-decoration: none;
/* 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: #ffffff; 
}

div#sidebar a:visited {
   text-decoration: none;
   background-color: inherit;
  color: #ffffff;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
div#sidebar a:hover {
   text-decoration: underline;
   color: #ffffff;

}

div#footer {
clear:both; 
height: 57px;
background-image: url(uploads/images/footer_05.gif);
background-repeat:no-repeat;
background-position:bottom;
background-color: #ffffff;
text-align: left;
color: #006666;
}   
  

div#footer a,
div#footer a:link 
div#footer a:active {
   text-decoration: none;
/* 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: #009999; 
}

div#footer a:visited {
   text-decoration: none;
   background-color: inherit;
  color: #006666;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
div#footer a:hover {
   text-decoration: underline;
background-color: inherit;
   color: #006666;
}


/* relational links under content */
div.left49 {
  float: left;
  width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
h1 {
   font-size: 18px;  
   font-style: italic;
   font-weight: bold;
   color: #78c472;
padding: 10px;
line-height:20px;
text-align: left;
}

h2 {
   font-size: 20px;     
font-style: italic;
   color: #CCFFCC;
line-height:30px;
}
h3 {
     color: #006666;
   font-weight:bold; 
   font-size: 1em; 
}
h4 {
   font-size: 16px;     
font-style: italic;
   color: #CCFFCC;
line-height:24px;
}

h5 {
    font-size: 14px;     
font-style: italic;
   color: #CCFFCC;
line-height:20px;
}
h6{
   font-size: 18px;  /* font size for h1 */
   font-style: italic;
   color: #c8dbda;
line-height:24px;
}

/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.4em;
   padding: 0;
}
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
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 {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */

div.td {
	line-height: 24px;
	color: #000000;
}
div.th {
	line-height: 24px;
	border-color:#000000;
	border:thin;
}
/* End of 'ntahc_home' */

