@charset "utf-8";
body  {
	font: 76% Verdana, Arial, Helvetica, sans-serif;
	background-color: #f5fa93;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333;
}

/* Tips for this Hybrid layout
1. Since the side columns em-based sizing is based on the user's default font size, you will want to be sure that background graphics in the columns take that into account. Built correctly, this is more accessible for those that need larger font sizes, since the width of the columns remains proportionate. If this is undesirable with your design, simply change the width to a pixel size and be sure to change the margins on the #mainContent div accordingly.
2. Since the sizing of side columns in this layout are based on the 100% font size in the body element, if you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the column widths will downsize proportionately. You may want to increase their widths, and the size of the #mainContent div's side margins, to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
4. The #container div is not necessary for this layout at the 100% width. You may want to use it to create faux columns or limit the width of the layout.
5. It is not neccessary to have the 100% width on the #container div since, by nature, a div takes up 100% of the available space. It is here so that if you want to decrease the size of the overall container - perhaps leaving a bit of margin on each side - this will already be available for adjustment.
*/
#container { 
	width: 1050px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page if needed */
	text-align:left; /* this overrides the text-align: center on the body element. */
}  
#header {
	background: #fff;
	padding: 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColHybHdr #sidebar1 p" rule.
*/
#sidebar1 {
	float: left; 
	width: 11em; /* since this element is floated, a width must be given */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
}
#sidebar2 {
	float: right; 
	width: 11em; /* since this element is floated, a width must be given */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
}
#sidebar1 h3, #sidebar1 p, #sidebar2 p, #sidebar2 h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
/*.thrColHybHdr #mainContent {
 	margin: 0 120px 0 193px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. 
	padding: 0 2em 0 2em; /* padding here creates white space "inside the box." 
}
*/
/*.thrColHybHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. 
	background:#DDDDDD;
} */
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.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 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
a{
	color: #006699;
	text-decoration: none;
}

a:hover{
	color: #F99;
	text-decoration: underline;
}

a:link{
	color: #006699;
	text-decoration: none;
}

a:visited{
	color: #006699;
	text-decoration: none;
}

h1{
 font-family: Verdana,Arial,sans-serif;
 font-size: 115%;
 color: #334d55;
 margin: 1pt;
 padding: 0px;
}

h2{
 font-family: Arial,sans-serif;
 font-size: 100%;
 color: #006699;
 margin: 1pt;
 padding: 0px;
}

h3{
 font-family: Arial,sans-serif;
 font-size: 105%;
 color: #334d55;
 /*color: #ffffff;*/
 margin: 1pt;
 padding: 0px;
}

h4{
 font-family: Arial,sans-serif;
 font-size: 100%;
 font-weight: normal;
 color: #333333;
 margin: 1pt;
 padding: 0px;
}

h5{
 font-family: Verdana,Arial,sans-serif;
 font-size: 100%;
 color: #334d55;
 margin: 1pt;
 padding: 0px;
}

label{
 font-family: Arial,sans-serif;
 font-size: 100%;
 font-weight: bold;
 color: #334d55;
}


/***********************************************/
/* Layout Divs                                 */
/***********************************************/

#masthead{
	padding: 0px 0px 0px 0px;
	border-top: 0px solid #006633;
	border-bottom: 0px dotted #F5fa95;
	width: 100%;
	border-right-style: none;
	border-right-width: 0px;
	border-right-color: #006633;
	height:162px;/*163*/
}

#navBar{
	float: left;
	width: 180px;
	height: 600px;
	margin: 0px;
	margin-right:5px;
	padding: 15px;
	padding-right: 15px;
	font-size:90%;
}

#headlines{
 	float:right;
	width: 10px;
	padding-right: 0px;
	color:#FFFFFF;
}
#headlines a{  
	color:#063;
	font-weight:bold;
	text-decoration: underline;
}
#headlines a:hover{  
	color:#069;
	font-weight: normal;
	background-color:#FFFFFF;
	text-decoration:none;
}

