/* Start of CMSMS style sheet '3rd i' */
/*****************
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%;
}

/*
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: #C3D4DF;
   color: #385C72;
}

/*****************
basic layout 
*****************/
body {
   background-color: #fbfcf9;
/*   color: #ffffff;*/
}

/* center wrapper, min max width */
div#pagewrapper {
/*   border: 1px solid black;*/
   margin: 0 auto;     /* this centers wrapper */
   width: 960px;
   height: 700px;
   background-color: #ffffff;
   color: black;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 100px; /* adjust according your image size */
/*   background: #c3e4b4 url('uploads/images/Header.jpg') 200px 0px no-repeat;*/
}

div#header h1
{  display: none;
}

div#SiteLogo
{  background-color: #ffffff;  padding: 10px 0px 0px 25px;
}

div#header h1 a {
   margin: 10px 30px;
   color: #7f877a;
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}



div.content {
   padding: 10px; 
}

div#main {
   margin-left: 270px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 20px; /* and some air on the right */
}


div#sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 250px;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0; background-color: #f5f5f5;
   min-height: 100%;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0 1%;
   width: 24%;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #ddd;
   background-color: #fff; /* same bg color as in header */
}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em;      /* some air for footer */
   margin:0;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px dotted black;
}

/* 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 */
div.content h1, h1 {
   font-size: 1.4em;  /* font size for h1 */
   line-height: 1.2em;
   margin: 0; color: #243E90;
}
div.content h2, h2 {
/*   color: #ffffff; */
   font-size: 1.2em; 
   font-weight: bold;
   text-align: left; 
   padding-bottom: 1px;
   line-height: 1.5em;
   margin: 0 0 0.5em 0;
}
#pagewrapper h2
{  color: #ffffff;
}
div.content h3 {
   color: #4167B1; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div.content h4, h4 {
   color: #4167B1; 
   font-size: 1.1em;
   font-weight: bold;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}

div.content h4 a, div#content h4 a:visited
{  color: #4b5457; text-decoration: none;
}

div.content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
/*   font-size: 0.75em;*/
   margin: 0 0 1.5em 0;  /* some air around p elements */
/*   line-height:1.4em;*/
   padding: 0;
}
blockquote {
   font-style: italic; font-size: 1.1em; color: #555555;
   margin: 0px 20px;
}
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 */


blockquote
{  margin: 2px 5px 10px 5px; font-size: 1em;
}

.HomePanel
{  width: 335px; height: 530px; float: left;
}

#HomeSidePanel
{  width: 264px; float: left;
}

#HomeSideBarContent
{  height: 429px; width: 234px; background-image: url(uploads/images/Home/SideBar.jpg);
    padding: 15px;
}

#HomeLastPanel
{  width: 26px; float: left; background-image: url(uploads/images/Home/HomeMenuBar_03.jpg); 
    height: 82px;  margin-top: 530px;
}

#SearchBox
{  background-color: #d5d3d4; height: 114px;
}

#HomeTabs
{  height: 31px;
}

#HomeTabs a
{  background-image: url(uploads/images/Home/Tab.jpg); height: 20px; width: 65px;
    color: #ffffff; text-align: center; font-weight: bold; font-size: 0.85em;
    float: left; padding-top: 9px; border-left: solid 1px #ffffff; border-top: solid 1px #ffffff;
    text-decoration: none;
}

#HomeTabs a.Current
{  background-image: url(uploads/images/Home/TabCurrent.jpg); color: #0F004E;
    border-left: none; width: 66px;
}

/*
#ResourcesTabs
{  height: 38px;
}

#ResourcesTabs a
{  background-image: url(uploads/images/Home/Tab.jpg); height: 25px; width: 171px;
    color: #ffffff; text-align: center; font-weight: bold; font-size: 0.85em;
    float: left; padding-top: 12px; border-left: solid 1px #ffffff; border-top: solid 1px #ffffff;
    text-decoration: none;
}

#ResourcesTabs  a.Current
{  background-image: url(uploads/images/Home/TabCurrent.jpg); color: #0F004E;
    border-left: none; width: 172px;
}
*/


#SearchBox
{  padding-top: 14px;
}

#SearchBox h2
{  font-size: 1.1em; color: #362063; font-weight: normal; margin: 12px 0px 2px 10px;
}

#Search label
{  display: none;
}

#Search
{  color: #d5d3d4;
}

#Search input
{  color: #808184; width: 190px;
}

#SearchBox .JoinOurCommunity 
{  padding-left: 10px;
}

.GreyEntry input
{ color: #808184;
}

.HomeInput input
{   width: 190px;
}

.JoinOurCommunity .submit, #Search input.SearchSubmit
{  background-image: url(uploads/images/SubmitArrow.gif); padding-left: 50px; 
    background-repeat: no-repeat; color: transparent; border: none; background-color: transparent; 
    height: 21px; width: 21px; margin-left: 10px;
}

.JoinOurCommunity .submit
{  padding-left: 5px;
}


.FirstParagraph
{  font-weight: bold;
}

#EventSidePanel
{  width: 344px; height: 700px; float: left; background-color: #926ab1;
}

#EventSideBarContent
{  padding: 80px 20px 20px 20px; height: 430px;
}

#GeneralTopLeft
{  width: 590px; height: 110px; float: left;
}

#GeneralTop
{  width: 344px; height: 110px; float: left; white-space: normal; overflow: hidden;
}

#GeneralTopRight
{  width: 26px; height: 110px; float: left;
}

#GeneralHeaderTopLeft
{  width: 590px; height: 79px; float: left;
}

