/* Start of CMSMS style sheet 'LGCAA2008 : Layout2' */
* {
margin:0;
padding:0;
}

body {height: 100%;
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

div {
   font-size: 1em;
}

img {
   border: 0;
}

/*****************
link styles
*****************/

a,
a:link 
a:active {
text-decoration: none;
background-color: inherit; 
color: #808000 
}

a:visited {
text-decoration: underline;
background-color: inherit;
color: #808000;
}

a:hover {
   text-decoration: underline;
   background-color: inherit;
   color: #808000;
}

/*****************
basic layout 
*****************/
body {
   background: url(/uploads/LGCAA2008/2008gradbkn.jpg) repeat-x; 
   background-color: #336600;
   /*color: #556b2f;*/
color: #a9a9a9; 
}

div#pagewrapper {min-height: 100%;
   margin: 10px auto 0 auto;
   max-width: 970px;   /* IE wont understand these, so we will use javascript magick */
   min-width: 970px;
   background-color: #003300;
}

/*** header ****/
div#header {
   height: 140px;
   background: #003300;           
}

div#header h1 a {
   background: url(uploads/LGCAA2008/2008pagehead1.jpg) no-repeat; 
   display: block;
   height: 140px;
   text-indent: -999em;  /*hides the text */
   text-decoration:none;
}

/*** search ****/
div#search {
    width: auto;
   text-align: left;
padding: 0.5em 0em 0.5em 0.5em;
color: #fff;
}

/*** breadcrumbs ****/
div.breadcrumbs {
text-align: right;
font-size: 90%;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 

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

.rightside {margin-left: 50px}

/*** sidebar ****/
div#sidebar {
min-height: 100%; 
/*background-color: #144414;*/
border-right: 1px dotted #336633;
float: left;
width: 200px;
display: inline;
/*margin-left: 10px;*/
}

/*** footer ****/
div#footer {    
height: 140px; 
background: url(uploads/LGCAA2008/2008footerbkgn.jpg) no-repeat; 
border-left: 1px solid #336633;
border-right: 1px solid #336633;
clear: both;
color: #556b2f;
background-color: #003300;
}

div#footer p {
   font-size: 0.8em;
   
   text-align: center;  /* centered text */
   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;
   /*padding: 1em;*/
   border-bottom: 1px dotted #336633;
 /*margin: 1em;*/
}

/* relational links under content */
div.left49 {
  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 {
border-left: 1px solid #336633;
border-right: 1px solid #336633;
padding-top: 0.2em;
}

/* HEADINGS */
div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
	color: #c0c0c0; 
 font-weight: normal;
	font-size: 1.5em; 
	text-align: left; 
/* some air around the text */
	/*padding-left: 0.5em;*/
	padding-bottom: 1px;
/* set borders around header */
	border-bottom: 1px dotted #336633;
        line-height: 1.5em;
/* and some air under the border */
        margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #556b2f; 
  font-weight: normal;
text-align: left;
   font-size: 1.1em;
   line-height: 1.2em;
   /*margin: 0.5em;*/
border-bottom: 1px dotted #336633;
padding-left:0 0 0.5em 0;
}
div#content h4 {
   color: #669966; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: #294B5F; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #294B5F; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* 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;
}
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%;


}

/* Separating the divs on the template explanation page, with some bottom-border */
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 {
   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;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}


/* END LISTS */

/*CAPTIONS*/
div.rightcaption{
}

div.leftcaption{
}

div.captionborder, div.captionborderleft,div.captionborderright {
border: 1px solid #336633;
background-color: #244424;
}

div.captionborderright {
float: right;
margin-left: 1em;
}

div.captionborderleft {
float: left;
margin-right: 1em;
}

p.captiontext {
text-transform: capitalize;
margin: 0;
padding: 0;
font-size: 90%;
background-color: #244424;
color: white;
text-align: center;
}

div.captionborderright p.captiontext  {
text-align: center;
/*padding-right: 3px;*/
}

div.captionborderleft p.captiontext  {
text-align: center;
/*padding-left: 3px;*/
}
/*END CAPTIONS*/

/*TABLES*/
.matchtable {
/*This sets the table width to 400px and removes all padding and margins.*/
width: 100%;
padding:0px;
margin: 0;
border: 0px solid #336633;
}
.matchtable th {
background: #336633;
}

/*.matchtable th.nobg {
}*/

.matchtable td {
/*This applies borders and padding to all of the normal cells. We don't apply a left or top border as these are inherited from the surrounding cells.*/
border-top: 1px #003300;
border-left: 1px #003300;
border-bottom: 1px dotted #336633;
border-right: 1px dotted #336633;
padding: 4px;
 font-size: 0.8em;
}
/* End of 'LGCAA2008 : Layout2' */

