/*
--------------------
Simple PHP Blog CSS Styles
--------------------

Name: Classic Theme
Author: Alexander Palmo

Description:
This the is the css theme for the Classic theme.
You can use this as a template for your own themes.

Also refer to user_style.php...
*/

/******************
 * jodieharsh.com *
 ******************/

/* Centered layout - always show vertical scrollbar in Mozilla/Firefox */
html { height: 101%; }

body {
	margin: 0;
	padding: 10px 0 0 0;
	text-align: center;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 10pt;
	color: white;
	background: black;
}

#all {
	position: relative;
	width: 760px;
	margin: 0 auto;
	text-align: left;
}

/* Head
   ---- */

#head {}

h1 {
	overflow: hidden;
	width: 370px; height: 165px;
	margin: 0;
	padding: 0;
	background: url(../../../images/logo.jpg) no-repeat top left;
}

h1 a:link, h1 a:visited, h1 a:hover {
	display: block;
	overflow: hidden;
	width: 370px;
	height: 165px;	
}

/* Hide text */
h1 a div { padding-top: 165px; }

#subtitle {
	overflow: hidden;
	height: 29px;
	background: url(../../../images/logo_subtitle.gif) no-repeat top left;
}

/* Hide text */
#subtitle div { padding-top: 29px; }

#menu {
	width: 100%;
	height: 25px;
	overflow: hidden;
	margin: 12px 0 5px 0;
	padding: 0;
}

#menu h2 {
	float: left;
	overflow: hidden;
	height: 25px;
	margin: 0;
	padding: 0;
	background-repeat: no-repeat;
	background-position: center left;
}

#menu a:link, #menu a:visited {
	display: block;
	float: left;
	overflow: hidden;
	height: 25px;		
	background-repeat: no-repeat;
	background-position: top left;
}

h2#about, a#about {width: 87px; background-image: url(../../../images/menu_about.gif);}
h2#gallery, a#gallery {width: 119px; background-image: url(../../../images/menu_gallery.gif);}
h2#video, a#video {width: 85px; background-image: url(../../../images/menu_video.gif);}
h2#shop, a#shop {width: 89px; background-image: url(../../../images/menu_shop.gif);}
h2#music, a#music {width: 91px; background-image: url(../../../images/menu_music.gif);}
h2#press, a#press {width: 91px; background-image: url(../../../images/menu_press.gif);}
h2#blog, a#blog {width: 81px; background-image: url(../../../images/menu_blog.gif);}
h2#contact, a#contact {width: 117px; background-image: url(../../../images/menu_contact.gif);}

#menu a:hover {
	background-position: center left;
}

#menu a:active {
	background-position: bottom left;
}

/* Hiding text with padding-top only works in IE 6
   when background-position is top left, so we don't display (also for screen readers) */
h2 div, #menu a div { display: none; }

/* Sheet
   ----- */

#sheet {
	background: url(../../../images/theme_2.jpg) repeat-y top center;
}

/* Foot
   ---- */

#foot {
	padding: 8px 0;
	color: #444444;
}

#foot div.left { float: left; }

#foot div.right { float: right; }

#foot a, #foot a:visited { font-weight: normal; color: #444444; }
#foot a:hover { color: #FF63AA; }
#foot a:active { color: #D3FFBF; }

/* Misc
   ---- */

div.clear {
	clear: both;
	height: 0;
	overflow: hidden;
}

/***************
 * Simple Blog *
 ***************/

/* General */

body
{
	color: #666633; /* txt_color */
	font-size: 12px; /* jodieharsh.com: 11px */
	margin: 0px;
	padding: 10px 0px 0px 0px; /* jodieharsh.com: 0px */
	text-align: left;
	background-color: #CCCC99; /* bg_color */
	
	/* Standard. Readable */
	font-family: Arial, Helvetica, Sans-Serif;
	/* font-family:  'Lucida Grande', Geneva, sans-serif; */
	/* font-family: Tahoma, Geneva, sans-serif; */
	/* font-family: Geneva, Verdana, sans-serif; */
	
	/* Nice. Classic Looking */
	/* font-family: 'Times New Roman', Times, serif; */
	/* font-family: Georgia, serif; */
	/* font-family: Book Antiqua, Palatino, serif; */
	
	/* Modern. Kind of Funky */
	/* font-family: 'Gill Sans', 'Trebuchet MS', Helvetica, sans-serif; */
	
	/* Monospace */
	/* font-family: Lucida Console, Monaco, monospace; */
}

/* Typeography */

p
{
	margin: 8px 0px 8px 0px; 
}

h1, h2, h3, h4, h5, h6
{
	font-family: Arial, Helvetica, sans-serif; /* 'Trebuchet MS', 'Gill Sans', */
	font-weight: bold;
	color: #666633; /* headline_txt_color */
    text-shadow: #bbb 2px 2px 1px;
	
	margin: 2px 0px 2px 0px;
}

