/*  

Theme Name: WordPress Default

Theme URI: http://wordpress.org/

Description: The default WordPress theme based on the famous <a href="http://binarybonsai.com/kubrick/">Kubrick</a>.

Version: 1.6

Author: Michael Heilemann

Author URI: http://binarybonsai.com/



	Kubrick v1.5

	 http://binarybonsai.com/kubrick/



	This theme was designed and built by Michael Heilemann,

	whose blog you will find at http://binarybonsai.com/



	The CSS, XHTML and design is released under GPL:

	http://www.opensource.org/licenses/gpl-license.php



*/







/* Begin Typography & Colors */

body {

	font-size: 75%; /* Resets 1em to 10px */

	font-family: Georgia, "Times New Roman", Times, serif;

	background: #222222;

	color: #000;;

	text-align: center;

	}



#page {

	background-color: #ffffff;

	border: 1px solid #959596;

	text-align: left;

	}



#header {

	background: #222222 url('http://www.skolaiimages.com/newblogbanner/kubrickheader.jpg') no-repeat top center ;

        border-bottom: 1px solid #959596;   

    }



subh { font-size: 1.2em;

       font-weight: bold;

        }

    

#headerslideshow  { 

   z-index: 1; 

       margin: 0; 

       position: absolute; 

       width: 1000px; 

       height: 120px; 

} 



#headertext { 

   z-index: 2;

      position: relative; 

} 



#menu  {

    background: #222222 url('images/nav.gif') no-repeat bottom center ;

    height: 40px;

    font-family: 'Lucida Grande', Verdana, Sans-Serif;

    letter-spacing: 0.4em;

    font-size: 1.0em;

    text-align: center;

    font-color: #FDFDF7;

    }



a.menulink:link  {

    color: #FDFDF7;

}



a.menulink:visited  {

    color: #FDFDF7;

}



a.menulink:hover  {

    color: #AA0604;

}


/* This begins the navbar for the drop down menu */

#navbar  {
		/* background: #2f2f2f url(../../../buttons/nav.gif) no-repeat top center ; */

    background: #222222 url('images/nav.gif') no-repeat bottom center ;

           
    height: 40px;
}

#navbarimg 	{ 
	padding: 0;
	margin: 0; 
	list-style: none;
	width: 100%; 
	}
	
	/*
p7menubar is the root UL and p7menubar ul applies to all the sub-menu ULs.
We set padding and margin to zero to eliminate all indentation, turn bullets off,
and set a font-family different from the global font-family declared for the
body element above. This sets font for just the menu. Do not add a font-size here.
*/

