@charset "utf-8";
body {
  font-size: 14px;
  line-height: 1.25;
  font-family: Georgia, "Times New Roman", Times, serif;
	background-color: white;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector.
	padding: 0;
	margin: 0; */
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds all other elements ~~ */
.container {
	width: 1080px;
	background-color: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.header {
	background-image: url(../images/header_background.jpg);
	width: 1024px;
	position: relative;
	padding: 20px;
  font-family: "Lucida Handwriting", "Monotype Corsiva", cursive;
  font-size: 36px;
}

.mainmenu {
}

.content {
	width: 1024px;
	padding: 15px 0px 36px 12px;
  min-height: 620px;
  text-align: left;
  position: relative;
}

.content table {
  display: block;
}

.content ul {
  margin-left: 15px;
  margin-bottom: 12px;
}

.content li {
  margin-left: 0px;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/* my own stuff */

h1 {
 font-size:22pt;
 margin-bottom:20px;
 color: #003399;
}

/* Navigation */

.navbar {
    position: relative;
    display: inline;
    width: 100%;
}

.navbar-collapse {
    padding-right: 5px;
    padding-left: 5px;
}

/* Base CSS */
vnav {position: relative; float: left; display: block; top: -20px;}
vnav {padding: 0px 0px 0px 20px; margin: 0px; border: 0px;}
vnav ul,
vnav ul li,
vnav ul ul {list-style: none; margin: 0px; padding: 0px 8px; border: 0px}
vnav ul {position: relative; z-index: 397;}
vnav ul li {min-height: 1px; line-height: 1ex; vertical-align: middle;}
vnav ul ul {display: none; position: absolute; top: 0px; left: 158px; z-index: 398; width: 180px;}
vnav ul ul ul {top: 8px; left: 2%;}
@media only screen and (min-width: 500px) {
  vnav ul li:hover {position: relative; z-index: 399; cursor: default;}
  vnav ul li:hover > ul { display: block;}
}
@media only screen and (max-width: 500px) {
  vnav ul li:focus {position: relative; z-index: 399; cursor: default;}
  vnav ul li:focus > ul { display: block;}
}

/* Custom CSS Styles */

/* Vertical Navigation Bar */

vnav ul {text-align: left; background: #234297;}
vnav ul ul {background-color: rgba(35, 66, 1551, 0.75); padding-bottom: 12px;}
vnav ul li {padding: 12px 0px; color: white; border-bottom: thin inset darkgoldenrod;}
vnav ul ul li {padding: 8px; position: relative; top: 4px; border-bottom: thin inset white;}
vnav ul li.hover,
vnav ul li:hover {color: darkgoldenrod;}
vnav ul a:link,
vnav ul a:visited {color: #fff; text-decoration: none;}
vnav ul a:hover {color: #fff;}
vnav ul a:active {color: #ffa500;}

/* Horizontal Navigation Bar */

hnav {position: relative; display: inline; width: 100%;}
hnav a:link {color:white; text-decoration:none;}
hnav a:visited {color:white; text-decoration:none;}
hnav ul ul {display: none; text-align: left; width: 245px;}
hnav ul li:hover > ul {display: block;}
hnav ul {background: #3f6794; background: linear-gradient(top, #3f6794, #5e81a9, #3f6794); background: -moz-linear-gradient(top, #3f6794, #5e81a9, #3f6794); background: -webkit-linear-gradient(top, #3f6794, #5e81a9, #3f6794); padding: 0px; list-style: none; position: relative; display: inline-table; width: 100%;}
hnav ul:after {content: ""; clear: both; display: block;}
hnav>ul>li {font-size: larger; float: left; margin: 0px 10px; color: white; text-decoration:none; width: 225px;}
hnav>ul>li:first-child { padding-left: 90px;}
hnav ul li:hover>a {color: yellow; text-decoration: none;}
hnav ul li a {display: block; padding: 0px 0px; color: black; text-decoration: none;}
hnav ul ul {background: #3f6794; border-radius: 0px; padding: 0; margin: 0; position: absolute; top: 100%; z-index: 1000;}
hnav ul ul li {float: none; border-bottom: 1px solid yellow; position: relative; z-index: 1000; font-size: medium; margin: 0px 10px; width: 220px;}
hnav ul ul li:last-of-type {border: none;}
hnav ul ul li a {padding: 5px 0; color: #fff;}
hnav ul ul li a:hover {background: #3f6794;}
hnav ul ul ul {position: absolute; left: 100%; top: 0; z-index: 1000;} 

.text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;
	text-align: justify;
}
.medlg {  font-size: 13pt}
.large {  font-size: 24pt}
.small {
	font-size: 8pt;
	font-family: Arial, Helvetica, sans-serif;
}
p {  text-align: justify}
.larger { font-size: 18pt}
.cmstitle {  font-family: Georgia, Georgia, "Times New Roman", Times, serif; font-size: 18pt; font-weight: bold; color: #003399; width: 100%; text-align: center; }
.label {  font-family: Arial, Helvetica, sans-serif; font-size: 10pt}
.highlight {  color: #003399; font-weight: bold}
.whitelink {  font-family: Arial, Helvetica, sans-serif; font-size: 7pt; text-decoration: none; color: #FFFFFF; font-weight: bold}
.whitelinkalt { font-family: Arial, Helvetica, sans-serif; font-size: 7pt; text-decoration: underline; color: #FFFFFF; font-weight: bold }
.divrelative {  position: relative; text-align: left; }
.divabsolute {  text-align: left; position: absolute; }

header {
  background: #ffffff;
  background-image: url(../images/MtDiabloCE0511.jpg); /* fallback */
  background-image: url(../images/MtDiabloCE0511.jpg), -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#feeacb)); /* Saf4+, Chrome */
  background-image: url(../images/MtDiabloCE0511.jpg), -webkit-linear-gradient(top, #ffffff, #feeacb); /* Chrome 10+, Saf5.1+ */
  background-image: url(../images/MtDiabloCE0511.jpg),    -moz-linear-gradient(top, #ffffff, #feeacb); /* FF3.6+ */
  background-image: url(../images/MtDiabloCE0511.jpg),     -ms-linear-gradient(top, #ffffff, #feeacb); /* IE10 */
  background-image: url(../images/MtDiabloCE0511.jpg),      -o-linear-gradient(top, #ffffff, #feeacb); /* Opera 11.10+ */
	background-image: url(../images/MtDiabloCE0511.jpg),         linear-gradient(to bottom, #ffffff, #feeacb); /* W3C */
  background-position:right;
  background-repeat:no-repeat;
  width: 1080px;
  height: 125px;
  margin: auto;
}

header img {
  margin: 17px 60px;
}

sidebar {
  background: #fee5bf;
  background: -webkit-gradient(linear, left top, left bottom, from(#fee5bf), to(#fbb03b));   background: -webkit-linear-gradient(top, #fee5bf, #fbb03b);
/* Saf4+, Chrome */
  background: -moz-linear-gradient(top, #fee5bf, #fbb03b);
  background-image: url(../images/MtDiabloCE0511.jpg),     -ms-linear-gradient(top, #fee5bf, #fbb03b); /* IE10 */
  background-image: url(../images/MtDiabloCE0511.jpg),      -o-linear-gradient(top, #fee5bf, #fbb03b); /* Opera 11.10+ */
  background: linear-gradient(top, #fee5bf, #fbb03b);
  padding: 12px;
  min-height: 620px;
  float: left;
  margin-right: 12px;
  min-width: 200px;
}

sidebar h2 {
  color: #000099;
}

sidebar events {
}

sidebar event {
  margin-bottom: 12px;
  padding-left: 15px;
  display: block;
}

sidebar event date {
  font-size: 14pt;
  font-weight: bold;
  display: block;
}

sidebar event topic {
  font-size: 10pt;
  font-weight: bold;
  font-style: italic;
  display: block;
}

sidebar event document {
  font-size: 10pt;
  display: block;
}

credits {
  font-size: small;
  text-align: center;
  width: 270px;
  margin-left: 10px;
  position: absolute;
  top: 750px;
  z-index: 12;
}

.column1 {
  width: 362px;
  float: left;
}

.column2 {
  width: 362px;
  float: left;
  position: relative;
  left: 24px;
}

.column3 {
  position: relative;
  clear: both;
  width: 1080px;
  left: -323px;
  top: -50px;
  padding-left: 23px;
  background-image:url(../images/MtDiabloCE0511Strip.jpg);
  background-color:transparent;
  background-repeat:no-repeat;
  background-position: left 50px;
}

.column4 {
  margin: 20px 35px 0px 300px;
}

.FaP {
  display: inline-table;
  width: 281px;
  min-height: 180px;
  border: thin solid black;
  box-shadow: 5px 5px 5px #666;
  margin-left: 60px;
}

.Newsletter {
  display: inline-table;
  width: 154px;
  min-height: 220px;
  margin-left: 96px;
  border: thin solid black;
  box-shadow: 5px 5px 5px #666;
}

.BoD {
  display: inline-table;
  width: 332px;
  min-height: 150px;
  margin-left: 80px;
  border: thin solid black;
  box-shadow: 5px 5px 5px #666;
}

trailer {
  position: relative;
  width: 1080px;
  z-index: 10;
  text-align: center;
  top: -10px;
  font-size: 12px;
}

trailer .small a {
  text-decoration: none;
}

trailer .small a:hover {
  text-decoration: underline;
}

.memberdiv {
	padding: 2px;
	width: 370px;
	position: relative;
	z-index: 1;
	font-size: 13px;
}
.addressdiv {
	display: none;
	padding: 8px;
	width: 320px;
	position: absolute;
	top: -4px;
	left: 370px;
	font-size: 13px;
}
.ceevents {
	padding: 4px;
	float: right;
	margin-bottom: 4px;
	margin-left: 4px;
	border: 1px solid #000000;
	width: 180px;
	text-align: left;
}

/* Content Management System */

#cmssidebar {
	float: left;
	width: 109px;
	line-height: normal;
	font-size: 14px;
	border-top-width: 2px;
	border-top-style: none;
	background-color: #FFFFFF;
	position:absolute;
	left:0px;
	border-right-width: 2px;
	border-right-style: none;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-bottom-style: none;
	border-left-style: none;
	top: 360px;
	padding: 25px 5px 0px 20px;
}
#cmssidebar a {
	color: #8FA43F;
	text-decoration: none;
	font-weight: bold;
}

#cmssidebar a:hover {
	color: #666666;
}
pagetitle {
  display: block;
}
pagenumber {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;
	text-align: center;
}
providername {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;
  font-weight: bold;
	text-align: center;
}
input#add_item {
  float: left;
  position: relative;
  top: -3px;
  left: -2px;
}
div.edit_block input[type='file'] {
  position: relative;
  left: 112px;
}
div.checkbox_list_entry {
  margin-left: 12px;
}
.cke_editable.is-dragover {
  background-color: grey;
}