/*
File:			custom.css
Description:	Custom styles for Thesis

Website: ELDAR MANOR


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/
*/

#page, #container, #content_box {
	float: inherit;
	direction: inherit;
}
#page {
	border-left: 1px solid #999;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
}

#header, #footer {
padding-left:0.7em;
padding-right:0.7em;
}

.post_box, .teasers_box, .full_width #content_box .page {
margin:0 2.3em 0 0.8em;
}

/* TYPOGRAPHY */

#footer a:hover, .headline_meta a:hover {
	border-bottom:1px solid #111;
	text-decoration: none;
}

.home h2 {
	visibility: hidden;
	margin-top: -1.5em;
}

/* HEADER */

#header { 
	border-width: 0 0 0 0; 
	margin-bottom: 1em;
}

#header #logo {
	font-size: 3em;
}
#logo {
font-weight:normal;
}

/* MENU */
	
.menu {
	border-color: #DDDDDD;
	border-style: solid;
	border-width: 0 0 0.3em 0;
	height: 30px;
	padding-bottom: 3px;
}
.menu li {
	margin-right: 5px;
}

/* CONTENT */

#content_box {
/*background: url("../lib/images/dot-ddd.gif") repeat-y scroll 21.4em 0 transparent;*/
}

#content {
	width: 53.2em;
}

#content, #sidebars {
	float: left;
}

.breadcrumb {
	margin-top: 0.5em;
	margin-left:0.7em;
	font-size: 1.2em;
}
.format_text p {
	margin-bottom:0.5em;
}

#archive_info {
	padding-top:2.1em;
}

.format_text ul {
list-style: disc outside;
}

/* COMMENT */

p a, #commentform p a {
	text-decoration: none;
}

p a:hover, #commentform p a:hover {
	text-decoration: underline;
}

.comments_closed p {
  display: none;
}

/* FOOTER */

#footer  {
	margin-top:2.1em;
	padding-top:1em;
	padding-bottom: 0em;
	border-color: #DDDDDD;
	border-style: solid;
	border-width: 0.3em 0 0 0;
}

#footer p {
	text-align:right;
	font-size: 1.1em;
}

/* MULTIMEDIA BOX */

#multimedia_box  {
margin-bottom: 2.2em;
margin-top: 3.7em;
}

#image_box img, #custom_box img {
	margin:0 auto;
	border-color:#BBBBBB;
	border-style:solid;
	border-width:0.1em;
	display:block;
	padding:0;
}

/* CONTACT */

.contactForm {
	margin-top: 1em;
}
.contactForm label, p .label {
	float: left;
	width: 8em;
}
.contactFormSend {
	margin-left: 8em;
	cursor:pointer;
}
.contactFormSend input {
	cursor:pointer;
}

span.wpcf7-not-valid-tip  {
	background:transparent !important;
	border:0 none !important;
	font-size:2em !important;
	left:-0.6em !important;
	padding:2px !important;
	position:absolute !important;
	top:0 !important;
	width:280px !important;
	z-index:100 !important;
	color: #2361A1 !important;
}

div.wpcf7-response-output, div.wpcf7-display-none, div.wpcf7-mail-sent-ok {
	border:0px solid #2361A1 !important;
	font-size: 1em !important;
	color: #2361A1 !important;
}

/* CUSTOM */

.custom .comments_closed p {display: none ;}

#wpfbg_lic {
	-moz-border-radius-topright: 0;
	-moz-border-radius-topleft: 0;
	-webkit-border-top-left-radius: 0;
	-webkit-border-top-right-radius: 0;	
	direction: ltr;
	margin: -12px auto 0;
	display: block;
	width: 738px;
	position: static;
	padding-left: 31px; 
	background: url(http://www.flickr.com/favicon.ico) white 8px 17px no-repeat;
}
#wpfbg_lic a {
	color: #2361A1;
}

#wpfbg_lic a:hover {
	text-decoration: underline;
}

#wpfbg_lic strong {
	color: transparent;
}