#mainContent{
	min-height:580px;
	margin:0 10px 0 200px;
	background-color: #fefefe;
	padding:10px;
	color: #333;
	border-right: 0px solid #ccf;
	border-top: 1px solid #eef;
	border-left: 1px solid #eef;
	border-bottom: 0px solid #ccf;
	text-align:justify;
	font-size:90%;
}
#mainContent a{
	text-decoration:underline;
}
#mainContent a:hover{
	text-decoration: overline;
}
#mainContent h3{
	color:#063;
	font-size: 105%;
}
#mainContent h2{
	font-size: 90%;
}
#mainContent h4{
	color:#f0aa33;
	font-size: 105%;
}
#mainContent li{
	color:#333;
}
#mainContent label{
	color:#333; padding-bottom:4px;
}
#mainContent Ul{
	padding-left:0px;
	padding-bottom:5px;
	margin-left:5pt;
	padding-top:0px;
	margin-bottom:0pt;
	font-size:97%;	
}
#mainContent form .form-text{
	width:50%;
}
#mainContent form{
	padding:10px;
	margin:10px;
	margin-left:5%;
	border:#CCC 1px solid;
	width:60%;
}
#mainContent .messages{
	padding:10px;
	padding-top:5px;
	padding-left:1.5%;
	margin:10px;
	margin-left:5%;
	border: #C00 1px dashed;
	width:59.5%;
}
#mainContent table{
	line-height:12px;
	font-size:95%;
	color:#000;
}
#mainContent td{
	margin:0;
}
#mainContent button{
	background-color:#006633;
	width:100px;
	height:40px;
	color:#dddddd;	
	
}


/***********************************************/
/* Components                                  */
/***********************************************/
#topLine{
	background-color: #008000;
	color: #fff;
	font-weight:normal;
	text-align:right;
	padding-left:5px;
	width:auto;
	height:20px;
	font-size: 90%;
}
#topLine a{
	color: #f5fa93;
}
#topLine a:hover{
	color:#fff;
	border-bottom: #FFFF00 0px dotted;
	text-decoration:none;
}

#siteName{
	margin: 0;
	padding:0 0 0 5px;
	color: #003399;
	font-weight:bold;
	font:Narkisim;
	background-repeat:no-repeat; 
	background-position:left; 
	height:47px; 
	width:156px;
	text-align:left;
}
.jokewoodFont{
	font-family: Jokewood;
	font-size: 36px;
	color: #FFff99;
	font-weight:bold;
}
.Monotype36 {
	font-family: "Monotype Corsiva";
	font-size: 36px;
	color: #1F86DE;
}

#logoBgr{
	border-top: 0px solid #006633;
	background-image:url(http://www.obadan.com/images/greenbgr.png);background-repeat:repeat;background-position:bottom center;background-color:#008000;	
	height:100px;
	border-bottom:0px solid #0a8506;
	width: 100%;
	padding: 0px;
	
}
#lOGOTopLine{
	float: left;
	width: 50%;
	height: 100px;
	background-image:url(http://www.obadan.com/images/slogo3.gif);
	background-position: right;
	background-repeat:no-repeat;
	vertical-align: middle;
	text-align: left;
}
#AdvertsHighlights{
	float: right;
  	width: 45%;	
	height: 100px;
	vertical-align:middle;
	padding-top:0px;
	border:0px #000 dotted;
}
#AdvertsHighlights form, #AdvertsHighlights table{
 margin: 0px;
 padding: 0px;
 border:0px #000 dotted;
}

#AdvertsHighlights label{
	display: block;
	margin: 0px;
	padding: 0px;
	color: #00FF00;
}

/************* #globalNav styles **************/
#navBody{
	/*background-color:#efF ;*/
	border:0px inset #efF;
	background-image:url(http://www.obadan.com/images/bgrMenu4.png);
	background-position: top;
	background-repeat:repeat-x;
	color: #41BA46;
	/*border-top:2px solid #0a8506;*/
	text-align: center;
	width: auto;
	height:31px;
	padding-top:10px;
	padding-bottom:1px;
	background-color: #EDD712;
}
#globalNav{
	padding-left:5px;
	padding-right:0px;
	padding-top:3px;
	width: 100%;
	height:33px;
	margin:0px;
	font-weight:bolder;
	float:left;
	text-align:center;
	vertical-align:middle;
}
#globalNav a{
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-top: 0px;
	text-decoration:none;
	color: #000;/*f5fa93*/
	border-right: 1px outset #eed812 ;
	border-left: 1px inset #eed812 ;
	border-bottom: 0px solid #030;
	border-top: 0px solid #006633;	
	text-align:center;
	vertical-align:middle;
}
  

