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

/* @group Kristarella header styles, modified and expanded */

.custom #header_area{
	display:none;
	}
.custom #nav_area {
	background: #333;
	padding:0.5em 0;
	border: none;
	color: gray;
	}
.custom #nav_area ul {
	border-bottom:none;
	border-left:none;
	}
.custom #nav_area ul li {
	border-width:0;
	margin-bottom:0;
	padding-bottom:0;
	background:none;
	}
.custom #title_area {
	border: none;
	height: 120px;
	background: black url(images/buy-kendama-masthead.jpg) no-repeat scroll left;
}
.custom #header {
	border-bottom:none;
	padding-top:0;
	padding-bottom:0;
	}
.custom #header #logo {
	display: none;
}
.custom #header #tagline {
	display:none;
	background-color: gray;
	}
.custom #nav_area ul li.current_page_item a {
	color: silver;
	}

/* @end */

/* @group Directory entry styles */

#suppliers {
	font: 91%/1.3em "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

#region_nav {
	padding: 0;
	margin: 0;
	text-align: center;
}

#suppliers #region_nav a {
	text-decoration: none;
	font-size: 82%;
	margin: 0;
	border: 1px solid gray;
	padding: 0.2em;
}

#ratings {
	color: gray;
	font-size: 86%;
	text-align: center;
	margin-top: 8px;
}

#suppliers .region h4 {
	text-align: center;
	color: maroon;
	font: 200% Georgia, "Times New Roman", Times, serif;
	margin-bottom: 1em;
	margin-top: 1.5em;
}

.region .supplier {
	border: 1px solid black;
	margin-bottom: 24px;
}

#region_nav a.japan_shops {
	background-color: #fcf5ec;
	padding: 0.2em;
}

#region_nav a.japan {
	background-color: #fcf7e4;
}

#region_nav a.japan_english {
	background-color: #f6fcf2;
}

#region_nav a.united_states {
	background-color: #f2f5fc;
}

#region_nav a.foreign {
	background-color: #f9f2fc;
}

.region.japan_shops .supplier {
	background-color: #fcf5ec;
}

.region.japan .supplier {
	background-color: #fcf7e4;
}

.region.japan_english .supplier {
	background-color: #f6fcf2;
}

.region.united_states .supplier {
	background-color: #f2f5fc;
}

.region.foreign .supplier {
	background-color: #f9f2fc;
}

#suppliers h5 {
	background-color: black;
	padding-left: 12px;
	color: #fa7822;
	font-size: 125%;
	padding-top: 0.3em;
	padding-bottom: 0.6em;
	margin-bottom: 12px;
}

#suppliers h5 a {
	color: #fa7822;
	text-decoration: none;
}

#suppliers h6 {
	background-color: #ddd;
	padding-left: 12px;
	color: #fff;
	margin-bottom: 12px;
	padding-top: 0.1em;
	padding-bottom: 0.2em;
	margin-top: 16px;
	font-size: 100%;
	clear: both;
	text-shadow: gray 1px 1px 3px;
}

#suppliers p {
	margin-left: 24px;
	margin-right: 20px;
}

#suppliers ul {
	margin-left: 38px;
	margin-right: 20px;
}



/* @end */

/* @group Sidebar styles */

#multimedia_box {
	margin-top: 12px;
}

#right_sidebar {
	margin-left: 24px;
	margin-right: 12px;
	color: #4d4d4d;
	line-height: 1.35em;
	font-size: 120%;
}

#right_sidebar h4 {
	font-weight: bold;
	font-size: 120%;
	margin-top: 18px;
	margin-bottom: 6px;
	color: #925e15;
}

#right_sidebar p {
	
}

#right_sidebar dt {
	margin-top: 8px;
	font-weight: bold;
	font-size: 100%;
}

#right_sidebar dd {
	font-size: 100%;
	margin-left: 12px;
}

#right_sidebar ul {
	margin-left: 24px;
}

#right_sidebar ul li {
	list-style-type: square;
}

#right_sidebar ol {
	margin-left: 24px;
}

#right_sidebar ol li {
	list-style-type: decimal;
}

#right_sidebar img.image_right {
	float: right;
	clear: right;
	margin-top: 3px;
	margin-left: 3px;
}



/* @end */


