******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Arial, Tahoma, Verdana, Geneva, Helvetica, sans-serif;
   font-size: 90.01%;
   line-height: 1.4em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div, table{
   margin: 0;
   padding: 0;
   font-size: 1em;
   line-height: 1.4em;
}


/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
   margin: 0;
}

.photo-left {
 float: left;
 margin-right: 20px;
 margin-bottom: 10px;
 border: 1px #666 solid;;
}

.photo-right {
 float: right;
 margin-left: 20px;
 margin-bottom: 10px;
 border: 1px #666 solid;
}

.photo {
 border: 1px #666 solid;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
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: #cc9900;
}

a:visited {
   text-decoration: none;
   background-color: inherit;
   color: #cc9900;                /* a different color can be used for visited links */
}

/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: transparent;
   color: #333;
}

div.link a, div.link a:visited {
   padding: 9px;
   background: #675844;
   color: #FFF;
   text-transform: uppercase;
   font-weight: bold;
   -moz-border-radius: 4px; 
   -webkit-border-radius: 4px; 
   border-radius: 4px; 
   behavior: url(tmp/configs/PIE.htc);
}

a.link, a.link:visited {
   padding: 9px;
   background: #675844;
   color: #FFF;
   -moz-border-radius: 4px; 
   -webkit-border-radius: 4px; 
   border-radius: 4px; 
   behavior: url(tmp/configs/PIE.htc);
}

a.link:hover {
    color: #FFF;
    background: #978267;
}


/*****************
basic layout 
*****************/
body {
   color: #333;
   margin: 0; /* gives some air for the pagewrapper */
}

div#pagewrapper {
   position: relative;
   border: 0;
   min-width: 1040px;
   margin: 0px auto 0px auto;     /* this centers wrapper */
   color: #333;
   background: #FFF;
}


/* ------------ END LAYOUT ---------------*/

div#content {
   position: relative;
   margin: 0;
   padding: 30px;
   background: none;
}

div#main {
   margin: 0px 0px 0px 0px;
   padding: 0px;
   z-index: 2;
   min-width: 640px;
   max-width: 980px;
}

div#sidebar fieldset ul li {color: #FFF;}

div#sidebar fieldset div, div#sidebar fieldset div div {padding: 0; margin:0;}

div#footer p a {
   color: #333; /* 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: 0;
   border-bottom: 0px dotted black;
}

/* relational links under content */
div.left49 {
  float: left;
  width: 79%;  /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 19%;
  text-align: right;
}

/********************
CONTENT STYLING
*********************/
div#content {
}

#sidebar strong {color: #FFF;}

/* HEADINGS */
div#content h1 {
   color: #663300; 
   font-size: 34px;  /* font size for h1 */
   line-height: 30px;
   margin: 0;
}
div#content h2 {
   color: #663300; 
   font-size: 30px;  /* font size for h2 */
   margin: 5px 0 5px 0;
   font-weight: normal;
}
div#content h3 {
   color: #663300; 
   font-size: 24px;
   margin: 0 0 5px 0;
   font-weight: normal;
}

div#content h4 {
   color: #663300; 
   font-size: 20px;
   line-height: 16px;
   margin: 0 0 5px 0;
   font-weight: normal;
}

div#content h5 {
   color: #333;  
   font-size: 16px;
   line-height: 14px;
   margin: 0 0 5px 0;
   font-weight: normal;
   /* text-transform: uppercase; */
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}


/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 0.8em 0;  /* some air around p elements */
   line-height:1.4em;
   padding: 0;
}
blockquote {
   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 */
   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 {
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
   list-style: circle;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */


.throbber { display:none; margin:40px auto; width: 32px; height: 32px; }
.throbber img {width: 32px; height: 32px;}

div[id^='cggm_map_defn'] {float: right; display: inline; margin: 0px; border: 1px #999 solid; width: auto; padding: 0; color: #333;}
div.cggm_directions {width: auto; max-width: 270px; padding: 3px;}
div.cggm_directions_form {width: 250px; padding: 3px;}
.cggm_dirfrom input, .cggm_dirto input {width: auto; max-width: 220px;}
/* Stylesheet: OPSMinimal Modified On 2013-04-10 11:09:48 */