#navbar, #navbar ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
}
/*
Root-Level Links.  Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. Font-size is set here and will apply to all menu levels.
Font color is set to light gray.
*/
#navbar a {
	display: block;
	text-decoration: none;
	padding: 10px 5px 5px 10px;
	font-size: 0.95em;
	color: #FDFDF7;
}
/*
Class assigned to those Root-Level links that have associated Sub-Menus.
The top and bottom padding assigned this element must be the same as
that assigned to the p7menubar a element. The right padding is increased
to accomodate the display of background image depicting a downward
pointing arrow.
*/
#navbar a.trigger {
	padding: 5px 16px 5px 10px;
	background-image: url(../../../images/p7PM_dark_south.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
/*
The Root-Level list items. Floating left allows
them to appear horizontally. Width is for IE5 Mac. The last rule in
this style sheet will set the width for this element to auto for all
other browsers - hiding it from IE5 Mac. The width is proportional.
As you add and edit root menu items, you will need to test this width
to ensure it is wide enough to accomodate all text.
*/	
#navbar li {
	float: left;
	width: 8em;
}
/*
Sets width for Sub-Menu box and the List Items inside - in proportional em units. 
This allows the sub-menu width to expand if users resize the text in their browsers.
*/
#navbar li ul, #navbar ul li  {
	font-size: 1.0em;
	width: 12em;
}
/*
The sub-menu links. We set color and turn off the right border, which
would otherwise be inherited from the root link rule. We set top and 
bottom padding less than the root items and increas the left padding
to indent the sub-menu links a small amount in from the root links.
*/
#navbar ul li a  {
	color: #565656;
	border-right: 0;
	padding: 3px 0px 3px 4px;
}
/*
Sub-Menu Unordered Lists describes each dropdown sub-menu grouping. 
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
Right and bottom borders are set to simulate a raised look.
A gradient background image is assigned.
*/
#navbar li ul {
	position: absolute;
	display: none;
	background-color: #FFFFFF;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	background-repeat: repeat-x;
}
/*
Changes the Text color and background color when the Root-Level
menu items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth 
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the menu operable even if JavaScript
is not enabled.
*/
#navbar li:hover a, #navbar a:focus,
#navbar a:active, #navbar li.p7hvr a {
	color: #b89f40;
	text-decoration: underline;
	background-color: transparent;
}
/*
Set the Sub-Menu UL to be visible when its associated
Root-Level link is moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
*/
#navbar li:hover ul, #navbar li.p7hvr ul {
	display: block;
	z-index: 100;
}
/*
Sets the Text color of the Sub-Level links when the Root-Level
menu items are moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
The color set should march the normal Sub-Level link color
in the rule: #p7menubar ul li a. The background color must be
transparent to allow the underlying gradient background on the UL
to show through.
*/
#navbar li:hover ul a, #navbar li.p7hvr ul a {
	color: #000000;
	background-color: transparent;
	border-bottom: 1px solid #000000;
	text-decoration: none;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#navbar ul a:hover {
	background-color: #000000!important;
	color: #FFFFFF!important;
}

/* The single backslash \ character inside this comment
causes IE5 Mac to ignore the following rule, which allows other
browsers to render top-level menu items to their natural width.
Do not edit this rule in any way. */
#navbar li {width: auto;}

.Form {

        color: #FDFDF7;

		font-weight: normal;

        font-family: "Trebuchet MS", Verdana, Geneva, Arial, sans-serif;

        font-size: 14px;

        padding-left: 30px;

}


/* class for blog link in nav bar */
.blog-link {

        color: #FDFDF7;

		font-weight: normal;

        font-family: "Trebuchet MS", Verdana, Geneva, Arial, sans-serif;

        font-size: 14px;

        padding-left: 0px;

}



/* This ends the drop down for the navbar */


#content {

	font-size: 1.2em

}


#subfeed {

	font-size: 15px;

        color: #000;

        text-align: center;

        padding-right: 20px;

        padding-left: 10px;

}

#subfeed a, subfeed a:hover {
       color: #000; /* #b89800; */
}

.translations {
	font-size: 11px;
	color: #000;
	text-align: center;
}



#translate {

	font-size: 11px;

        color: #000;

        text-align: left;

        padding-right: 20px;

        padding-left: 10px;

}





.sociable {

        font-size: 12px;

        color: #0a1153;

        font-style: italic;

        text-align: left;

        padding-right: 20px;

}      



.widecolumn .entry p {

	font-size: 1.05em;

	}



.narrowcolumn .entry, .widecolumn .entry, .narrowcolumn .entry-quips {

	line-height: 1.4em;

	}


.narrowcolumn .entry-quips {

	padding-top: 25px;

	padding-bottom: 5px

	text-align:center;

	font-style: italic;

}

.narrowcolumn .entry-quips p {

	text-align: center;
	
}


.full-frame .entry p {

	line-height: 1.4em;
	
	margin: 20px;

	font-family: "Times New Roman", Georgia, Times, serif;

	font-size: 110%;

	max-width: 900px;

	}


.total-frame .entry p {

	line-height: 1.4em;
	
	margin: 10px;

	font-family: "Times New Roman", Georgia, Times, serif;

	font-size: 110%;

	max-width: 1000px;

	}


