/*
Theme Name: Corporate
*/

/*
INSTRUCTIONS ON HOW TO MOVE THE SIDEBAR TO THE RIGHT:

Search for all comments that contain the words "right sidebar"
	 and follow the instructions near those lines.
*/

/*
INSTRUCTIONS ON HOW TO INSERT A LOGO:

1. Search for all comments that contain the words "insert logo"
	 and follow the instructions near those lines.
	
2. In header.php you see a commented line that contains the link to the logo.
	 If you name your own logo "logo.gif" you do not need to modify the line.
	 Upload your logo to wp-content/themes/corporate/images and uncomment this line.
*/

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
}
body {
	background: url(images/body.gif) repeat-x;
	font: 70% Tahoma, Arial, Helvetica, sans-serif;
}

/* General settings */
a {
	color: #0a6dad;
	background-color: inherit;
	font-weight: bold;
}
a:hover {
	text-decoration: none;
}
img {
	border: none;
}
img.alignleft {
	float: left;
	border-right: 20px solid #fff;
	border-bottom: 10px solid #fff;
}
img.alignright {
	float: right;
	border-left: 20px solid #fff;
	border-bottom: 10px solid #fff;
}
img.aligncenter {
	display: block;
	margin: auto;
}
td {
	font-size: 100%;
}
p {
	margin: 0;
	padding: 1em 0;
}

/* Headings */
h1 {
	margin: 0;
	padding: 0;
	text-align: center;
	height: 33px;
	line-height: 33px;
	background: #f06100;
	color: #fff;
	font-size: 200%;
	font-weight: normal;
	border-left: 1px solid #f5914d;
}
h2, h3 {
	margin: 0 0 1em 0;
	padding: 0;
	font-size: 150%;
	font-weight: normal;
	text-transform: uppercase;
	line-height: 1.5em;
}
h2 {
	color: #f8461d;
	background: #fff;
}
h3 {
	color: #656a6f;
	background: #fff;
}
.comment h3 {
	font-size: 90%;
	font-weight: bold;
}
h2 a, h3 a {
	text-decoration: none;
	font-weight: normal;
}
h2 a {
	color: #f8461d;
	background: #fff;
}
h3 a {
	color: #656a6f;
	background: #fff;
}
h2 a:hover, h3 a:hover {
	text-decoration: underline;
}
h4 {
	margin: -10px -10px 10px -10px;
	padding: 13px 0;
	text-align: center;
	color: #fff;
	background: #63656a;
	font-size: 100%;
	text-transform: uppercase;
}

/* Form elements */
form {
	margin: 0;
}
input {
	font: 100% Tahoma, Arial, Helvetica, sans-serif;
	color: #fff;
	border: 1px solid #63656a;
	background: #8f9094;
	cursor: pointer;
}
input#s, input#author, input#email, input#url {
	color: #63656a;
	border-color: #b1b2b4;
	background: #fff;
	width: 160px;
	cursor: text;
}
.rightcol input#s {
	width: 250px;
}
.leftcol input {
	float: right;
}
.leftcol input#s {
	float: left;
}
textarea, select {
	font: 100% Tahoma, Arial, Helvetica, sans-serif;
	border: 1px solid #b1b2b4;
}
label {
	font-weight: bold;
	cursor: pointer;
}
#searchform br {
	display: none;
}

.page {
	width: 778px;
	margin: auto;
	position: relative;
	height: auto;
	min-height: 80%;
	color: #52646e;
	/* RIGHT SIDEBAR:
		 add "right" to the background image	 
	*/
	background: #fff url(images/main.gif) repeat-y;
	/* background: #fff url(images/main.gif) repeat-y right; */
}

/* Top navigation (pages) */
.topnav {
	height: 102px;
	border-bottom: 1px solid #fff;
	padding-left: 23px;
	color: #52646e;
	/* INSERT LOGO:
		 remove the the background image
	*/
	background: #fff url(images/topnav_li.jpg) repeat-x bottom;
	/* background: #fff; */
}

	/* INSERT LOGO:
		 below are the settings for the logo.
		 You might want to add a margin if the logo is rather small
	*/
.topnav img {
	float: left;
}

