/* =========================================================
 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: #B40431;
   line-height: 1.2em;
   font-size: 1em;
   color: #474747;
   font: normal 100% Tahoma, Helvetica, Arial, sans-serif;
   margin: 0px 0px 0px 0px;
   background: #B40431 url('images/red3.jpg') 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: #474747;
   margin: 5px 0px 5px 10px;
}
h1 {
   font-size: 1.5em; /* 24 px / 16 px */
   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: #474747;
   background: transparent;
   text-decoration: none;
}
a:visited {
   font-weight: bold;
   color: #B40431; /* gray-black */
   background: transparent;
   text-decoration: none;
}
a:hover {
   font-weight: bold;
   background: #B40431;
   color: #ffffff; /* white */
   text-decoration: none;
}
a:focus {
   color: #DFDFBF;
}
a:active {
   font-weight: bold;
   background: #ffffff;
   color: #B40431;
}

/* =============================================
 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: 70%;
   text-align: left; /* Redefines the text alignment defined by the body element. */;
   border: 2px #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/grid-noise.png');
}

/*===================================
Masthead Styles - top banner.  Pat Geary calls this the #outerWrapper #header.  #banner .title is called #outerWrapper #header .sitename
====================================*/
#banner {
   height: 180 px;
   font-size: 2em;
   padding: 0px 5px 0px 5px;
   border-top: 2px solid #B40431;
   border-bottom: 2px solid #B40431;
   margin: 5px auto 5px auto;
   background-color: transparent;
   /*background-image: url('images/5650f2d14542f.png');
   background-position: right; */
   background-repeat: no-repeat;
   background-image: url('images/5650f2f536964.png');
   background-position: left;
   /* ===========================
   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: 1em;
   font-weight: bold;
   text-align: center;
   padding: 5px 0px;
   margin: 2px 0px;
   background-color: transparent;
   font-style: normal;
   color: #474747;
}
#banner .tagline {
   font-size: .7em;
   font-weight: bold;
   text-align: center;
   font-family: "Georgia";
   background-color: transparent;
   font-style: normal;
}

/*=======================================
Wrapper for the content columns
========================================*/
#contentWrapper {
   clear: both;
   background: transparent;
   overflow: hidden;
   background-image: url('images/grid-noise.png');
   background-repeat: repeat-y;
}

/*==================================
Left sidebar. Pat Geary calls this #leftColumn1
===================================*/
#leftnav {
   font-family: Verdana, Arial, Helvetica, sans-serif;
   font-size: 100%;
   width: 17%;
   padding: 5px;
   margin: 3px 0px 0px 0px;
   /* border: 1px solid #474747; */
   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: #474747;
   padding: 4px;
   border: 1px solid #474747;
   text-decoration: none;
   margin-top: 2px;
   width: 175px;
   border-radius: 6px;
   -webkit-border-radius: 6px;
   -moz-border-radius: 6px;
}

#leftnav ul li a:hover, #leftnav ul li a:focus {
   color: #ffffff;
   background-color: #B40431;
}

/*===================================================
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 200px;
   text-align: left;
   vertical-align: top;
   font-weight: normal;
}

/*===========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: #474747;
   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 #B40431;
   clear: both;
   padding: 10px;
   background-color: transparent;
   text-align: center;
   color: #474747;
   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;
}

/*===================images==========================*/
span.floatRight {
    float:right;
    display:inline-block;
    width:50%;
    min-width:150px;
    font-size:80%;
    font-weight:bold;
    color:#c00;
    text-align:center;
    line-height:1.1em;
    padding:5px 0 2px 5px;
    }
span.floatRight img {
    position:relative;
    width:100%;
    }
span.floatLeft {
    float:left;
    display:inline-block;
    width:25%;
    min-width:150px;
    font-size:80%;
    font-weight:bold;
    color:#c00;
    text-align:center;
    line-height:1.1em;
    padding:5px 5px 2px 0;
    }
span.floatLeft img {
    position:relative;
    width
    }

/*================== general styles =================*/
hr {
   width: 50%;
   text-align: center;
   background-color: #B40431;
   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: none;
   margin-right: auto;
   margin-left: auto;
}
.photo th {
   background-color: inherit;
}
.photo td {
   vertical-align: top;
   border: none;
   width: 20%;
   padding: 3px;
   text-align: left;
   font-size: 100%;
}
.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: #474747 2px solid;
   margin: 10px 0px 3px 0px;
   padding: 0px 3px 2px 3px;
   background: #inherit;
   color: #532A19;
   font-size: 70%;
   text-align: center;
   box-shadow: inset 0px 0px 30px #F5A9A9;
}
.sideboxheading {
   background: #F5A9BC;
   color: #FFFFFF;
   font-weight: bold;
   text-align: center;
   margin-top: 3px;
   padding: 2px;
}