.widecolumn {

	line-height: 1.6em;

	}



.narrowcolumn .postmetadata {

	text-align: center;

	}



.alt {

	background-color: #171717;

	border-top: 1px solid #ddd;

	border-bottom: 1px solid #ddd;

	}





#footer {

	background: #aaaaaa url('images/footer.jpg') top center ; 

	background-color: #959596;

	border-top: 1px solid #959596;

	color: #dddddd;

	font-style: italic;

	font-ize: 0.8em

	}



small {

	font-family: Georgia, "Times New Roman", Times, serif;

        color: #000;

	font-size: 0.9em;

	line-height: 1.5em;

	}



h2, h3 {

	font-family: Times New Roman, Times, serif;

	font-weight: bold;

	}



h4 {

	font-family: Arial, Helvetica, Sans-Serif;

        font-style: italic;

	}

h1 {

	font: italic normal 250% 'Times New Roman', Times, serif;

	letter-spacing: 0.6em;

        font-size: 4em;

	font-weight: bold;

        text-align: center;

	}

#fp-header {

	text-align: center;
	width: 1000px;
	padding: 10px;
	background: #222222;
	}

#fp-header h1 {

	font-size: 18px;
		color: #b89f40;
		font-family: "Times New Roman", Times, serif;
		text-decoration: underline;	
	
	letter-spacing: 0.2em;
}

#fp-header h2{
	
        font-size: 14px;
        font-family: "Trebuchet MS", Verdana, Geneva, Arial, sans-serif;
        color: #fdfdf7;
		padding-top: 10px;
		padding-bottom: 20px;
		padding-left: 50px;
		padding-right: 50px;
		margin: 5px 75px 5px 10px;
}

#headerimg .description {

	font-size: 1.2em;

        font-style: italic;

/*	text-align: center; */

        margin-top: 38px;

	margin-left: 560px;
}



h2 {

	color: #000066;

    font-size: 1.4em;

	}



h2.pagetitle {

   font-size: 1.2em;

	}



#pageheadline {

       background: #171717 url('http://www.skolaiimages.com/images/titlebar.jpg') no-repeat bottom center ;

       margin-top: 10px;

       padding-top: 5px;

       padding-right: 5px;

       padding-bottom: 3px;

       padding-left: 10px;

       border-top: 1px solid #fdfdf7;

       border-right: 0px;

       border-bottom: 0px;

       border-left: 0px;

       width: 100%;

       align: center;

}



#sidebar h2, #ph-sidebar h2 {

	font-family: 'Lucida Grande', Verdana, Sans-Serif;

	color: #000066;

    font-size: 1.1em;

	}



h3 {

	font-size: 1.1em;

	}

/* #sidebar h5 {

	padding: 5px 0;
	text-align: center;
	font-size: 1.2em
}

#sidebar h5 a {

	text-decoration: none;
}

sidebar h5 a:visited: {

	text-decoration: none;
}

#sidebar h5 a:hover {

	text-decoration: underline;
	color: #660000;
} */

h4 {

	font-size: 0.9em;

	color: #000066;

}





h1 a, h1 a:hover, {

	text-decoration: underline;

	color: #000066;

	}



h2, h2 a, h2 a:visited, h3, h3 a, h3 a:visited {

	color: #000066;

	}



h2 a:hover, h3 a:hover, #wp-calendar caption {

	text-decoration: underline;

        color: #000066;

	}



#sidebar h2, #ph-sidebar h2 {

        color: #333333;

}



.commentlist li, #commentform input, #commentform textarea {

	font: 1.0em Georgia, "Times New Roman", Times, serif;

	}



.commentlist li {

	font-weight: bold;

	}



.commentlist cite, .commentlist cite a {

	font-weight: bold;

	font-style: normal;

	font-size: 1.0em;

	}



.commentlist p {

	font-weight: normal;

	line-height: 1.5em;

	text-transform: none;

	}



