

/*

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/

*/
body { padding: 0.3em 0 0.3em 0; background-attachment: fixed; background-image:  url(images/body.jpg); background-position: center top; background-repeat: no-repeat; }

.custom #container { -moz-border-radius: 1em; -webkit-border-radius: 1em; margin: 0.5em auto; }

.custom	#page { -moz-border-radius: 1em; -webkit-border-radius: 1em; }


/*---:[ nav menu styles ]:---*/
.custom .menu {
	height: 3em;
	margin-top: 0em;
	background-image: url(images/nav.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	list-style: none;
	border: none;
	font-weight: bold;
}
.custom .menu li { -moz-border-radius: 1em; -webkit-border-radius: 1em; float: left; border: none;	margin: 2px; }
.custom .menu .current_page_item, .custom .menu .current-cat { -moz-border-radius: 1em; -webkit-border-radius: padding-bottom: 0em; border: none; }
.custom .menu a { -moz-border-radius: 1em; -webkit-border-radius: 1em; display: block; line-height: 1em; text-transform: none; letter-spacing: 2px; text-decoration: none; }
.custom .menu a:hover { -moz-border-radius: 1em; -webkit-border-radius: 1em; border-top-right-radius: 1em; text-decoration: none; }
.custom .menu .current_page_item a, .custom .menu .current-cat a { border: none; cursor: text; }
.custom .menu .current_page_item a:hover, .custom .menu .current-cat a:hover { text-decoration: none; }

/*---:[ Header Area ]:---*/
.custom #header { -webkit-border-top-left-radius: 1em; -khtml-border-radius-topleft: 1em; -moz-border-radius-topleft: 1em; border-top-left-radius: 1em; -webkit-border-top-right-radius: 1em; -khtml-border-radius-topright: 1em; -moz-border-radius-topright: 1em;	border-top-right-radius: 1em; height:14em;	padding: 0 0 0 0; border: none;	clear: both; background:url(images/top.jpg) center left no-repeat; }
.custom #header #logo {	display:none; width:570.5em; height:14em; }
.custom #header #tagline { display:none; }
.custom #header #right { float:right; padding-right: 0; height:14em; width: 44em; background: transparent; }
.custom #header #right-alt { float:right; padding-top: 4em; padding-right: 4em; height: 8em; width:38em; background: transparent; }
.custom #header #right .upperleft {	float:right; padding-right: 2.8em; padding-top: 2em; height: 4em; }
.custom #header #right .lowerleft {	float:right; padding-right: 3em; padding-top: 0; height: 10em; }
.custom #header #right .farright { float:right; padding-right: 1em; padding-top: 0.2em;	}

/*---:[ Search box in header ]:---*/
#searchform {padding:5px 5px 0 0;}
.searchfield { -moz-border-radius: 10px;	-webkit-border-radius: 10px;	opacity: 0.7; width:16.8em; height: 1.5em; background: #eee;	color:#111;	border:2px solid #111; font-size: 11px;	padding: 2px 1px 1px 5px; }
.searchfield:hover, .searchfield:focus { -moz-border-radius: 10px; -webkit-border-radius: 10px; background: #fff; border:2px solid #111; text-decoration:none; }

/*---:[ Entire Content Style ]:---*/
.custom #content_box {background-image: url(images/bottom.jpg); background-repeat: no-repeat; background-position: left top; padding-top: 0px; margin: 0 auto; }

/*---:[ feature box styles ]:---*/
.custom #feature_box {
	background: transparent; width: 98.3%; margin: auto auto auto -1em;
}

/*Top Tabbed Box*/
.domtab { -moz-border-radius: 1em; -webkit-border-radius: 1em; font-size:12px; padding-top: 1.2em; padding-right: 0.5em; padding-bottom: 0.5em; padding-left: 0.5em; background-image: url(images/main.png); background-repeat: repeat; margin: auto;
}
.domtabs a {text-decoration: none;}
.domtabs a:hover {text-decoration: none;}
.domtabs {margin-bottom:7px; padding-bottom: 2px;}
.domtabs li { -moz-border-radius: 1em; -webkit-border-radius: 1em; display: inline;list-style: none;padding-right: 0px; color: #fff; }
.domtabs li a {	-moz-border-radius: 1em; -webkit-border-radius: 1em; background: #ddd; color: #000; padding: 0.5em 6px; border: 0px solid #fff; }
.domtabs li a:hover { -moz-border-radius: 1em; -webkit-border-radius: 1em; background: #eee; color: #000;}
.domtab li a:active, .domtab li.ui-tabs-selected a { -moz-border-radius: 1em; -webkit-border-radius: 1em; background: #ccc; color: #000;}
.tabdiv { -moz-border-radius: 1em; -webkit-border-radius: 1em; padding: 0.5em; background-image: url(images/tabs.png); color: #000; background-repeat: repeat; margin: auto; }
.tabdiv li { list-style: none;padding:0.333em;line-height:1.5em; display:block; border-bottom:1px #999 solid; }
.tabdiv li:hover { display:block; }
.ui-tabs-panel { }
.ui-tabs-selected {	color: #bbb; background-color: #222;}
.ui-tabs-hide {	 display: none;}

.custom	.post_box { -moz-border-radius: 1em; -webkit-border-radius: 1em; padding: 1em; width: 95%; margin-top: 1em; margin-left: 1em; background-image: url(images/main.png); background-repeat: repeat;
}

.custom	.teasers_box { -moz-border-radius: 1em; -webkit-border-radius: 1em; padding: 1em; width: 95%; margin-left: 1em; margin-top: 1em; margin-bottom: 1em; background-image: url(images/main.png); background-repeat: repeat;  }


/*---:[ sidebar styles ]:---*/
/*Before Sidebars Styling*/
.custom #optin { -webkit-border-top-left-radius: 1em; -khtml-border-radius-topleft: 1em; -moz-border-radius-topleft: 1em; border-top-left-radius: 1em; -webkit-border-top-right-radius: 1em; -khtml-border-radius-topright: 1em; -moz-border-radius-topright: 1em;	border-top-right-radius: 1em; text-align: center; background-image: url(images/sb.png); background-repeat: repeat; margin: 1.2em 1em 0 1em; padding: 0.2em 1em; border: none; }
.custom #optin h3 {	font-weight: normal; color: #fff; font-size: 1.8em; }
.custom #optin h3 a {color: #ffff00;}
.custom #optin h3 a:hover {color: #fff;}
.custom #optin p { font-size: 12px; color: #eee;}
.custom #optin p a {color: #ffff00;} 
.custom #optin p a:hover {color: #fff;}
.custom #optin h2 {	font-weight: normal; color: #fff; font-size: 1.3em; text-decoration: underline; } 
.custom #optin li {padding-top: 1em; list-style: none; color: #eee;}
.custom #optin li a {color: #ffff00; text-decoration: none; font-size: 1.2em; }
.custom #optin li a:hover {color: #ffff00; text-decoration: underline; font-size: 1.2em;}
.custom #optin .avatar_container {  margin-left: 0em; margin-top: 1em; margin-bottom: 1em; }
.custom #optin img { border: 0px;}


.custom #multimedia_box { -webkit-border-bottom-left-radius: 1em; -khtml-border-radius-bottomleft: 1em; -moz-border-radius-bottomleft: 1em; border-bottom-left-radius: 1em; -webkit-border-bottom-right-radius: 1em; -khtml-border-radius-bottomright: 1em; -moz-border-radius-bottomright: 1em; background: transparent; background-image: url(images/sb.png); background-repeat: repeat; border-bottom-right-radius: 1em; margin: 0 1em 1em 1em; }
.custom #multimedia_box h1 {color: #0B8FCF; border-bottom: 1px solid #dd0000; margin-bottom: 12px;}
.custom #multimedia_box h1 a {color: #000179;}
.custom #multimedia_box h1 a:hover {color: #fff;}
.custom #multimedia_box h3 {font-weight: normal; color: #111; font-size: 1.8em; }
.custom #multimedia_box h3 a {color: #000179;}
.custom #multimedia_box h3 a:hover {color: #fff;}
.custom #multimedia_box p {color: #111;}
.custom #multimedia_box p a {color: #000179;}
.custom #multimedia_box p a:hover {color: #fff;}

/*---:[ Side Tabbed Box]:---*/
#other{
	float: left;
	width:91%;
	margin-left: 0.8em;
	margin-bottom: 1em;
	}

.custom	#sidebars { margin-top: 1em 0 0 1em; }
.custom	#sidebar_1 { width: 48.5%; }
.custom #sidebar_2 { width: 48.5%;  }

li.widget {	-moz-border-radius: 1em; -webkit-border-radius: 1em; color: #eee; padding: 0.5em 0.5em 0.1em 0.5em; background-image: url(images/sb.png); background-repeat: repeat; width: 100%; margin-bottom: 0.7em; list-style: none; }

#homecontent-bottom { float: left; width: 100%; background: transparent; color: #eee; padding-top: 0.5em; margin: 1em 1em 1em 0; border-top: 0.2em solid #ccc;}

/* The 3 columns on the homepage */
#bottomcol1 { width:34%; padding-left:0.6em; padding-right: 1em; text-align:justify; float:left; }
#bottomcol1 li {list-style: none; text-align:justify; }
#bottomcol2 { width:32%; padding-left:0.5em; padding-right:1em; text-align:justify; float:left; }
#bottomcol2 li {list-style:none}
	
#bottomcol3 { width:28%; padding-left:0.5em; padding-right:0.5em; text-align:justify; float:left; }
#bottomcol3 li {list-style:none}
		
/*---:[ footer styles ]:---*/
.custom #footer { -webkit-border-bottom-left-radius: 1em; -khtml-border-radius-bottomleft: 1em; -moz-border-radius-bottomleft: 1em;	border-bottom-left-radius: 1em; -webkit-border-bottom-right-radius: 1em; -khtml-border-radius-bottomright: 1em;-moz-border-radius-bottomright: 1em; border-bottom-right-radius: 1em; min-height: 8em; border-top: 0.2em solid #ccc; margin-top: 1em; text-align: left; background-color: #ddd;	background-image: url(images/black-palms-footer.png);	background-repeat: no-repeat; background-position: right bottom;	}
.custom #footer p { color: #222; padding-top: 0.5em; font-size: 1.1em; line-height: 1.4em; }
.custom #footer a { text-decoration: none; color: #000179; border: none; }
.custom #footer a:hover { text-decoration: none; color: #000; }

/*---:[ headlines and bylines ]:---*/
.custom h1, h2, h4, h6 { font-weight: normal; }
.custom h3, h5 { font-weight: bold; }
.custom h5, h6 { text-transform: uppercase; letter-spacing: 1px;  }
.custom .format_text h2.top, .format_text h3.top { list-style: none; margin-top: 0 !important; }
.custom .sidebar h3 { font-variant: small-caps; letter-spacing: 2px; color: #eee }
.custom 	h2 a { color: #000179; text-decoration: none; }
.custom 	h2 a:hover { color: #000; }

/*---:[ global elements ]:---*/
.custom a { text-decoration: none; }
.custom a:hover { text-decoration: none; }
.custom a.post_image_link { outline: none; }
.custom a img { border: none; }
.custom blockquote { background-color: #111;	border: none; color: #eee; padding-top: 1em; padding-bottom: 0.5em; padding-right: 0.5em; text-align: center; font: bold 1.1em Georgia, "Times New Roman", Times, serif; -moz-border-radius: 1em; -webkit-border-radius: 1em; margin-top: auto; margin-right: auto; margin-bottom: 10px; margin-left: auto;
}
.custom blockquote a { color: #1e8dee; }
.custom blockquote a:hover { color: #fff; }

/*---:[ previous and next links on index, archive, and search pages ]:---*/
.custom .prev_next { padding-top: 1em; padding-bottom: 1em; }
.custom .prev_next p { color: #333; font-size: 1em; line-height: 2em; }
.custom .prev_next p a { color: #111; }
.custom .prev_next p a:hover { color: #000; }
.custom .post_nav .previous { margin-bottom: 0.5em; }
.custom .post_nav a { font-size: 1.2em; line-height: 1.667em; }

/*---:[ headline meta data (includes bylines) ]:---*/
.headline_meta { font-style: italic; color: #666; }
.headline_meta span, .headline_meta abbr { font-style: normal; text-transform: uppercase; letter-spacing: 1px; }
.headline_meta a { color: #888; border: none; }
.headline_meta a:hover { color: #999 ; }
.headline_area { margin-bottom: 1.4em; }
.headline_area h1, .headline_area h2 { margin-bottom: 0.8em;}

.socialmedia {-moz-border-radius: 10px; -webkit-border-radius: 10px; margin-top: 5px;	margin-right: 0; margin-bottom: 0px; margin-left: 10px; overflow: hidden; padding: 10px; text-align: center;	background: #111; font-weight: bold; }
.socialmedia p { color: #999; font-size: 1.3em;}
.socialmedia a { color: #ccc; }
.socialmedia a:hover{ color: #fff; }

.postauthor { -moz-border-radius: 10px; -webkit-border-radius: 10px; overflow: hidden; padding: 10px; background: #111; margin-top: 2px; margin-right: 0; margin-bottom: 0px; margin-left: 10px; }
.postauthor img { border: 5px solid #fff; float: left; margin-right: 1.5em; }
.postauthor h4 { color: #999; font-size: 2em; margin-bottom: 5px; }
.postauthor h4 a { color: #ccc; margin-bottom: 5px; }
.postauthor h4 a:hover { color: #fff; margin-bottom: 5px; }
.postauthor p { color: #999; font-size: 13px; margin-bottom: 12px; }
.postauthor p a { color: #ccc; margin-bottom: 12px; }
.postauthor p a:hover { color: #fff; margin-bottom: 12px; }

.custom .format_text input, #commentform input, #commentform textarea { width: 70%; padding: 0.214em; border-width: 0.071em 0.071em 0.071em 0.071em; }

/*---:[ post content area ]:---*/
.format_text { font-size: 1.3em; line-height: 1.5em; }
.format_text p { margin-bottom: 1em; }
.custom #disqus_thread { color: #000; padding-left: 10px; padding-right: 10px; }
.custom #disqus_thread a { text-decoration: none; color: #0B8FCF; padding-left: 10px; padding-right: 10px; }
.custom #disqus_thread a:hover { text-decoration: underline; color: #fff; padding-left: 10px; padding-right: 10px; }
.custom .dsq-brlink a { color: #000179; margin-left: 10px; }
.custom .dsq-brlink a:hover { color: #000; margin-left: 10px; }

.custom li.widget h3 { color: #fff; border-bottom: 1px solid #999; margin-bottom: 5px; font-weight: bold; }
.custom li.widget h3 a { color: #ddd; border-bottom: 0px margin-bottom: 5px; font-weight: bold; }
.custom li.widget h3 a:hover{ color: #fff; border-bottom: 0px; margin-bottom: 5px; font-weight: bold; }
.custom li.widget a { color: #ccc; text-decoration: none; }
.custom li.widget a:hover { color: #fff; text-decoration: none; }
.custom li.centered { text-align: center; }
.custom li.widget ul { list-style: none; }
.custom li.widget ul li .num_comments { color: #ccc; }

.custom .teaser .teaser_author a, .teaser a.teaser_comments, .teaser a.teaser_category, .teaser .edit_post a { text-transform: uppercase; letter-spacing: 1px; color: #999; border: none; }

.post_tags { color: #222; }
.post_tags a { text-decoration: none; }
.post_tags a:hover { text-decoration: underline; }

/*---:[ comment form styles ]:---*/
#respond_intro p { color: #222; }
#respond_intro p a { font-weight: bold; }
#respond_intro p a:hover { text-decoration: underline; }
#cancel-comment-reply-link { text-transform: uppercase; letter-spacing: 1px; color: #333; background: #666; border-style: solid; border-color: #333; border-top-color: #fa5a5a; border-left-color: #000; float: right; }
.login_alert { background: #f5f5f5; border: 1px solid #000; }
.login_alert p { font-weight: bold; }
.login_alert p a:hover { text-decoration: underline; }
.comment_moderated { font-weight: bold; }

#commentform { width: 100%; border-top: 1px solid #111; }
#commentform p { margin-bottom: 1em; }
#commentform p a { color: #333; text-decoration: underline; }
#commentform p a:hover { color: #000; text-decoration: none; }
#commentform p .required { color: #ff0000; }
#commentform span.allowed { display: block; color: #807e70; background: #f9f7e4; border-style: solid; border-color: #000; }
#commentform span.allowed span { display: block; }

/* Support for the highly-recommended Subscribe to Comments Plugin */
#commentform p.subscribe-to-comments label { font-size: 1em; }


#sidebarwide { width: 90.5%; border: 0; float: right; margin-right: 2.3em;}

/*---:[ form inputs ]:---*/
.custom input, textarea { font-size: 1em; color: #444; background: #eee; border: 1px solid #aaa; border-right-color: #ddd; border-bottom-color: #ddd; }
.custom input:focus, textarea:focus { background: #fff; border-color: #777; border-right-color: #ccc; border-bottom-color: #ccc; }
.custom .sidebar .text_input { width: 90%; }
.custom input.form_submit { font-weight: bold; color: #111; background: #888888; border: 3px double #999; border-top-color: #ccc; border-left-color: #ccc; cursor: pointer; width: auto !important; overflow: visible; }
.custom #commentform input.form_submit { border-width: 3px; }
.custom input.form_submit:hover { color: #090; }

.powerpress_player { text-align: center; }

.powerpress_links {
 text-align: center;
 font-size: 80%;
}

/*Left Side Social Media Icons*/
.custom #feedback { opacity: 0.7; background: transparent; width: 3.2em; position: fixed; top: 35%; left: 0%; }

.custom #feedback a { display: block; text-indent: -9999px; height: 3.2em;}

.custom #feedback #twitter { background: url('images/twittericon.png') no-repeat 0 -3.2em; }
.custom #feedback #twitter:hover { background-position: 0 0; }

.custom #feedback #facebook { background: url('images/facebookicon.png') no-repeat 0 -3.2em; }
.custom #feedback #facebook:hover { background-position: 0 0; }

.custom #feedback #friendfeed { background: url('images/friendfeedicon.png') no-repeat 0 -3.2em; }
.custom #feedback #friendfeed:hover { background-position: 0 0; }

.custom #feedback #rss { background: url('images/rssicon.png') no-repeat 0 -3.2em; }
.custom #feedback #rss:hover { background-position: 0 0; }

.custom #feedback #youtube { background: url('images/youtubeicon.png') no-repeat 0 -3.2em; }
.custom #feedback #youtube:hover { background-position: 0 0; }

.custom #feedback #email { background: url('images/emailicon.png') no-repeat 0 -3.2em; }
.custom #feedback #email:hover { background-position: 0 0; }

.widget_wp_sidebarlogin, #sidebar-login {
	overflow: hidden;
}
.widget_wp_sidebarlogin .avatar_container, #sidebar-login .avatar_container {
	float:right;
}
.widget_wp_sidebarlogin .avatar_container img, #sidebar-login .avatar_container img {
	padding: 3px;
	border: 1px solid #fff;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	margin-right: 8px;
	margin-top: 5px;
}
.widget_wp_sidebarlogin #openid_field {
	background-image:url(../openid/f/openid.gif);
	background-position:3px 50%;
	background-repeat:no-repeat;
	padding-left:21px !important;
}
.widget_wp_sidebarlogin hr {
	display: block;
	clear: both; 
	border: 0; 
	border-top: 1px solid #999; 
	height: 1px;
}