#globalNav_active{
	border-bottom: 4px solid #063;;
}
#globalNav a:hover{
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-top: 0px;
	text-decoration:none;
	color: #063;/* #FF9966*/
	border-right: 1px inset #efF ;
	border-left: 1px outset #efF ;
	border-bottom: 0px solid #efF ;
	border-top: 0px solid #006633;	
	text-align:center;
	vertical-align:middle;
}

#globalNav img{
 display: block;
}

/*************** #pageName styles **************/

#pageName{
	margin: 0px;
	padding: 0px 0px 0px 10px;
	color:#1F86DE;
}

/************* #PageLocationLinks styles *************/

#PageLocationLinks{
	font-size: 95%;
	color:#ffffff;
	padding-top: 2px;
	border-bottom-color: #006633;
	border-right-color: #006633;
	border-right-style: none;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-bottom-style: solid;
	padding-bottom: 10px;
	height: auto;
}
#PageLocationLinks a{
	font-size: 95%;
	color:#f33;
}


/************** .feature styles ***************/

.feature{
	padding: 0px 0px 10px 10px;
	font-size: 95%;
}

.feature h3{
	padding: 30px 0px 5px 0px;
	text-align: left;
}

.feature img{
	float: left;
	padding: 10px 10px 0px 0px;
}


/************** .story styles *****************/

.story{
	clear: both;
	padding: 10px 0px 0px 10px;
	font-size: 95%;
}

.story p{
	padding: 0px 0px 10px 0px;
}


/************* #footer styles ***************/

#footer{
	clear: both;
	font-size: 95%;
	color: #003300;
	height: 32px;
	background-image: url(http://www.obadan.com/images/greenbgr_footer.png);
	background-repeat:repeat;
	/*	top: 775px;
	position: absolute;
	margin: 0px;
	*/
	border-top: 0px solid #006633;
	border-bottom: 2px solid #006633;
	border-right: 0px solid #006633;
	border-left: 0px solid #006633;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	text-align:center;
}
#footer a{
	color: #003300;
}
#footer a:hover{
	color: #FF0000;
}
#footer img{
	padding: 4px 4px 4px 10px;
	vertical-align: middle;
}

#footer .block, #footer .box, #footer .block h2 ,#footer .content  {
	height:0px;
	font-size:1px;
	border:0px #000 dotted; 
	margin:0;
	padding:0;
}

#footerLeft{
	float: left;
	width: 80%;
	vertical-align: middle;
	text-align:left;
	height:25px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#footerRight{
	float: right;
	width: 15%;
	vertical-align: top;
	text-align:right;
	height:25px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

/************* #search styles ***************/

#search{
	padding: 5px 0px 5px 10px;
	border-bottom: 0px solid #cccccc;
	font-size: 95%;
	background-color:#000000;
	color: #00FF00;
}

#search form{
 margin: 0px;
 padding: 0px;
}

#search label{
	display: block;
	margin: 0px;
	padding: 0px;
	color: #00FF00;
}


/*********** #navBar link styles ***********/

#navBar ul a:link, #navBar ul a:visited {display: block;}
#navBar ul {list-style: none; margin: 0px; padding: 0px;}
#navBar h3 { background-color:#006633; color:#FFFFFF; margin:0px; padding:0px; }

/* hack to fix IE/Win's broken rendering of block-level anchors in lists */
#navBar li {border-bottom: 1px solid #ffffff; margin:0px; padding:0px; }

/* fix for browsers that don't need the hack */
html>body #navBar li {
	border-bottom: none;
	padding-left: 0px;
	margin-left: 0px;
}

#subMenu{
	border-top:#F5fa95 solid 0px;
	border-bottom:#F5fa95 dotted 0px;
	text-align:left;
	padding-left:10px;
	height:15px;
	width: auto;
}
#subMenu a:hover{
	background-color:#EED812;
}
#subMenu_active{
		border-top:#F5fa95 solid 0px;
		border-bottom:#F5fa95 dotted 0px;
		text-align:center;
		background-color:#FC0;
}

/*********** #PageMenu styles ***********/

#PageMenu{
	position: relative;
	margin: 0px;
	padding: 0px;
	border-bottom: 0px solid #ffffff;
	border-top: 0px dotted #ffffff;
	font-size: 96%;
}

#PageMenu h3{
	padding: 10px 0px 2px 10px;
}

#PageMenu a {
	display: block;
	background-color: #063;
	/*border-top: 1px solid #FC0;*/
	border: 2px outset #063;
	border-left: 2px outset #063;
	padding:5px;
	color: #fff;
	text-decoration:none;
}

