/**
 * @file
 * Page Background Styling
 *
 * The default layout method of Zen doesn't give themers equal-height columns.
 * However, equal-height columns are difficult to achieve and totally
 * unnecessary. Instead, use the Faux Columns method described in the following
 * ALA article:
 *   http://www.alistapart.com/articles/fauxcolumns/
 */


body {
}

#page-wrapper {
}

#page {
	-moz-border-radius: 15px;
  border-radius: 15px;
}
#main {
  background: white;
}
#header {
	background-color: rgb(182,180,80);
	opacity: 0.7;
  -webkit-border-top-right-radius: 20px;
  -webkit-border-top-left-radius: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-topleft: 20px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
	
}
#navigation {
}
.region-bottom {
  background-color: black;
  opacity: 0.8;
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top: 5px rgb(182,180,80) solid;
  
}
#navigation-wrapper {
  background: url(../images/section_headers/Green_header.png);
}

#dashboard{
  background: rgb(144,122,99); /*Brown */
}
#dashboard-nav {
	
}
#header .section {
}

#main-wrapper {
}

#footer{
	background-image: url("../images/footer-bg.png");
  background-repeat: repeat-x;
  border-top: gray;
  border-top-style: solid;
  border-top-width: 7px;
  background-color: black;
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

#footer .section { 
}
.sidebar h2.block-title {
	
}
.region-sidebar-second {
	background-color: rgb(0,97,114);
	/*border-bottom: rgb(0,97,114) 3.5em solid;*/
}
.region-sidebar-first{
  background-color: rgb(42,125,133);
  /*border-bottom: rgb(42,125,133) 3.5em solid;*/
}
/**
 * Makes the background for WYSIWYG pages white
 */
.cke_show_borders {
  background: white;
}