#commentform p {

	font-family: Georgia, "Times New Roman", Times, serif;

	}



.commentmetadata {

	font-weight: normal;

	}



#sidebar, #ph-sidebar {

	font: 1em 'Lucida Grande', Verdana, Arial, Sans-Serif;

    color: #000066;

	}



#sidebar bio, #ph-sidebar bio {

	 font: 1em 'Lucida Grande', Verdana, Arial, Sans-Serif;

    font-size: 11px;

    color: #333333;

	}



#bio {

	 font: 1em 'Lucida Grande', Verdana, Arial, Sans-Serif;

    font-size: 11px;

    color: #333333;

	}



#sidebar sub, #sidebar2 sub, #ph-sidebar sub {

	 font: 1em 'Lucida Grande', Verdana, Arial, Sans-Serif;

    font-size: 11px;

    color: #b89800;

	}

#sidebar heading, #sidebar2 heading, #ph-sidebar heading {

	color: #b89800;

    font-size: 1.4em;

	}



#sidebar ul ul li, #sidebar ul ol li, #sidebar_bio, .nocomments, .postmetadata, strike, #ph-sidebar ul ul li, #ph-sidebar ul ol li {

	color: #000066;
font-size: 0.9em;

	}



blockquote {

        color: #ebebeb;

        font-size: 1.0em;

        font-style: italic;

        }



photocaption {

        font-family: Arial, Helvetica, Sans-Serif;

        color: #fdfdf7;

	font-size: 10px;

        font-style: italic;

	}



small {

       color: cdcdcd;

}

code {

	font: 1.1em 'Courier New', Courier, Fixed;

	}



acronym, abbr, span.caps

{

	font-size: 0.9em;

	letter-spacing: .07em;

	}



a {

	color: #03037b;

	text-decoration: none;

	}



a:hover {

	color: #03037b;

	text-decoration: underline;

	}


#wp-calendar #prev a, #wp-calendar #next a {

	font-size: 9pt;

	}



#wp-calendar a {

	text-decoration: none;

	}



#wp-calendar caption {

	font: bold 1.3em 'Lucida Grande', Verdana, Arial, Sans-Serif;

	text-align: center;

	}



#wp-calendar th {

	font-style: normal;

	text-transform: capitalize;

	}

/* End Typography & Colors */







/* Begin Structure */

body {

        margin: 0 0 20px 0;

	padding: 0; 

	}



#page {

	background-color: #fff;

	margin: 0px auto;

	padding: 0;

	width: 1000px;

	border: 1px solid #959596;

	}



#header {

	background-color: #222222;

	margin: 0 0 0 0px; 

	padding: 0; 

	height: 160px; 

	width: 1000px;

	}



#headerimg {

	margin: 0;

	height: 120px;

	width: 100%;

        position: relative;

	}



#headerslideshow  { 

   z-index: 1; 

       margin: 0; 

       position: absolute; 

       width: 1000px; 

       height: 120px; 

} 



#headertext { 

   z-index: 100; 

} 



.narrowcolumn {

	float: left;

	padding: 5px 15px 5px 15px;

	margin: 0px 0 0;

	width: 575px;


	}



.widecolumn {

	float: left;

	padding: 5px 15px 5px 15px;

	margin: 0px 0 0px;

	width: 575px;

	}

.full-frame {


	float: left;

	padding: 5px 15px 5px 15px;

	margin: 0px 0 0;

	width: 970px;

        background: #222;

	color: #FDFDF7;

/*	border-right: 1px solid #959596; */

	}

.full-frame a {

	color: #FDFDF7;
}


.total-frame {


	float: left;

	padding: 5px 5px 5px 5px;

	margin: 0px 0 0;

	width: 980px;

        background: #222;

	color: #FDFDF7;

/*	border-right: 1px solid #959596; */

	}

.total-frame a {

	color: #FDFDF7;
}


