/* Start of CMSMS style sheet 'Avilion' */
/* CSS Document */

/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #99d44a;
  color: #2c2d2e;
/*  font-family: Arial, Helvetica, sans-serif;*/
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;;
  font-size: 12px;
  line-height: 1.8;
  margin: 20px 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #777890;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}
/* Commonly used to style section titles. */
h2 {
  color: #777890;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #5456ef;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #50516b;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #3a32c4;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #3a32c4;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #383644;
}

h1 { color:#18532a; font-size:1.6em; background:none; margin-top:0; padding:0 0 5px 0; text-transform:uppercase; font-weight:normal; letter-spacing:1px; border-bottom:1px solid #def0c6; }

h2 { color:#8cc63f; font-size:1.2em; border-bottom:1px solid #3c754e; padding-bottom:3px; /* text-transform:capitalize; */ }

h3 { color:#fff; font-size:1.2em; background:#8E49A8; padding:2px 4px; border-right:4px solid #AF6AC9; }

h4 { color:#AF6AC9; font-size:1.4em; }



/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 960px;
position: relative;
}
#outerWrapper #header {
 /*background-color: #9ea3aa;*/
  background:url(uploads/images/layout/topbackground.jpg) no-repeat 0 0;
  height: 140px;
  border-bottom: solid 0px #767a7f; /* Sets the bottom border properties for an element using shorthand notation */
  font-size: 18px;
  font-weight: bold;
  line-height: 15px;
  padding: 10px 10px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #header h1 {
border: none;
   text-indent: -999em;  /* this hides the text */
}

#outerWrapper #contentWrapper {
  background-image: url(uploads/images/layout/faux.jpg);
  background-repeat: repeat-y;
  margin-left: 9px;
    margin-right: 9px;
}
#outerWrapper #contentWrapper #leftColumn1 {
  background-color: #b4df7b;
  border-right: solid 0px #9ea3aa; /* Sets the right border properties for an element using shorthand notation */
  float: left;
  padding: 10px 0px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
padding-top: 0;
  width: 212px;
}

#outerWrapper #contentWrapper #leftColumn1 h1 {
  color: white;
  background-image: url(uploads/images/layout/heading_back.jpg);
  background-repeat: no-repeat;
  height: 16px;
  font-size: 11px;
  text-transform:uppercase;
  padding-left: 10px;
  padding-top: 5px;

}

#outerWrapper #contentWrapper #leftColumn1 p {
  line-height: 1.2;
  padding-left: 12px;
  padding-top: 5px;
  color: #165128;

}


#menu {
background: #b4df7b url(uploads/images/layout/menu_bottom.jpg) bottom center no-repeat;
padding-bottom: 20px;
}


/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  margin: 0 0 0 220px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 210px 20px 10px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #contentWrapper #content h1 {
padding-bottom: 10px;
color:#18532a;
font-size:1.7em;
text-transform:uppercase;
font-weight:normal;
letter-spacing:1px; border-bottom:1px solid #def0c6; 

}
#outerWrapper #contentWrapper #content {

background:url(uploads/images/layout/toppic.jpg) 0 0 no-repeat;

}


/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
 /* background-color: #f4f2fc;
  border-top: solid 1px #9ea3aa; /* Sets the top border properties for an element using shorthand notation */
 /* padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */

height:34px; width:960px; background:url(uploads/images/layout/round_bottom.jpg) no-repeat top; line-height:25px; color:#ffffff; text-align:center; border-top:3px solid #ffffff; 
font-size: 0.9em;
}

.border { border: 2px solid #d8edbc; }

/* all curved boxes get the bottom-left corner */
div.rounded {
  background: #b4de7a url(uploads/images/bl_10_b4de7a_ffffff.gif) no-repeat bottom left;
  color: #333333;
  position: relative;
  padding-top: 0;
  padding-bottom: 10px;
  margin: 1em 10px 0 0 ;
  height:100%
}

/* all elements in 'div.rounded' gets the B-R corner */
div.rounded * {
  background: #b4de7a url(uploads/images/br_10_b4de7a_ffffff.gif) no-repeat bottom right;
  color: #333333;
  padding: 1em 2em 10px 0;
  margin: 0 0 -10px 10px;
  height:100%;
}

/* Scrub that B-R corner from all elements *2+* levels deep*/
div.rounded * * {
  padding: 0;
  margin: 0;
  background: none;
  color: #333333;
  height:auto
}

/* Set up some H's as 'box heads' with the T-R and T-L corners */
div.rounded h1, div.rounded h2 {
  color: #ffffff;
  background: #b4de7a url(uploads/images/tr_10_b4de7a_ffffff.gif) no-repeat top right;
  display: list-item;
  list-style-image: url(uploads/images/tlc_10_b4de7a_ffffff.gif);
  list-style-position: inside;
  list-style-type:none;
  padding: 0;
  margin: 0;
  position: relative;
  border: none;
}


div.rounded h1 {

}
div.rounded h2 {
  font-size: 1.5em;
}
div.rounded ul {
  margin-left: 2.5em;
}

/* Sets the style for unvisited links. */
#footer a,  #footer a:link {
  color: white;
  font-weight: normal;
  text-decoration: none;
}
/* Sets the style for visited links. */
#footer a:visited {
  color: white;
  font-weight: normal;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
#footer a:hover {
  color: #3a32c4;
  text-decoration: underline;
  font-weight: bold;
}
/* Sets the style for a link that has focus. */
#footer a:focus {
  color: #3a32c4;
}
/* Sets the style for a link that is being activated/clicked. */
#footer a:active {
  color: #383644;
}

#date {
position: absolute;
left: 700px;
top: 10px;
font-size: 0.9em;
color: white;
}

.thumb
{
	margin:0 0.5em 0 0;
    
/* Thumbnail spacing */
	text-decoration:none;
	line-height:normal;
	list-style-type:none;
	text-align:center;
	float:left;

}

.thumb p {font-size:10px; width: 120px; margin:0;}

/* forms stuff */
.oneline div { display: inline; margin-right: 0.5em; }

.formalign  label {  
float: left;  
width: 10em;  
margin-right: 1em;
}
input {margin:4px;}


/* End of 'Avilion' */

