/* Start of CMSMS style sheet 'layout' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size:11px;
   line-height: 1.7em;
   color:#442209;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
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 */
   color:#9f3d00;


}

a:visited {

}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;

}

/*****************
basic layout 
*****************/
body {
      background:url(images/body-bg.gif) repeat-x #190c03;
   color: #333;
   padding:20px 0 100px 0;
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 4px solid #997b47;
   padding:2px;
   margin: 0 auto;       /* this centers wrapper */
   background-color: #fff;;
   color: black;
   width:746px;
   overflow:hidden;
}



/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
   height: 194px;    /* adjust according your image size */
   border:1px solid #ccc6ba;           
}
div#header h1{margin:0; padding:0;}

div#header h1 a {
/* you can set your own image here */
   background: url(images/header.jpg) no-repeat; 
   display: block;
   height: 194px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

 div#content {
   margin: 2px 0 0 0;   /* some air above and under menu and content */
   border:1px solid #ccc6ba;
   border-top:none;
   background:url(images/main-bg.gif) repeat-y;
   width:744px;
   padding:0;
   float:left;
}


div#main {
   margin:0;
   padding:27px 10px 30px 20px;
   width:310px;
   float:left;
   color:#000;
}

div#main2 {
   margin:0;
   padding:27px 5px 30px 20px;
   width:517px;
   float:left;
   color:#000;
}

div#main3 {
   margin:0;
   padding:27px 10px 30px 20px;
   width:517px;
   float:left;
   color:#000;
}

div#main h2.welcome{width:255px; height:44px; background:url(images/h2-welcome.gif) no-repeat;}
div#main h2.welcome span{display:none;}

div#main #new-arrivals{
   width:236px;
   height:75px;
   margin:25px 0 0 0;
}


div#main #new-arrivals img{border:none;}

div#right{float:left; width:193px; margin:0; padding:20px 0 0 0;}

div#right img{
   margin:0 0 10px 0;
   border-bottom:20px solid #d9cebc;
}

div#main2 img{
   margin:0 0 10px 10px;
   border-bottom:20px solid #d9cebc;
}

div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 193px;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 0;
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #7f6e5e;
   width:760px;
   margin:0 auto;
}

div#footer-left {float:left;}
div#footer-right {float:right;}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em;       /* some air for footer */
   text-align: center;  /* centered text */
   margin: 0;
}

div#footer p a {
   text-decoration:none;   
   color: #7f6e5e;
}

div#footer-right {color:#665038;}
div#footer-right p a{color:#665038;}

/* 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 black;
   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 {

}

/* HEADINGS */
div#content h1{
font-size:17px;
font-weight: bold;

}
 
div#content h2{
padding:10px 0 10px 45px;
background:url(images/h2-arrow.gif) no-repeat left center;
color:#442209;
font-size:17px;
font-weight: 900;
margin:0 0 20px 0;
}


div#content h3{
color:# 816029;
font-size:14px;
font-weight: bold;
margin:0 0 20px 0;
}
 

div#content h4{
color:# 442209;
font-size:13px;
font-weight: bold;
margin:0 0 20px 0;
}
 
div#content h5{
color:# 816029;
font-size:12px;
font-weight: bold;
margin:0 0 20px 0;
}

div#content h6{
color:# 442209;
font-size:11px;
font-weight: bold;
margin:0 0 20px 0;
} 

div#content p{
color:#000;
font-size:11px;
font-weight: regular;
margin:0 0 20px 0;
}

div#content #main a{
color:#000;
text-decoration: underline;
} 

div#content #main a:visited{
color:#000;
text-decoration: underline;
}


div#content #main a:hover{
color:#000;
text-decoration: none;
}



/* END HEADINGS */


/* LISTS */
/* lists in content need some margins to look nice */
div#main ul, div#main2 ul, div#main3 ul,
div#main ol, div#main2 ol, div#main3 ol,
div#main dl, div#main2 dl, div#main3 dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0 0 1.5em 0;
}

