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: #cbbda9;
  background-image: url("images/background.jpg");
  background-position: top left;
  background-repeat: repeat-x;
  color: #534741;
  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. */
}
/* Commonly used to style page titles. */
h1 {
  color: #534741;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #534741;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #534741;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #534741;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #534741;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #534741;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #534741;
}
/* 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-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 906px;
}
#header {
  background-image: url("images/header.gif");
  background-position: top left;
  background-repeat: no-repeat;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  height: 140px;
  line-height: 15px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  position: relative;}
#menu {position:absolute;
   top: 120px;
   left: 20px; }
#topNavigation {position:relative;
  background-image: url("images/main_image1.png");
  background-position: top left;
  background-repeat: no-repeat;
  height: 211px;
  padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
 font-weight:normal;
z-index:100;}
.topnavheader {color: #534741;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
display:block;
margin-bottom: 6px;}
#topNavigation a {font-weight: normal; text-decoration:none;}
#topNavigation .link1 {position:absolute;
right:20px;
top: 15px; 
width: 210px;}
#topNavigation .link2 {position:absolute;
right:20px;
top: 80px; 
width: 210px;}
#topNavigation .link3 {position:absolute;
right:20px;
top: 155px; 
width: 210px;}
#contentWrapper {
  background-image: url("2ColumnFixedRightSidebarHeaderandFooter_images/contentWrapper_bg.png");
  background-repeat: repeat-y;
  overflow: hidden;
}
#rightColumn1 {
  float:right;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 235px;

}
#rightColumn1 ul {margin-left: 0px;
padding-left: 0px;
padding-right:18px; 
}
#rightColumn1 ul li {list-style-type:none; 
margin-bottom: 10px;
background-color: #eee8e1;
padding: 10px;}
#rightColumn1 ul li ul {padding-right: 0px; }
#rightColumn1 ul li ul li {padding: 0px; }
#rightColumn1 h2 {margin-bottom: 8px;
font-size: 13px; }
#rightColumn1 ul #random_image-2 {background-color:#ffffff;
padding: 0; }
#rightColumn1 ul #random_image-2 .widgettitle {display:none;}

#random_image_wrapper {border:0;}
#random_image_wrapper a {border:0; }
#random_image_wrapper img {border:0; width:212px; height:133px; }

/* 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. */
#content {
  margin: 0 250px 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */

}
#footer {
  padding: 10px 10px 10px 10px;
  background: #cbbda9;
 /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
.designedby {float:right;
font-weight:normal;}
.designedby a {color: #534741;
font-weight: normal; }
.page_item {display:inline; 
list-style-type:none;
color: #fff;
padding: 0 30px 0 0;}

.page_item a {color: #fff; 
text-decoration:none; }
.page_item a:hover {text-decoration:none; 
color: #9a8776;}
#callout {background: #eee8e1 url('images/squirrel.gif') right no-repeat;
padding: 20px 90px 20px 20px; 
}
#bbc {background: url('images/bbc.png') top left no-repeat;
padding: 65px 20px 20px 250px; 
margin-top: 20px;
margin-bottom:20px;}
.dayHead {background-color: #534741; }


/* MY-DROPDOWN-STYLES */
.shailan-dropdown-menu { background: ##534741; }
.shailan-dropdown-menu ul.dropdown li a {
	padding: 5px 15px;
	font-size: 1em;
	color: #fff; }
.shailan-dropdown-menu ul.dropdown li a:hover {
	background-color: #534741;
	color: #cbbda9; }
.shailan-dropdown-menu ul.dropdown li ul{ width:200px; background: #534741;
		border-radius: 4px;
		-moz-border-radius: 4px;
		-webkit-border-radius: 4px;
		-khtml-border-radius: 4px; 
margin: 4px 0;
padding: 4px;}
.shailan-dropdown-menu ul.dropdown li.current_page_item>a,
	.shailan-dropdown-menu ul.dropdown li.current-cat>a,
	.shailan-dropdown-menu ul.dropdown li.current-cat>a:hover,
	.shailan-dropdown-menu ul.dropdown li.current_page_item>a:hover{
	color: #cbbda9;
	background: 534741; }
.alignright {float:right; margin-left:20px;margin-bottom:20px;}
.alignleft {float:left; margin-right:20px;margin-bottom:20px;}
