/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the &lt;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{
	background: url("/wp-assets/pkapagebg.jpg") top left repeat-x fixed;}

.custom #page{
	background: url("/wp-assets/pkapagebg.jpg") top left repeat-x fixed;
}

.custom #header{
	background: url("/wp-assets/pkaheader.png") top center no-repeat;
        height: 160px;
        width: 900px;
}

.custom .menu{
	background: url("/wp-assets/menubg.png") top center no-repeat transparent;
        height: 24px;
        margin-bottom: 10px;
        margin-left: 0px!important;
        padding: 0px 0px 0px 130px;
        width: 800px;
}



.custom .menu li a:hover{
	background: url("/wp-assets/menuover.png") top left repeat-x transparent;
        color: #000000;
}

.custom .menu li, .custom .menu li a{
	background-color: transparent;
        color: #ffffff;
        text-align: center;
        text-transform: none;
        font-variant: normal;
        font-size: 12px;
        font-weight: bold;
        height: 24px;
}

.custom .menu .current a, .custom .menu .current a:hover, .custom .menu .current-parent a, .custom .menu .current-parent a:hover{
	background: url("/wp-assets/menucurrent.png") top left repeat-x transparent;
        color: #000000;
}

.custom .menu li a{
	padding: 3px 10px;
}

.custom .submenu{
	background-color: transparent;
        color: #000000;
        margin: -5px 0px 0px 20px;
}

.custom .submenu li{
	 min-height: 30px;
         padding: 0;
         margin-top: 0;
}

.custom .submenu li a{
	background-color: #ffffff!important;
        color: #000000;
        text-align: left;
        background-image: none!important;
        border: 2px solid #ffffff;

        margin: 0;
        padding: 4px 0px 0px 10px;
}

.custom .submenu li a:hover{
	background-color: #cd010d!important;
        color: #000000;
        border: 2px outset #cd010d;
        background-image: none!important;
}

.custom .submenu .current a, .custom .submenu .current a:hover, .custom .submenu .current-parent a, .custom .submenu .current-parent a:hover{
	background-color: #354493!important;
        color: #ffffff;
        border: 2px outset #354493;
        background-image: none!important;
}

.custom .righth4{
	text-align: right;
}

.custom .spacerrow{
	background-color: #dddddd;
}

.custom blockquote{
	color: #000000;
}

.custom .sidewidget{
	border: 1px dotted #cd010d;
        padding: 3px;
        background-color: #ffffff;
}

.custom .reditalic h4{
	color: #000000!important;
        background-color: #cd010d!important;
        padding: 3px;
        font-style: italic;
}

.custom .testimonial{
	border: 1px dotted #cd010d;
        padding: 5px;
        font-size: 11px!important;
        font-style: italic;
        background-color: #ffffff;
}

.custom #sidebars h3{
	font-variant: normal;
        text-transform: none;
}

.custom .wpcf7{
	background-color: #ffffff;
        border: 1px dotted #cd010d;
        margin: 20px 40px;
        padding: 20px;
}

.custom .wpcf7 input[type="checkbox"], .custom .wpcf7 input[type="radio"]{
	text-align: right;
        margin-left: 50px;
        background-color: transparent;
        border: none;
}

.custom .wpcf7-checkbox label, .custom .wpcf7-radio label{
	text-align: left!important;
        margin-left: -80px;
        padding-left: 0px;
}

.custom .center{
	text-align: center;
}

.custom .widget_text h3, .custom .widget h3{
	background-color: #354493;
        color: #ffffff;
        padding: 3px;
}
