/* =========================================================
 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: 0px;
   padding: 0px;
   border: 0px;
   outline: 0px;
   font-size: 100%;
}
a {
   outline: 0;
}
/* ======================================================
 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 {
   text-align: center; /* Centers the page content container in IE 5 browsers. */;
   padding: 0px 0px 0px 0px;
   background-color: #532A19;
   line-height: 1.2em;
   font-size: 1em;
   font-family: Tahoma, Helvetica, Arial, sans-serif;
   margin: 0px 0px 0px 0px;
   background: #532A19 url('images/eosunderstate1a.png') repeat;
}
/*=============== indicates no border around any image ============*/
body img {
   border: 0px;
   text-decoration: none;
   max-width: 100%;
   height: auto;
   width: auto\9; /* ie8 */
}
/* =====================================
Commonly used to style page titles.
========================================*/
h1, h2, h3, h4 {
   color: #532A19;
   margin: 5px 0px 5px 10px;
}
h1 {
   font-size: 1.5em;
   margin-top: 0px;
}
h2 {
   font-size: 1em;
}
h3 {
   font-size: .9em;
}
h4 {
   font-size: .9em;
}

/*=======================================
Link Styles unless specified separately
=========================================*/
a, a:link {
   font-weight: bold;
   color: #522100;
   background: transparent;
   text-decoration: underline;
}
a:visited {
   font-weight: bold;
   color: #ffffff;
   background: transparent;
   text-decoration: none;
}
a:hover {
   font-weight: bold;
   background: #522100;
   color: #ffffff; /* white */
   text-decoration: underline;
}
a:focus {
   color: #DFDFBF;
}
a:active {
   font-weight: bold;
   background: #ffffff;
   color: #522100;
}

/* =============================================
 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.
Pat Geary calls this the #outerWrapper.
 ===============================================*/
#container {
   background-color: #532A19;
   width: 80%;
   text-align: left; /* Redefines the text alignment defined by the body element. */;
   border: 1px #111111 solid;
   margin: 10px auto 10px auto;
   padding: 20px;
   border-radius: 10px;
   -webkit-border-radius: 10px;
   -moz-border-radius: 10px;
   -moz-box-shadow: 0 0 20px #453823;
   -webkit-box-shadow: 0 0 20px #453823;
   box-shadow: 0 0 20px #453823;
   max-width: 1500px;
   background-image: url('images/EosCloud5.png');
}
/*===================================
Masthead Styles - top banner.  Pat Geary calls this the #outerWrapper #header.  #banner .title is called #outerWrapper #header .sitename
====================================*/
#banner {
   border-style: double none none none;
   border-width: thin;
   border-color: #532A19;
   border-bottom: 2px solid #522100;
   padding: 0px;
   background-color: transparent;
   background-repeat: no-repeat;
   color: #000000;
   /* ===========================
   These styles are not currently being used
   border-radius: 8px 8px 0px 0px;
   -webkit-border-radius: 8px 8px 0px 0px;
   -moz-border-radius: 8px 8px 0px 0px;
   ===============================*/
}
#banner .title {
   font-family: "Georgia";
   font-size: 2em;
   font-weight: bold;
   text-align: right;
   background-color: transparent;
   color: #522100;
   margin-left: 20px;
   font-style: italic;
}
#banner .tagline {
   font-size: small;
   font-style: italic;
   font-family: "Georgia";
   background-color: transparent;
   color: #DFDFBF;
}

/*=======================================
Wrapper for the content columns
========================================*/
#contentWrapper {
   clear: both;
   background: transparent;
   overflow: hidden;
   background-image: url('images/EosCloud5.png');
   background-repeat: repeat-y;
}

/*==================================
Left sidebar. Pat Geary calls this #leftColumn1
===================================*/
#leftnav {
   font-family: Verdana, Arial, Helvetica, sans-serif;
   font-size: 100%;
   width: 200px;
   padding: 5px;
   margin: 5px 0px 0px 0px;
   /*border: 1px solid #522100;*/
   float: left;
   background: inherit;
}

