/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/
#header {padding-top: 0; padding-bottom: 0; background-image: url(../images/logo.jpg); background-position: right; background-repeat:no-repeat; border-style: none; height: 125px; }
#page { background: #FFFFFF; border: none; margin-top: 20px; margin-bottom: 20px;}
/* #footer {background-image:url(../images/foot.jpg); background-position:center; background-repeat: no-repeat; border-width:1px 0 0;} */
#footer { border-width:1px 0 0;}

body { background: #ddd; }
h5 {text-transform: none; font-size: 12px; font-weight:normal;}


.custom #header #logo { display: none; }
.custom #header #tagline { display: none; } 

/* Sidebar custom */
.sidebar h3, .sidebar h3 a {
font-size:1.308em;
line-height:1.176em;
margin:1.765em 0 0.588em;
font-weight: bold;
color: #111;
text-transform:none;
font-variant: normal;
letter-spacing: normal;}
/* End Sidebar custom */

.custom blockquote { color: #000; padding: 5px; border: #077e44 solid 2px;}

.custom blockquote { background: #e6f0c1;}

.custom blockquote h3 { font-size: 1.2em; line-height: 1em; margin-bottom: 0.292em; margin-top: 0.2em;}

.custom ul.start{
    text-align: left;
    float: left;
    list-style: none;
    padding: 3px 10px 3px 10px;
    margin: 5px;
    border: 2px solid #077e44;
	background: #e6f0c1;
}

/* menu */ 
/* Remove the border from the far left. */
.custom ul.menu{border-left:0;}
/* Add the left border back in. If you change the color of the nav border in the WordPress admin panel, you will also have to manually change the left border color below. */
.custom .menu { border-style:none; margin-left: 245px; margin-top: -18px; position: absolut; list-style: none; padding: 0; height: 21px; text-transform: none; border-bottom: none;}
.custom .menu a {padding:none; border: none; border-color: none; font-size: 1.2em; font-weight: 600;}
.custom ul.menu li.tab-home a{ padding:  3px 5px 4px 5px; text-transform: none; color: #FFFFFF; }
.custom ul.menu li { float: left; padding: 0px 0px 0px 0px; margin-right: 5px; margin-bottom: 0px;} 
.custom ul.menu li a { background: #007e44; no-repeat right; padding:  3px 5px 4px 5px; text-transform: none; color: #FFFFFF; border-bottom: 2px solid #fff;} 
.custom ul.menu li a:hover { background: #90c251; color: #fff;} 
.custom ul.menu li.current a { background: #90c251; padding:  3px 5px 4px 5px; text-transform: none; color: #fff;}
.custom ul.menu li.current-cat a {} 

/* Lakar logo */
.custom ul#lakar { 
float: right;
list-style-image: none;
list-style-position: outside;
list-style-type: none;}


/* Top Nav bar */
.custom ul#topnav {
border-style: none;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
background:#ffffff none repeat scroll 0 0;
width: 100%;
text-transform: uppercase;
border-left: 1px #ddd solid;
}
.custom ul#topnav li { float: left; padding: 3px 10px 3px 10px; border: 1px #ddd solid; background: #efefef; }
.custom ul#topnav li a { font-size: 1em; color: #000000; background: #efefef; letter-spacing: 2px;}
.custom ul#topnav li a:hover { text-decoration: underline; } 

.topnav .current a, .topnav .current a:hover, .topnav .current-cat a, .topnav .current-cat a:hover {
background:none repeat scroll 0 0 #FFFFFF;
color:#111111 }
/* End Top Nav bar */