h1
{
	margin: 0px; /* jodieharsh.com */
	font-size: 20px;
}

h2
{
	font-size: 18px;
}

h3
{
	font-size: 16px;
}

h4
{
	font-size: 14px;
}

h5
{
	font-size: 12px;
}

h6
{
	font-size: 10px;
}

/* NEW */
code, pre {
	font-family: 'Courier New', Courier, Fixed;
}

/* NEW */
pre {
	overflow: auto;
	width: 512px;
	border: 1px dotted #D9D9D9; /* inner_border_color */
	padding: 5px
}

/* NEW */
blockquote {
	color: #777;
	margin: 15px 30px 0 10px;
	padding-left: 20px;
	border-left: 5px solid #ddd
}

/* Links */

a:link, a:visited
{
	font-weight: bold;
	text-decoration: none;
	color: #993333; /* link_reg_color */
}

a:hover
{
	text-decoration: underline;
	color: #FF3333; /* link_hi_color */
}

a:active
{
	color: #3333FF; /* link_down_color */
}

/* Images */

img
{
	border: 0;
}

#img_float_left
{
	/* Used in the [img] tag when float=left */
	float: left;
	margin: 2px 8px 4px 2px;
}

#img_float_right
{
	/* Used in the [img] tag when float=right */
	float: right;
	margin: 2px 2px 4px 8px;
}

/* Elements */

hr	
{
	color: #D9D9D9; /* inner_border_color */
	background-color: #D9D9D9; /* inner_border_color */
	height: 1px;
	border: 0px;
	margin: 8px 0px 8px 0px; 
}

/* Forms */

/* NEW */
form {
	font-size: 11px;
	margin: 0px;
	padding: 0px
}
	
input, select, option, textarea
{
	font-size: 11px;
	text-align: left;
}

/* Theme Specific */

#header_image
{
	border-color: #4D4D45; /* border_color */
	border-width: 0px 0px 1px 0px;
	border-style: solid;
}

#header
{
	font-family: Arial, Helvetica, sans-serif; /* 'Trebuchet MS', 'Gill Sans', */
	color: #FFFFFF; /* header_txt_color */
	margin: 0px;
	padding: 4px 12px 4px 12px;
	border-color: #4D4D45; /* border_color */
	border-width: 0px 0px 1px 0px;
	border-style: solid;
	background-color: #999966; /* header_bg_color */
	font-size: 14px;
	font-weight: bold;
}

#maincontent
{
	margin: 0;
	padding: 20px;
}

#maincontent .blog_subject
{
	font-family: Arial, Helvetica, sans-serif; /* 'Trebuchet MS', 'Gill Sans', */
	color: #666633; /* headline_txt_color */
	font-size: 16px; /* jodieharsh.com: 14px */
	font-weight: bold;
	margin: 0px;
}

#maincontent .blog_byline
{
	color: #999999; /* date_txt_color */
	font-size: 9px;
	margin-bottom: 10px;
}

div #toggleSidebarAvatar, #toggleSidebarLinks, #toggleSidebarCalendar, #toggleSidebarArchives, #toggleSidebarCategories , #toggleSidebarSearch, #toggleSidebarMenu, #toggleSidebarPreferences, #toggleSidebarRecentComments, #toggleSidebarRecentEntries, #toggleSidebarRecentTrackbacks
{
	display: block;
}

#sidebar
{
	padding: 10px;
}

#sidebar .menu_title
{
	font-family: Arial, Helvetica, sans-serif; /* 'Trebuchet MS', 'Gill Sans', */
	font-weight: bold;
}

#sidebar .menu_title a
{
	text-decoration: none;
	color: inherit;
}

#sidebar .menu_title:hover
{
}

#sidebar .menu_body 
{
	padding: 10px;
/*	border-color: #999;
	border-width: 1px;
	border-style: dashed; */
}

#sidebar .divider {
	margin: 8px 0px 8px 0px;
}

#sidebar .calendar
{
	font-size: 10px;
}

#sidebar .calendar a
{
	font-weight: bold;
	text-decoration: none;
}

#sidebar .calendar td
{
	padding: 2px;
}

/* NEW */
#archive_tree_menu ul	
{
	list-style: none inside;
	padding: 0px 0px 0px 10px;
	margin: 0px;
}

/* NEW */
#archive_tree_menu li	
{
	margin: 0px;
	padding: 0px;
	/* border: 1px #F0F dashed; */
}

#footer
{
	border: 0;
	border-top: 1px solid #4D4D45; /* border_color */
	color: #666666; /* footer_txt_color */
	background: #EEEEEE; /* footer_bg_color */
	padding: 10px;
	text-align: left;
	clear: both;
}

.divider { margin: 20px 0px 15px 0px; }