div#main ul li, div#main2 ul li, div#main3 ul li,
div#main ol li,  div#main2 ol li, div#main3 ol li{
   margin: 0 0 0.25em 2em;
}

div#main ul li, div#main2 ul li, div#main3 ul li{
list-style:none;
background: url(images/li-arrow.gif) no-repeat left center;
padding:0 0 2px 10px;
}

/* definition lists topics on bold */
div#main dl dt, div#main2 dl dt, div#main3 dl dt, {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd, div#main2 dl dd, div#main3 dl dd {
   margin: 0 0 1em 1em;
}

div#main dl, div#main2 dl, div#main3 dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}


/* END LISTS */



div#right h2.appointments1{
   width:193px;
   height:80px;
   background:url(images/appointments2.gif) no-repeat;
   margin:10px 0 0 0;
}

div#right h2.appointments1 span{
   display:none;
}

div#main2 h2.appointments2, div#main3 h2.appointments2{
   width:417px;
   height:15px;
   background:url(images/appointments.gif) no-repeat;
   margin:20px 0 0 20px;
}

div#main2 h2.appointments2 span, div#main3 h2.appointments2 span{
   display:none;
}


#main3 img{border:1px solid #b7a692; border-bottom:10px solid #997b47;}
#gallery img{border:1px solid #b7a692; border-bottom:10px solid #997b47; margin:20px 16px 0 0;}


/**********contact form************/
input, textarea{border:1px solid #825f27; width:250px;}
.contactform div label{width:200px;}


div#right #images-section img{display:inline; padding:0 6px 6px 0; border:none; margin:0;}

#main2 #images-section table, #main2 #images-section table td{border:none;}
#main2 #images-section table img{padding:0; margin:0;}
#main2 #images-section table td{padding:0 0 0 10px;}
/* End of 'layout' */

/* Start of CMSMS style sheet 'Module: News' */
div#news {
  margin: 2em 0 1em 1em;  /* margin for the entire div surrounding the news list */

  background: #FFE9AF; 
}

div#news h2 {
   line-height: 2em;
   background: #fff;
}

.NewsSummary {
    padding: 0.5em 0.5em 1em; /* padding for the news article summary */
    margin: 0 0.5em 1em 0.5em; /* margin to the bottom of the news article summary */

}

.NewsSummaryPostdate {
  font-size: 90%;
  font-weight: bold;
 }

.NewsSummaryLink {
    font-weight: bold;
    padding-top: 0.2em;
}

.NewsSummaryCategory {
  font-style: italic;
  margin: 5px 0;
 }

.NewsSummaryAuthor {
  font-style: italic;
  padding-bottom: 0.5em;
}

.NewsSummarySummary, .NewsSummaryContent {
  line-height: 140%;
 }

.NewsSummaryMorelink {
  padding-top: 0.5em;
}

#NewsPostDetailDate {
  font-size: 90%;
  margin-bottom: 5px;
  font-weight: bold;
  }

#NewsPostDetailSummary {
   line-height: 150%;
   }

#NewsPostDetailCategory {
  font-style: italic;

  margin-top: 0.5em;
  padding: 0.2em 0;
}

#NewsPostDetailContent {
  margin-bottom: 15px;
  line-height: 150%;
  }

#NewsPostDetailAuthor {

  padding-bottom: 1.5em;
  font-style: italic;
}


/* to add specific style to the below divs, uncomment them. */

/* 
#NewsPostDetailTitle {}
#NewsPostDetailHorizRule {}
#NewsPostDetailPrintLink {}
#NewsPostDetailReturnLink {}
*/
/* End of 'Module: News' */

/* Start of CMSMS style sheet 'Navigation' */
/********************
MENU
*********************/
#menu_vert {
   padding-left: 0;
   margin-left:0;
   line-height:1em;
}

#menu_vert ul {
margin:0; padding:0; width:193px;
}

/* third level has some padding to have it stand out */
div#menu_vert ul ul ul {
   padding-bottom: 0.5em;
}