.topnav ul {
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
	float: right;
	text-transform: uppercase;
	font-size: 110%;
	letter-spacing: 1px;
}
.topnav li {
	height: 76px;
	background: url(images/topnav_li.jpg) repeat-x;
	border-left: 1px solid #ffd98f;
	float: left;
}
.topnav li a {
	display: block;
	padding: 45px 25px 0 25px;
	height: 31px;
	color: #fff;
	background-color: inherit;
	background-image: url(images/topnav_a.gif);
	background-repeat: no-repeat;
	background-position: 50% 16px;
	text-decoration: none;
}
.topnav li a:hover {
	background-color: #f06100;
	color: #fff;
}
.topnav li.current_page_item a {
	background-image: url(images/topnav_a_active.gif);
}

/* Header */
.header {
	height: 207px;
	background: url(images/header.jpg) no-repeat;
	padding: 0 1px 0 103px;
}
.left_slogan {
	float: left;
	margin-top: 59px;
}
.right_slogan {
	float: right;
	margin-top: 37px;
}

.main {
	border-top: 1px solid #fff;
	padding-bottom: 20px;
}

/* Main (content) column */
.rightcol {
	/* RIGHT SIDEBAR:
		 replace float: right;
		 with float: left; */
	float: right;
	/* float: left; */
	width: 513px;
	line-height: 1.5em;
	background: url(images/content.gif) repeat-x;
}
.content {
	padding: 20px 20px 20px 0;
	margin-left: 20px;
	background: url(images/separator.gif) repeat-x bottom;
}
.title, .navigation {
	padding: 20px 20px 0 20px;
}
div.alignleft {
	float: left;
}
div.alignright {
	float: right;
}
.comment li {
	margin-bottom: 2em;
	background: url(images/separator.gif) repeat-x bottom;
}

/* Left sidebar */
.leftcol {
	/* RIGHT SIDEBAR:
		 replace float: left;
		 with float: right; */
	float: left;
	/* float: right; */
	width: 265px;
}
.left_top {
	text-align: center;
	height: 33px;
	line-height: 33px;
	background: #f06100;
	color: #fff;
	border-bottom: 1px solid #fff;
}
.leftcol .content {
	padding: 10px;
	margin: 0 0 1px 0;
	background: #f7f7f7;
	color: #52646e;
	line-height: 1.5em;
}
.leftcol ul {
	margin-top: 0;
	margin-bottom: 0;
	color: #f8461d;
	background: #f7f7f7;
	list-style-type: square;
	line-height: 2em;
}
.leftcol ul ul {
	padding-left: 1em;
	margin-left: 0;
}
#wp-calendar {
	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%;
	font-weight: bold;
}
#wp-calendar td {
	padding: 3px 0;
	text-align: center;
}

.bottom {
	height: 8px;
	font-size: 1px;
	border-bottom: 1px solid #fff;
	background: url(images/bottom2.gif) repeat-x;
}
.bottom div {
	height: 8px;
	font-size: 1px;
	width: 265px;
	background: url(images/bottom1.gif) repeat-x;
	/* RIGHT SIDEBAR:
		 uncomment the line below	 
	*/
	/* float: right; */
}

/* Footer */
.footer {
	height: auto;
	min-height: 20%;
	background: #f4f4f4;
	color: #fff;
	text-align: right;
	position: relative;
}
.inside {
	width: 778px;
	margin: auto;
	color: #fff;
	height: 38px;
	line-height: 38px;
	background: #f06100 url(images/footer_left.gif) no-repeat;
}
.footer_left {
	float: left;
	padding-left: 14px;
	font-weight: bold;
}
.footer_right {
	float: right;
	padding-right: 14px;
	height: 38px;
	background: url(images/footer_right.gif) no-repeat right;
}
.footer_right a {
	color: #fff;
	background-color: #f06100;
	font-weight: normal;
}

#credits{
	padding: 10px 0 0 0;
	color: #898989;
	text-align: center;
	}

#credits a, #credits a:visited{
	color: #ccc;
	}

.main:after, .content:after, .navigation:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
.main, .content, .navigation {
	min-width: 0;
	display: block;
}
* html .main, * html .content, * html .navigation {
	height: 1%; 
}
* html .page {
	height: 80%;
}
* html .topnav li a {
	float: left;
}
* html .footer {
	height: 20%;
}