#regular {

	background: #FFF;
	
	color: #000;
	
	padding: 5px 5px;

	}

#regular a, #regular a:visited, #regular a:hover {

	color: #000;

	}

.post {

	margin: 0 0 10px;

	text-align: justify;

	}


.photo-post {
 	margin: 0 0px;

	text-align: justify;

}


.post hr {

	display: block;

	}



.widecolumn .post {

	margin: 0;

	}



.narrowcolumn .postmetadata {

	padding-top: 5px;

	padding-right: 5px;

        padding-bottom: 5px;

	padding-left: 5px;
        border-top: 1px solid #959596;

        border-bottom: 1px solid #959596;

	}



.widecolumn .postmetadata {

	margin: 30px 0;

	}



.widecolumn .smallattachment {

	text-align: center;

	float: left;

	width: 128px;

	margin: 5px 5px 5px 0px;

}



.widecolumn .attachment {

	text-align: center;

	margin: 5px 0px;

}



.postmetadata {

	clear: left;

        background: #fff;

}



#footer {

	padding: 10;

	margin: 0 auto;

	width: 1000px;

	clear: both;

	}



#footer p {

	margin: 0;

	padding-top: 5px;

        padding-right: 20px;

        padding-bottom: 0px;

        padding-left: 20px;

	text-align: center;

	}

/* End Structure */







/*	Begin Headers */

h1 {

	padding-top: 3px;

	margin: 0;

	}



h2 {

	margin: 0px 0 0;

	}



h2.pagetitle {

	margin-top: 20px;

	text-align: center;

}



#sidebar h2, #ph-sidebar h2 {

	margin: 5px 0 0;

	padding: 0;

	}



h3 {

	padding: 0;

	margin: 5px 0 0;

	}

h4 {

	padding: 0;

	margin: 30px 0 0;

	}



h3.comments {

	padding: 0;

	margin: 40px auto 20px ;

	}



h4.comments {

	padding: 0;

	margin: 40px auto 20px ;

	}
h5 {

        font-weight: bold;
        font-family: 'Trebuchet', Verdana, Arial, Helvetica, sans-serif;
        font-size: 110%;
}

h6 {
	
	margin: 10px 0px 0px 0px;

	font-family: Times New Roman, Times, serif;

	font-weight: bold;

	padding-bottom: 0px;

	font-color: #FDFDF7;

    	font-size: 1.4em;

	text-align: center;

	}

h6 a, h6 a:visited, {

	color: #FDFDF7;

    	text-decoration: none;

	}

h6 a:hover {

	text-decoration: underline;

        color: #FDFDF7;

	}



/* End Headers */







/* Begin Images */

p img {

	padding: 0;

	max-width: 100%;

	}



/*	Using 'class="alignright"' on an image will (who would've

	thought?!) align the image to the right. And using 'class="centered',

	will of course center the image. This is much better than using

	align="center", being much more futureproof (and valid) */



img.centered {

	display: block;

	margin-left: auto;

	margin-right: auto;

	}



img.alignright {

	padding: 4px;

	margin: 0 0 2px 7px;

	display: inline;

	}



img.alignleft {

	padding: 4px;

	margin: 0 7px 2px 0;

	display: inline;

	}



.alignright {

	float: right;

	}



.alignleft {

	float: left

	}

/* End Images */







/* Begin Lists



	Special stylized non-IE bullets

	Do not work in Internet Explorer, which merely default to normal bullets. */



html>body .entry ul {

	margin-left: 0px;

	padding: 0 0 0 30px;

	list-style: none;

	padding-left: 10px;

	text-indent: -10px;

	} 



html>body .entry li {

	margin: 7px 0 8px 10px;

	}



.entry ul li:before, #sidebar ul ul li:before, #ph-sidebar ul ul li:before {

	content: "\00BB \0020";

	}



.entry ol {

	padding: 0px 0 0 5px;

	margin: 0;

	}