#PageMenu a:hover{
	display: block;
	background-color: #eef;
	/*border-top: 1px solid #FC0;*/
	border-top: 2px inset #ccf;
	border-right: 2px solid #ccf;
	border-bottom: 2px solid #ccf;
	border-left: 2px inset #FC0;
	padding:5px;
	color: #063;
	text-decoration:none;
}
#PageMenu_active{
	display: block;
	padding-bottom:3px;
	padding-left:3px;
	padding-top:3px;
	border: 2px solid #eed812;
	
}
/*
#PageMenu a:link {
	display: block;
	border-top: 1px dashed #006633;
	border-left: 5px solid #ffffff;
	padding: 0px 0px 2px 10px;
	color:#006633;
	background-color: #009999;
} */


/*********** .relatedLinks styles ***********/

.relatedLinks{
	position: relative;
	margin: 0px;
	padding: 0px 0px 10px 5px;
	font-size: 95%;
	background-color:#FFFFFF;
}

.relatedLinks h3{
	padding: 10px 0px 2px 0px;
}

.relatedLinks a:link,
.relatedLinks a:visited {
	display: block; 
}
#historyBooks{
	padding-left:10px;
}

/************** #advert styles **************/

#advert{
	padding: 30px 0px 10px;
}

#advert img{
	display: block;
}


/************** #headlines styles **************/

#headlines{
	margin: 0px;
	padding-left:0px;
	padding-bottom:0px;
	padding-right:0px;
	padding-top:0px;
	height: 600px;
	border-right-style: none;
	border-right-color: #006633;
	border-right-width: 0px;
	width: 120px;
}
.contentForm{color:#009966; background-color: #FFFf99; border:#006633 1px solid; padding:2px;}
.contentForm:hover{color:#FF0033; background-color: #FFFF99; border: #FF0033 1px solid; padding:2px;}
.formNotice{font-size:90%; color:#FF3366}

#headlines p{
	padding: 5px 0px 5px 0px;
}
#googleButtonColor{color:006633;}
#redLead{
	color: #F5FA93;
	font-size: 95%;
	font-weight: bold;
}
#redLead hover{
	color: #33CC00;
	font-size: 95%;
	font-weight: bold;
}
#button {
	color: #FFFFFF;
	background-color: #006633;
	border: 1px solid #006633;
	font-weight:bold;
	padding:2px;
	width:80px;
}
#button:hover {
	color: #006633;
	background-color: #ffffff;
	border: 1px solid #006633;
	font-weight:bold;
	padding:2px;
	width:80px;
}
#outputErrorMessage{
	color:#aa0000;
	font-size:90%;
	width:90%;
	text-align:left;
	padding-top:50px;
	padding-left:10px;
	padding-bottom:50px;
	padding-right:5px;;
	border:#FF0033 1px dashed;
	margin-left:10px;
	background-color: #eeffee
}
#outputSuccessMessage{
	color: #3333ff;
	font-size:90%;
	width:90%;
	text-align:left;
	padding-top:50px;
	padding-left:10px;
	padding-bottom:50px;
	padding-right:5px;
	/*border:#FF0033 2px dashed;*/
	margin-left:10px;
	background-color: #FFFFee;
}
#news{
	
	line-height:25px;
	text-decoration:none;
	text-align: justify;
}	
#news b{	
	color:#063;
}
#news table{
		color:#333; 
}
#news td{
	border-bottom:#063 1px dashed; 
	border-top:#063 0px dotted;
	border-right:#063 0px dotted;
	border-left:#063 0px dotted;
	
}
#news tr{
	border-bottom:#063 1px solid; 
	border-top:#063 0px dotted;
	border-right:#063 0px dotted;
	border-left:#063 0px dotted;
	
}
#news hr{	
	color:#063;
}
#news a{
	text-align:right
}

