/* 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: #555;
    color: #000;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 14px;
  margin: 0 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. */
}

img { display:block;
border:0px} 

/* Commonly used to style page titles. */
h1,h3 {
  font-family: Arial, Verdana, Helvetica, sans-serif;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
    font-family: Arial, Verdana, Helvetica, sans-serif;
color: #000;
  font-size: 11px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #000;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #570205;
  text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
outline:none;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
outline:none;
}

#footer a {
color:#fff;
font-size:.8em;
}

#top, #bottom {
  width: 770px;
height:18px;
margin:0px auto;
  padding: 0px;
overflow:hidden;
 background-image: url("/media/backgroundtop.jpg");
  background-position: top center;
  background-repeat: repeat-x;
}

#bottom {
height:25px;
 background-image: url("/media/backgroundbottom.jpg");
}

/* 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-image: url("/media/background.jpg");
  background-position: top center;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 770px;
}
#outerWrapper #header {
  background-color: #FFFFFF;
  background-image: url("/media/headerprint.gif");
  background-position: center left;
  background-repeat: no-repeat;
  font-size: 18px;
width:708px;
margin:0px auto;
  font-weight: bold;
  height: 80px;
  line-height: 15px;
  padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper {
  border-bottom: 5px solid #fff;
  border-top: 5px solid #fff;
  width:708px;
margin:0px auto;
  background-image: url("/media/mainbg.gif");
  background-position: center center;
  background-repeat: repeat-y;
}
#outerWrapper #contentWrapper #sidebar {
  background-color: #740305;
  color: #FFFFFF;
  float: right;
  width: 250px;
}

#sidebar a,  #sidebar a:link {
  color: #fff;
  text-decoration: none;
}
/* Sets the style for visited links. */
#sidebar a:visited {
  color: #fff;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
#sidebar a:hover {
  color: #fff;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#sidebar a:focus {
  color: #fff;
}
/* Sets the style for a link that is being activated/clicked. */
#sidebar a:active {
  color: #fff;
}

/* 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 250px 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
width:450px;
}

#maincontent {
padding-left:10px;
width:440px;
}

/* 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: right;
  display: block;
}
#outerWrapper #footer {
  background-color: #570205;
  color: #FFFFFF;
width:688px;
margin:0px auto;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#content p{
padding:5px 0px;
margin:0px;
}

#content h1{
font-family:arial;
padding:15px 0px 0px 0px;
margin:0px;
}

#content h2{
padding:5px 0px;
margin:0px;
}

.featured {
border-top:5px solid #fff;
overflow:auto;
width:250px;
}
.featured h2 {
padding:3px 5px;
color:#fff;
margin:0px;
}

.featured p {
font-size:.9em;
padding:0px 5px;
margin:0px;
}

.featured img {
margin:3px;
float:right;
display:inline;

}

.mainlistings{
width:440px;
overflow:auto;}

.mainlistings h3 {
margin:5px 0px 8px 0px ;
padding:0px;
}

.mainlistings img {
float:right;
clear:right;
border:1px solid #570205;
margin:0px 0px 10px 10px;
}

.mainlistings hr {
clear:both;
height:1px;
border-bottom:0px dotted #fff;
border-top:1px dotted #999;
}

/* MAINNAV */

#mainnav {
height:28px;
overflow:hidden;
list-style: none;
margin: 0;
border-top:5px solid #fff;
border-bottom:5px solid #fff;
}

#mainnav ul {
margin:0px; padding:0px}

#mainnav li {
display:inline; 
float:left; 
list-style: none;}

#mainnav li a {
display:block;
text-decoration:none;
background-position: 0px 0px;
height: 28px;
padding:120px 0 0 0;
overflow:hidden;
}

a.home{
width:72px;
background-image: url(/media/mainnav/home.gif);
}

a.chartered{
width:163px;
background-image: url(/media/mainnav/chartered.gif);
}

a.spanish{
width:136px;
background-image: url(/media/mainnav/spanish.gif);
}

a.contact{
width:79px;
background-image: url(/media/mainnav/contact.gif);
}

#mainnav a:hover, #home .home, 
#chartered .chartered, #spanish .spanish ,
#contact .contact {
background-position: 0px 28px;
}

/* SIDENAV*/

#sidenav {
overflow:hidden;
list-style: none;
margin: 0px;
}

#sidenav ul {
margin:0px;
padding:0px;
list-style: none;
border-top:5px solid #fff;
border-bottom:4px solid #fff;}

#sidenav li {
line-height:27px;

border-bottom:1px solid #fff;
}

#sidenav li a {
display:block;
text-decoration:none;
height: 27px;
color:#fff;
font-weight:normal;
padding:0px 0 0 20px;
overflow:hidden;
}

#sidenav li a:hover {
background-color:#570205}