.entry ol li {

	margin: 0;

	padding: 5px 0 0 0;

	}



.postmetadata ul, .postmetadata li {

	display: inline;

	list-style-type: none;

	list-style-image: none;

	}



#sidebar ul, #sidebar ul ol, #ph-sidebar ul, #ph-sidebar ul ol {

	margin: 0;

	padding: 0;

	}



#sidebar ul li, #ph-sidebar ul li {

	list-style-type: none;

	list-style-image: none;

	margin-bottom: 1px;

	}



#sidebar ul p, #sidebar ul select, #ph-sidebar ul p, #ph-sidebarul select {

	margin: 5px 0 8px;

	}



#sidebar ul ul, #sidebar ul ol, #ph-sidebar ul ul, #ph-sidebar ul ol {

	margin: 5px 0 0 10px;

	}



#sidebar ul ul ul, #sidebar ul ol, #ph-sidebar ul ol {

	margin: 0 0 0 10px;

	}



ol li, #sidebar ul ol li, #ph-sidebar ul ol lo {

	list-style: decimal outside;
	}



#sidebar ul ul li, #sidebar ul ol li, #ph-sidebar ul ul li, #ph-sidebar ul ol lo, {

	margin: 3px 0 0;

	padding: 0;

	}

#recent li {
        font-style: italic;
        font-family: Georgia, "Times New Roman", Times, serif; 
        list-style: none;
        list-style-type:none;
        padding-bottom: 3px;
        margin-bottom 5px;
}


/* End Entry Lists */







/* Begin Form Elements */

#searchform {

	margin: 10px auto;

	padding: 5px 3px; 

	text-align: center;

	}



#sidebar #searchform #s {

	width: 160px;

	padding: 2px;

	}



#sidebar #searchsubmit {

	padding: 20px;

	}



.entry form { /* This is mainly for password protected posts, makes them look better. */

	text-align:center;

	}



select {

	width: 130px;

	}



#commentform input {

	width: 170px;

	padding: 2px;

	margin: 5px 5px 1px 0;

	}



#commentform textarea {

	width: 100%;

	padding: 2px;

	}



#commentform #submit {

	margin: 0;

	float: right;

	}

/* End Form Elements */







/* Begin Comments*/

.alt {

	background: #fff;

        margin: 0;

	padding: 10px;

	}



.stats {

        background: #e6e6e6;

        margin: 0;

        padding: 2px;

        border-top: 1px solid #959596;

        border-bottom: 1px solid #959596;

}



.commentlist {

	background: #fff;

        padding: 0;

	text-align: justify;

	}



.commentlist li {

	margin: 15px 0 3px;

	padding: 5px 10px 3px;

	list-style: none;

	}



.commentlist p {

	margin: 10px 5px 10px 0;

	}



#commentform p {

	margin: 5px 0;

	max-width: 963px;

	}



.nocomments {

	text-align: center;

	margin: 0;

	padding: 0;

	}



.commentmetadata {

        background: #fff;

	margin: 0;

	display: block;

	}

/* End Comments */







/* Begin Sidebar */

#sidebar

{

	background-color: #fefef2;

        padding-top: 20px;

        padding-right: 5px;

        padding-bottom: 10px;

        padding-left: 5px;

        margin-bottom: 10px;

	margin-left: 610px;

	border-top: 1px solid #fefef2;

        border-right: 1px solid #b89f40;

        border-bottom: 1px solid #b89f40;

        border-left: 1px solid #b89f40;

        width: 183px;

	}



#sidebar form {

	margin: 0;

	}



#author {

	-moz-border-radius: 5px;

        -khtml-border-radius: 5px;

        -webkit-border-radius: 5px;

        border-radius: 5px; 

	border: 1px solid #000;

       margin-left: 3px;
      
       padding: 5px;

       width: 170px;

       align: center;

}