#news a:hover{
	text-align:right;
	color:#F00;
}	
#ObadanQuickPreview{
	position:absolute; 
	width:518px; 
	z-index:4; 
	padding:5px; 
	left: 10px; 
	top: 402px; 
	font-size:12px; 
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	layer-background-color: #CCCCFF;
	visibility: hidden; 
	background-color: #ffffFF; 
	border: #FF3300 1px dashed;
	text-align:justify;
}
.AlignDivLeft{
	float:left;
	width:45%;
}
.AlignDivRight{
	float:right;
	width:45%;
 	border:0px #000 dotted;
}
.fontAlignLeft{
	text-align:left;
 	border:0px #000 dotted;
}
.fontAlignRight{
	text-align:right;
}
.paddingAndMargin_zero{
	margin:0pt; padding:0pt;
	margin-top:2px;
 	border:0px #000 dotted;
}
.breakinNews {
	color: #F00; 
	text-decoration:blink;
	font-weight:bold;
}
#facebook_login{
	height:15px;
	width:150px;
	padding:0;
	border:0px #000 dotted;
	float:right;
}
#rss{
	text-align:right;
	padding:0;
	border-bottom:1px dashed #063;
	margin:0;
}
tr.odd td, tr.even td {
  padding: 0.3em;
}
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
}
h1 {
  font-size: 1.3em;
}
h2 {
  font-size: 1.2em;
}
h3, h4, h5, h6 {
  font-size: 1.1em;
}
p {
  margin-top: 0.5em;
  margin-bottom: 0.9em;
}
a {
  text-decoration: none;
  font-weight: bold;
}
a:link {
  color: #39c;
}
a:visited {
  color: #369;
}
a:hover {
  color: #39c;
  text-decoration: underline;
}
fieldset {
  border: 1px solid #ccc;
}
pre {
  background-color: #eee;
  padding: 0.75em 1.5em;
  font-size: 12px;
  border: 1px solid #ddd;
}
table {
  /* make <td> sizes relative to body size! */
  font-size: 1em;
}
.form-item label {
  font-size: 1em;
  color: #099;
}


.form-text {
  font-size: 1em;
  color: #333;
  background-color:#ddd;
  border: 1px solid #eC3;
}
.required {
   border: 1px solid #F93;
}

.item-list .title {
  font-size: 1em;
  color: #333;
}
.links {
  margin-bottom: 0;
}
.comment .links {
  margin-bottom: 0;
}

/*
** Page layout blocks / IDs
*/
#header, #content {
  width: 100%;
}

#logo {
  vertical-align: middle;
  border:0px #000 dotted;
}
#logo img {
  float: left; /* LTR */
  padding: 0 1em;
  border:0px #000 dotted;
}
#menu {
  padding: 0.5em 0.5em 0 0.5em; /* LTR */
  text-align: right; /* LTR */
  vertical-align: middle;
}
#navlist {
  font-size: 1.0em;
  padding: 0 0.8em 1.2em 0.5em; /* LTR */
  color: #9cf;
}
#navlist a {
  font-weight: bold;
  color: #fff;
}
#subnavlist {
  padding: 0.5em 1.2em 0.4em 0; /* LTR */
  font-size: 0.8em;
  color: #9cf;
}
#subnavlist a {
  font-weight: bold;
  color: #9cf;
}
ul.links li {
  border-left: 1px solid #9cf; /* LTR */
}
ul.links li.first {
  border: none;
}
#search .form-text{
  border: 1px solid #FC3;
  font-size: 1.1em;
  height: 1.5em;
  vertical-align: middle; 
  width: 8em;
  padding: 0 0.5em;
  background-color:#CCf;
}
#search .form-submit {
  border: 1px solid #FC3;
  font-size: 1.1em;
  height: 1.5em;
  vertical-align: middle;
  border:1px inset #666;
  color:#063;
}
.form-submit {
  font-size: 1.1em;
  vertical-align: middle;
  border:2px outset #ccf;
  padding:2 5px;
  background-color:#ccf;
  color:#333;
}

#mission {
  background-color: #369;
  padding: 1.5em 2em;
  color: #fff;
}
#mission a, #mission a:visited {
  color: #9cf;
  font-weight: bold;
}
.site-name {
  margin: 0.6em 0 0 ;
  padding: 0;
  font-size: 2em;
}
.site-name a:link, .site-name a:visited {
  color: #fff;
}
.site-name a:hover {
  color: #369;
  text-decoration: none;
}
.site-slogan {
  font-size: 1em;
  color: #eee;
  display: block;
  margin: 0;
  font-style: italic;
  font-weight: bold;
}
/* #main {
  /* // padding in px not ex because IE messes up 100% width tables otherwise */
  /*padding: 10px;
}*/
#mission, .node .content, .comment .content {
  line-height: 1.4em;
}
#help {
  font-size: 0.9em;
  margin-bottom: 1em;
}
.breadcrumb {
  margin-bottom: .5em;
}
.messages {
  background-color: #eee;
  border: 1px dashed #ccc;
  padding: 10px;
  margin-bottom: 1em;
  margin-top: 1em;
}
.error {
  border-color: red;
}
#sidebar-right {
  background-color: #ddd;
  width:7.5em;
  /* padding in px not ex because IE messes up 100% width tables otherwise */
  padding: 10px;
  vertical-align: top;
}
#sidebar-left{
  background-color: #ddd;
  width: 12.5em;
  /* padding in px not ex because IE messes up 100% width tables otherwise */
  padding: 10px;
  vertical-align: top;
}