/*================================
Left sidebar navigation menu. Pat calls this #leftColumn1
==================================*/
#leftnav ul {
   list-style: none;
   margin: 0px;
   padding: 0px;
   margin-bottom: 4px;
}
#leftnav ul li {
   margin: 0px;
   padding: 2px 0;
}
#leftnav ul li a {
   display: block;
   color: #522100;
   padding: 4px;
   text-decoration: underline;
   font-size: 100%;
   margin-top: 2px;
   width: 200px;
   border-radius: 6px;
   -webkit-border-radius: 6px;
   -moz-border-radius: 6px;
}
.heading {
   display: block;
   color: #522100;
   font-weight: bold;
   padding: 2px;
   background: inherit;
   text-decoration: none;
   border-radius: 6px;
   -webkit-border-radius: 6px;
   -moz-border-radius: 6px;
   background-image: url('images/EosCloud5.png');
   font-family: Tahoma, Helvetica, Arial, sans-serif;
}
#leftnav ul li a:hover, #leftnav ul li a:focus {
   color: #ffffff;
   background-color: #522100;
}

/*===================================================
Contains the main page content. When using a multiple column layout the margins will be set to account for the floated columns' width, margins, and padding.  Pat Geary calls this #content.
=====================================================*/
#content {
   padding: 10px 15px 10px 15px;
   margin: 0px 0px 0px 230px;
}

/*===========content area list items==============*/
#content ul li {
   list-style-image: url('images/sumbul1a.gif');
   margin: 2px;
   padding: 2px;
}
#content li li {
   list-style-image: url('images/sumbul1a.gif');
   padding: 2px 0px;
}
/*================= Breadcrumb ===================*/
#breadcrumb {
   font-size: 80%;
   font-weight: bolder;
   color: #37271C;
   padding: 5px 0px 1px 0px;
}

/* ===============================================
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.
==================================================*/
.clearFloat {
   display: block;
   clear: left;
}
/*=================================================
Footer Styles.  Pat Geary calls this #outerWrapper #footer
==================================================*/
#footer {
   border-top: 2px solid #522100;
   clear: both;
   padding: 10px;
   background-color: transparent;
   text-align: center;
   color: #522100;
   border-radius: 0px 0px 8px 8px;
   -webkit-border-radius: 0px 0px 8px 8px;
   -moz-border-radius: 0px 0px 8px 8px;
}
#footer p {
   margin-top: 0px;
   margin-bottom: 0px;
   text-align: center;
   font-size: .85em;
}

/*================== general styles =================*/
hr {
   width: 100%;
   text-align: center;
   background-color: #522100;
   height: 3px;
}
blockquote {
    border-left: 4px dashed #ccc;
    color: #401515;
    font-style: italic;
    margin: 30px 0 30px 15px;
    padding-left: 15px;
}

/* ========= floats images to right or left ==========*/
.imgrgt {
   float: right;
   padding: 5px 0px 5px 10px;
}
.imglft {
   float: left;
   padding: 5px 10px 5px 0px;
}
.imgctr {
   display: block;
   margin: 0px auto;
}

/*Make Image Scalable - Assign this class to any image to make it scale with the browser window size*/
   img.scalable {
   height: auto !important;
   width: auto !important;
   max-width: 100%;
}
/* ==========styles for photo tables ===============*/
table {
  table-layout: fixed;
}
.photo {
   width: 100%;
   border-collapse: collapse;
   border: 1px solid #522100;
   margin-right: auto;
   margin-left: auto;
}
.photo th {
   background-color: inherit;
}
.photo td {
   vertical-align: top;
   border: 1px solid #522100;
   width: 20%;
   padding: 3px;
   text-align: center;
   font-size: 85%;   
}
.photo caption {
   font-weight: bolder;
   font-variant: small-caps;
}
.photolft {
   width: 100%;
   border-collapse: collapse;
   margin-right: auto;
   margin-left: auto;
}
.photolft th {
   background-color: inherit;
}
.photolft td {
   vertical-align: top;
   width: 25%;
   padding: 10px;
   font-size: 85%;
}
.photolft caption {
   font-weight: bolder;
   font-variant: small-caps;
   font-size: 100%;
   margin-bottom: 10px;
}
.td img {
   width:100%;
}
.smtxt {
   font-size: small;
}

/*=====================================
Misc Typographic styles
======================================*/
.txt_s {
   font-size: small;
}
.center {
   text-align: center;
}

/*=============================
News Box
===============================*/

.sidebox {
   border: #522100 2px solid;
   margin: 15px 0px 3px 0px;
   padding: 0px 3px 5px 3px;
   background: #inherit;
   color: #532A19;
   font-size: 75%;
   text-align: center;
   box-shadow: inset 0px 0px 30px #B3958A;
}
.sideboxheading {
   background: #485E48;
   color: #FFFFFF;
   font-weight: bold;
   text-align: center;
   margin-top: 3px;
   padding: 2px;
}