#carl {

       background: #fefef2 url('images/sidebau.gif') top center ;

       padding-top: 5px;

       padding-right: 5px;

       padding-bottom: 5px;

       padding-left: 5px;

       border-top: 0px;

       border-right: 1px solid #fefef2;

       border-bottom: 0px;

       border-left: 1px solid #fefef2;

       margin-left: 3px;

       width: 160px;

       align: center;

}



#subscribe {

       background: #333333;

       padding-top: 5px;

       padding-right: 5px;

       padding-bottom: 5px;

       padding-left: 8px;

/*        border-top: 0px;

       border-right: 2px solid #C2C2C2;

      border-bottom: 0px;

       border-left: 2px solid #C2C2C2; */
      
        -moz-border-radius: 5px;

        -khtml-border-radius: 5px;

        -webkit-border-radius: 5px;
       border: 3px solid #c2c2c2;
       width: 167px;

       align: center;


}


#fb {

       margin-left: 0px;

       background: #fefef2;

       padding-top: 0px;

       padding-right: 5px;

       padding-bottom: 5px;

       padding-left: 0px;

       border-top: 0px;

       border-right: 1px solid #000000;

       border-bottom: 0px;

       border-left: 1px solid #000000;

       width: 183px;

       align: center;

}

.specials {
	color: #a00000;
	font-size: 1.2em;
	font-weight: bold;

}

#recent {
        margin: 8px auto;
        background: #fbfbfb;
        border: 1px solid #000;
        width: 170px;
        padding: 0px 3px 8px 3px;
        -moz-border-radius: 5px;

        -khtml-border-radius: 5px;

        -webkit-border-radius: 5px;
font-size: 1.2em;

}

#recent h2 {
font-size: 0.9em;
}


ul.children { display: none; }

li.current-cat ul.children { display: block; }

li.current-cat:hover ul.children, li.current-cat:active ul.children { display: block; }



/* End Sidebar */



/* Begin Sidebar2 */
#sidebar2
{
        float: right;
	background: #fefef2;
        padding: 0px 0px 10px 5px;
/*	margin-top: 05px; */
/*        margin-left: 80%; */
/*        border-bottom: 1px solid #333333; */
        
        border-bottom: 1px solid #b89f40;

        border-left: 1px solid #b89f40;
	width: 190px;
	}


#sidebar form {
	margin: 0;
	}


/* End Sidebar 2 */


/* Begin Photo Tour Page Sidebar */



#ph-sidebar

{

	background-color: #fefef2;

        padding-top: 20px;

        padding-right: 5px;

        padding-bottom: 10px;

        padding-left: 5px;

        margin-bottom: 10px;

	margin-left: 610px;

	border-top: 1px solid #fefef2;

        border-right: 1px solid #b89f40;

        border-bottom: 1px solid #b89f40;

        border-left: 1px solid #b89f40;

        width: 183px;

	}


/* This ends the Photo Tour page sidebar */



/* Begin Calendar */

#wp-calendar {

	empty-cells: show;

	margin: 10px auto 0;

	width: 155px;

	}



#wp-calendar #next a {

	padding-right: 10px;

	text-align: right;

	}



#wp-calendar #prev a {

	padding-left: 10px;

	text-align: left;

	}



#wp-calendar a {

	display: block;

	}



#wp-calendar caption {

	text-align: center;

	width: 100%;

	}



#wp-calendar td {

	padding: 3px 0;

	text-align: center;

	}



#wp-calendar td.pad:hover { /* Doesn't work in IE */

	background-color: #fff; }

/* End Calendar */







/* Begin Various Tags & Classes */

acronym, abbr, span.caps {

	cursor: help;

	}



acronym, abbr {

	border-bottom: 1px dashed #999;

	}



blockquote {

	margin: 15px 30px 0px 10px;

        padding-right: 15px;

	padding-left: 15px;

        background: #cccccc;

        border: 1px solid #959596;
        
        color: #222222;

	}



blockquote cite {

	margin: 5px 0 0;

	display: block;

	}