#GeneralHeaderTop
{  width: 344px; height: 79px; float: left; white-space: normal; overflow: hidden;
}

#GeneralHeaderTopRight
{  width: 26px; height: 79px; float: left;
}

#GeneralHeaderTop2
{  width: 456px; height: 31px; float: left;
}

#GeneralHeaderHeader
{  width: 504px; height: 31px; float: left;  
}


#GeneralContentArea
{  width: 590px; height: 400px; float: left; white-space: normal; 
}


#GeneralContentAreaThinSide
{  width: 694px; height: 400px; float: left; white-space: normal; 
}

#GeneralContent
{  height: 400px; overflow: hidden;  
}

#SubMenu
{  float: left; width: 110px; height: 200px; position: absolute;
}

#SubMenu li
{  list-style-type: none;
}

#GeneralMenu
{  height: 82px;
}

#GeneralSideBar
{  width: 344px; height: 590px; float: left; white-space: normal; 
}


#GeneralSideBarThin
{  width: 240px; height: 590px; float: left; white-space: normal; 
}

#GeneralRightArea
{  width: 26px; height: 590px; float: left;
}

#GeneralRightSide
{  height: 400px;
}


#GeneralSideBar h1, #GeneralSideBar a, #GeneralSideBar a:visited
{  color: #ffffff;
}

#GeneralSideBar p
{  line-height: 1.3em;
}

#GeneralHeaderHeader h2
{  font-size: 1.2em; padding-top: 5px; padding-left: 30px;
}

#GeneralSideBar li, #GeneralTop li
{  margin-left: 16px;  margin-bottom: 4px;
}


#Resources a, #ResourcesSideBar a:visited
{  color: #336699;
}

#Resources td
{  font-size: 1em; padding-bottom: 12px; vertical-align: top;
}


.Author
{  width: 220px; padding-right: 10px
}



#Credit
{  float: right; padding: 0.9em 0px 0px 0px;
}

.Kicker
{  font-size: 1.25em; color: #cc5c02; font-weight: bold; font-style: italic; margin: 0px 20px; display: block; text-align: justify;
}

.FrontKicker
{  font-size: 1.25em; line-height: 180%;
}

.NoBulletList
{  list-style-type: none;
}

.Tick
{  list-style-image: url(uploads/images/Tick.jpg); margin-top: 5px:
}

.Tick li
{  padding-bottom: 0.8em;
}

.Smokey
{  background-color: #f5f5f5;
}

.contactform fieldset 
{  padding: 1em; background-color: #f5f8f0; border: solid 1px #cccccc;
}     

.contactform fieldset legend  
{  font-weight: bold; font-size: 1.2em;
}     

.contactform div  
{  width: 100%; padding: 0.25em 0 0.25em 0; 
}     

.contactform div label  
{  display: block; width: 10em;  
}     

.contactform div input
{  width:  20em;
}

.contactform div.required  
{  color: #aa0000; 
} 

.contactform .submit
{  margin-top: 0.5em; text-align: right;
}

.contactform .submit input
{  width: 8em; border: solid 1px #333333; background-color: #888888; color: #ffffff;
}

#EventsBar
{  background-color: #330066; float: right; width: 306px; height: 346px;
}

#Gallery
{  background-image: url(uploads/images/Gallery.jpg); margin-bottom: 10px; height: 82px;
}

#Gallery h2
{  color: #FFC20E; margin-left: 110px; font-size: 1.3em; font-weight: bold; padding-top: 20px;
}

#Gallery div
{  color: #ffffff; margin-left: 110px; font-size: 0.9em; margin-top: 2px;
}

div.content
{  overflow-y: auto; none; white-space: normal;
}

div.ImageMap 
{  white-space: nowrap;
}

div.ImageMap img
{  vertical-align: top;
}

a.Person, a.Person:visited
{  color: #919496; font-size: 1.25em; font-weight: bold; text-decoration: none; float: left; 
    width: 100px;
}

a.PersonHot, a.PersonHot:visited
{  color: #000000; font-size: 1.25em; font-weight: bold; text-decoration: none; float: left; 
    width: 100px;
}

.Blank
{  color: transparent; font-size: 2pt; }

#comments
{  font-size: 0.8em
}

#comments
{  margin-left: -10px;
}

#comments textarea 
{  width: 280px;
}

#comments input
{  /*width: 280px;*/
}

#comments td
{  display: block; padding-bottom: 2px;
}

.SideBarOverflow
{ overflow-y: auto;  height: 560px;
}

.MainOverflow
{ overflow-y: auto; height: 400px;
}

#Bio
{  background-image: url(uploads/images/About/BioBackground.jpg); width: 810px; height: 385px;
  padding: 10px 15px 5px 135px; overflow-y: auto;
}

#Bio h2
{  color: #000055;
}

#Bio img
{  float: left; margin-right: 10px; margin-bottom: 5px;
}

#Bio ul
{  margin-left: 235px; margin-bottom: 12px;
}

#WhyContent
{  background-image: url(uploads/images/Why3rdi/WhyContent.jpg); width: 544px;  height: 385px; 
    padding: 10px 15px 5px 135px; overflow-y: auto; font-size: 0.9em;
}

#WhyContent p
{  margin-bottom: 1em;  margin-left: 115px;
}

#WhyContent #Person
{  margin-bottom: 30px;
}

#WhyContent .Photo
{  float: left; margin: 8px 10px 5px 0px;
}

#WhyContent .Photo .Name
{  font-weight: bold;  color: #000055; margin-top: 2px;
}

/* End of '3rd i' */

