/*
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/
*/

.custom #header {
	/* the background color */
	background: #DAFF90;
	/* border thickness style color */
	border: .3em solid #cc9966;
	/* distance from the nav menu */
	margin-top: 1em;
	/* distance from the content and sidebars */
	margin-bottom: 2em;
}

/* cancel border properties of nav bar */
.custom #tabs {
	border-color: none;
	border-style: none;
	border-width: none;
}
/* add a line to right of nav bar tabs */
.custom #tabs li {
	/* background of tabs is white */
	background: #FFFFFF;
	/* lines between tabs are black */
	border-color: #000000;
	/* solid border on right of tab */
	border-style: none solid none none;
	/* width of border of right tab */
	border-width: 0 1px 0 0;
}

/* change behavior of tabs when hovered over */
.custom #tabs a:hover { 
	/* color of the word when hovered over */
	color: #7AD5FF; 
	/* remove text underline when hovered over */
	text-decoration: none; 
	/* put a solid bar under word when hovered over */
	border-bottom-style: solid;
	/* color of solid bar under word when hovered over */
	border-bottom-color: #66FF66;
	/* width of solid bar when hovered over*/
	border-bottom-width: 0.2em;
}

.custom #tabs li a {
padding: 0.2em 0.3em;
margin:0.4em 0.5em;
}

.custom #tabs a {
border-bottom:0.2em solid #FFFFFF;
}

/* No uppercase for nav tab words */
.custom #tabs a { text-transform: none; }

#myrss {}
#rss_sub_graphic {}
#rss_sub_text {}
#chicklets_ftw {}

.custom div.nav_container form.search_form {
    float:right; /*Moves search box to the right*/
    margin-top: -2.5em; /*If you want search box to sit on the same gray line the nav sits on, replace this property with margin-top: -2.5em;*/
}
.custom div.nav_container #s {
-moz-border-radius: 10px;   
    font-size: 1.3em;
    padding: 0.308em;
    width: 15.385em;
    background: #cc9966;
}

#myrss {
border: 2px solid #7F7F7F;
background: #DAFF90;
-moz-border-radius: 10px;	/* the higher the number, the more rounded the box will be. this rounds all corners in Mozilla based browsers */
padding: 0.1em;	/* you may not need this, but this adds space inside the box so the content in it does not touch the border */
}
#rss_sub_graphic { padding: 1px 0 0 1px; }
#chicklets_ftw { padding: 5px 0 0 30px; }

.custom #myrss {
margin-bottom: 1em;
}

#mytwitter {}
#twitter_sub_graphic {}
#twitter_sub_text {}
#chicklets_ftw1 {}

#mytwitter {
border: 2px solid #7F7F7F;
background: #DAFF90;
-moz-border-radius: 10px;	/* the higher the number, the more rounded the box will be. this rounds all corners in Mozilla based browsers */
padding: 0.5em;	/* you may not need this, but this adds space inside the box so the content in it does not touch the border */
}
#twitter_sub_graphic { padding: 1px 0 0 1px; }
#chicklets_ftw1 { padding: 10px 0 0 30px; }