/*
** Common declarations for child classes of node, comment, block, box, etc.
** If you want any of them styled differently for a specific parent, add
** additional rules /with only the differing properties!/ to .parent .class.
** See .comment .title for an example.
*/
.title, .title a {
  font-weight: bold;
  font-size: 1.3em;
  color: #777;
  margin: 0 auto;  /* decrease default margins for h<x>.title */
}
.submitted {
  color: #999;
  font-size: 0.8em;
}
.links {
  color: #999;
}
.links a {
  font-weight: normal;
}
.block, .box {
	padding:5px; /* LTR */
	background-color:#FFF
}
.block {
  border-bottom: 1px solid #bbb;
  padding-bottom: 0.75em;
  margin-bottom: 1.5em;
}
.block .title {
  margin-bottom: .25em;
  
}
.box .title, .block .title {
  font-size: 1.1em;
  color:#fff;
  background-color:#099;
}
.box label, .block label {
    color:#099;
}
.box .content,  .block .content{
	font-size: 1.1em;
	border:1px solid #ccc;
	color:#333;
	padding:5px;
}

.node {
  margin: .5em 0 2em; /* LTR */
}
.sticky {
  padding: .5em;
  background-color: #eee;
  border: solid 1px #ddd;
}
.node .content, .comment .content {
  margin: .5em 0 .5em;
}
.node .taxonomy {
  color: #999;
  font-size: 0.8em;
  padding-left: 1.5em; /* LTR */
}
.node .picture {
  border: 1px solid #ddd;
  float: right; /* LTR */
  margin: 0.5em;
}
.comment {
  border: 1px solid #abc;
  padding: .5em;
  margin-bottom: 1em;
}
.comment .title a {
  font-size: 1.1em;
  font-weight: normal;
}
.comment .new {
  text-align: right; /* LTR */
  font-weight: bold;
  font-size: 0.8em;
  float: right; /* LTR */
  color: red;
}
.comment .picture {
  border: 1px solid #abc;
  float: right; /* LTR */
  margin: 0.5em;
}

/*
** Module specific styles
*/
#aggregator .feed-source {
  background-color: #eee;
  border: 1px solid #ccc;
  padding: 1em;
  margin: 1em 0;
}
#aggregator .news-item .categories, #aggregator .source, #aggregator .age {
  color: #999;
  font-style: italic;
  font-size: 0.9em;
}
#aggregator .title {
  margin-bottom: 0.5em;
  font-size: 1em;
}
#aggregator h3 {
  margin-top: 1em;
}
#forum table {
  width: 100%;
}
#forum td {
  padding: 0.5em;
}
#forum td.forum, #forum td.posts {
  background-color: #eee;
}
#forum td.topics, #forum td.last-reply {
  background-color: #ddd;
}
#forum td.container {
  background-color: #ccc;
}
#forum td.container a {
  color: #555;
}
#forum td.statistics, #forum td.settings, #forum td.pager {
  height: 1.5em;
  border: 1px solid #bbb;
}
#forum td .name {
  color: #96c;
}
#forum td .links {
  padding-top: 0.7em;
  font-size: 0.9em;
}
.profile {
	padding:10px;
	background-color:#beF;
}
#profile .profile {
  clear: both;
  border: 1px solid #abc;
  padding: .5em;
  margin: 1em 0em;
}
#profile .profile .name {
  padding-bottom: 0.5em;
}
.block-forum h3 {
  margin-bottom: .5em;
}
div.admin-panel .description {
  color: #999;
}
div.admin-panel .body {
  background: #f4f4f4;
}
div.admin-panel h3 {
  background-color: #69c;
  color: #fff;
  padding: 5px 8px 5px;
  margin: 0;
}