/* menu li block */
#menu_vert li {
   list-style: none;
   margin: 0;
   display: block;
}

#menu_vert ul ul li {
   border: none;
   padding:2px 0 14px 0;
}

#menu_vert ul ul li.currentpage{
   background:url(images/menu-sub-bg.gif) repeat-x;
}

/** fix stupid ie bug with display:block; **/
* html #menu_vert li a { height: 1%; } 
* html #menu_vert li hr { height: 1%; }
/** end fix **/

/* first level links */
div#menu_vert a {
   text-decoration:none; /* no underline for links */
   display: block; /* IE has problems with this, fixed above */
   padding: 0.8em 0.5em 0.8em 1.5em; /* some air for it */
   background: url(images/menu-arrow.gif) no-repeat 180px center; 
   min-height:1em; /* Fixes IE7 whitespace bug */ 
   color:#6c4c25;
}

/* next level links, more padding and smaller font */
div#menu_vert ul ul a {
   padding: 0.5em 0.5em 0.5em 2.8em;
   background: url(images/menu-arrow.gif) no-repeat 20px center;
}

/* third level links, more padding */
div#menu_vert ul ul ul a {
   padding: 0.3em 0.5em 0.3em 4.3em;

}

/* hover state for all links */
div#menu_vert a:hover {

}
div#menu_vert a.activeparent:hover {

}

/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/
div#menu_vert li a.activeparent {


}

div#menu_vert ul ul li a.activeparent {



}


/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/
div#menu_vert ul h3 {
   background: url(images/menu-arrow.gif) no-repeat 180px center;
   display: block; 
   padding: 0.8em 0.5em 0.8em 1.5em;  /* some air for it */
   color: #6c4c25;                                 /* this will be link color for all levels */
   font-size: 1em;                           /* instead of the normal font size for <h3> */
   margin: 0;                                  /* as <h3> normally has some margin by default */
}

/* 
next level current pages, more padding, 
smaller font and no background color or bottom border 
*/
div#menu_vert ul ul h3 {
   font-size: 90%;
   padding: 0.3em 0.5em 0.3em 2.8em;

   background-position:20px center;
   border-bottom: none;
 
}

/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
   padding: 0.3em 0.5em 0.3em 4.3em;

}

/* section header */
div#menu_vert li.sectionheader {
   border-right: none;
   font-size: 130%;
   font-weight: bold;
   padding: 1.5em 0 0.8em 0;
   background-color: #fff;
   line-height: 1em;
   margin: 0;
   text-align:center;
}



/* separator */
div#menu_vert li.separator {
   height: 1px !important;
   margin-top: -1px;
   margin-bottom: 0;
   padding:2px 0 2px 0;
   background-color: #000;
   overflow:hidden !important;
   line-height:1px !important;
   font-size:1px; /* for ie */
}

div#menu_vert li.separator hr {
   display: none; /* this is for accessibility */
}

/* End of 'Navigation' */

/* Start of CMSMS style sheet 'Accessibility and cross-browser tools' */
/* accessibility */

/* 
menu links accesskeys 
*/
span.accesskey {
   text-decoration:none;
}

/* 
accessibility divs are hidden by default 
text, screenreaders and such will show these 
*/
.accessibility, hr {
   position: absolute;
   top: -999em;
   left: -999em;
}

/* 
definition tags are also hidden 
these are also used for menu links    
*/
dfn {
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}
/* end accessibility */


/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
  position: absolute;
  left: -5000px;
  width: 4000px;
}


/* clearing */
/* 
clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item.
We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience.
Do not edit if you dont know what you are doing
*/
	.clearfix:after {
		content: "."; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	* html>body .clearfix {
		display: inline-block; 
		width: 100%;
	}
	
	* html .clearfix {
		/* Hides from IE-mac \*/
		height: 1%;
		/* End hide from IE-mac */
	}

/* end clearing */
/* End of 'Accessibility and cross-browser tools' */