.center {

	text-align: center;

	}



hr {

	display: none;

	}



a img {

	border: none;

	}



.navigation {

	display: block;

	text-align: center;

	margin-top: 10px;

	margin-bottom: 40px;

	}



#footer copyright {

   font-size: 9px;

   font-family: "Trebuchet MS", Verdana, Geneva, Arial, sans-serif;

   font-style: italic;

   color: #FDFDF7;

}



/* Extras */

.stuff-quotes {

	font-weight: strong;

	color: #080869;


}
   
.photocaption {

        width: 500px;

        background-color: #191919;

        padding: 10px;

	-moz-border-radius: 5px;

        -khtml-border-radius: 5px;

        -webkit-border-radius: 5px;

        border-radius: 5px; 

	border: 1px solid #959596;

	font-style: italic;

	color: #fff;

	font-size: 0.9em;

	font-family: 'Trebuchet', Verdana, Arial, Helvetica, sans-serif;

}



/* End Various Tags & Classes*/







/* Captions */

.aligncenter,

div.aligncenter {

	display: block;

	margin-left: auto;

	margin-right: auto;

}



.wp-caption {

	border: 1px solid #ddd;

	text-align: center;

	background-color: #f3f3f3;

	padding-top: 4px;

	margin: 10px;

	-moz-border-radius: 3px;

	-khtml-border-radius: 3px;

	-webkit-border-radius: 3px;

	border-radius: 3px;

	color: #000;

}



.wp-caption img {

	margin: 0;

	padding: 0;

	border: 0 none;

}



.wp-caption p.wp-caption-text {

	font-size: 11px;

	line-height: 17px;

	padding: 0 4px 5px;

	margin: 0;

}

/* End captions */


/* Begin News Boxes */

#container {
	width: 385px;
	padding: 0px;
	float: left;
	font-size: 0.9em;
	border-right: 2px #ededed solid;
}

#col1 {
	width: 180px;
	float: left;
	padding: 0px 5px 0px 0px;
	border-right: 2px #ededed solid;
}

#col2 {
	width: 180px;
	padding: 0px 12px 0px 0px;
	float: right;
/*	border-right: 2px #ededed solid; */
}

/* Ends boxes */

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/* This begins the pricing button code */

a#testbutton, a#testbutton:visited {
display:block;
background: url(http://www.skolaiimages.com/images/simple_button.png) repeat-x;
width: 200px;
padding: 5px 0;
margin-bottom: 5px;
text-align:center;
border:1px solid #608925;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.8);
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
color:#FFF;
text-decoration: none;
opacity:.85;
}

a#testbutton:hover {
border-color:#49671d;
/* text-decoration: underline; */
font-weight:bold; 
background: url(http://www.skolaiimages.com/images/simple_button-rollover.jpg) repeat-x; 
}

a#testbutton:active {
background-position:  0 -200px;
padding:11px 0 9px;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
}


/* This ends the pricing button code */



/* This begins the licensing button code */

a#testbutton-1, a#testbutton-1:visited {
display:block;
background: url(http://www.skolaiimages.com/images/simple_button.png) repeat-x;
width: 200px;
padding: 5px 0;
margin-left: 20px;
margin-bottom: 5px;
text-align:center;
border:1px solid #608925;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.8);
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
color:#FFF;
text-decoration: none;
opacity:.85;
}

a#testbutton-1:hover {
border-color:#49671d;
/* text-decoration: underline; */
font-weight:bold; 
background: url(http://www.skolaiimages.com/images/simple_button-rollover.jpg) repeat-x; 
}

a#testbutton-1:active {
background-position:  0 -200px;
padding:11px 0 9px;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
}


/* This ends the licensing button code */


/* "Daisy, Daisy, give me your answer do. I'm half crazy all for the love of you.

	It won't be a stylish marriage, I can't afford a carriage.

	But you'll look sweet upon the seat of a bicycle built for two." */

