/*
Theme Name: wanting
Theme URI: the-ultimate-website-blog.com/wantingawebsite/
Description: the wanting-a-website theme
Author: Camille Turner
Author URI: blueguminteractive.biz
Version: 1.0
*/

@charset "utf-8";
/* CSS Document */
body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #228AB5;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #ffffff;
}
html {
	height: 100%;
	margin:0;
	padding:0;
}
img {
	border: 0;
}
input#submit {
         background:#026693;
         color: #FFFFFF;
         cursor:pointer;
         border: solid 1px #026693;
         padding: 3px;
}
.container { 
	width: 971px;  /* this will create a container 80% of the browser width */
	background: #1F799E;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.menubg {
	background-image: url(images/btns-bg.gif);
	background-repeat: no-repeat;
	width: 202px;
	height: 27px;
}

.header {
	background: #1581AF;
	border-bottom: solid 5px #004F73;
}
.btns {
	float: left;
	background-image: url(images/menu-bg.gif);
	background-repeat: no-repeat;
	width: 202px;
	height: 27px;
	font-size: 12px;
}
.btns ul {
	list-style-image: none;
	margin: 0;
	padding-top: 4px;
}
.btns li {
	display: inline;
	padding-right: 5px;
}
.btns li a:link {
	color: #FFFFFF;
	text-decoration: none;
}
.btns li a:hover {
	text-decoration: underline;
}
.btns li a:visited {
	color: #CCCCCC;
	text-decoration: none;
}
.search {
	float: right;
	background-image: url(images/search-bg.gif);
	background-repeat: no-repeat;
	width: 348px;
	height: 27px;
	font-size: 10px;
}
.searchForm {
	padding-left: 15px;
}
.headerLeft {
	float: left;
	width: 616px;
}
.headerRight {
	float: right;
	background-image: url(images/wanting-a-website-headerRight.jpg);
	background-repeat: no-repeat;
	width: 355px;
	height: 164px;
}
.headerRight a:link {
	text-decoration: none;
	color: #FFFFFF;
}
.headerRight a:hover {
	text-decoration: underline;
}
.headerRight a:visited {
	text-decoration: none;
	color: #CCCCCC;
}
.headerbottomborder {
	border-bottom-color: #004F73;
	border-bottom-style: solid;
	border-bottom-width: thick;
}

/* Tips for sidebars:
1. Since we are working in percentages, it's best not to use side padding on the sidebars. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the "sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
.sidebar1 {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 20%; /* since this element is floated, a width must be given */
	background-image: url(images/sidebarbg.gif);
	padding: 10px; /* top and bottom padding create visual space within this div  */
	background-repeat: repeat;
	margin: auto;
	height: 1000px;
}
.sidebar1 ul {
         margin: 0;
         padding: 0;
}
.sidebar1 li {
         list-style: none;
         margin-left: 10px;
         margin-top: 5px;
}
.sidebar1 a:link {
	text-decoration: none;
	color: #FFFFFF;
}
.sidebar1 a:hover {
	text-decoration: underline;
}
.sidebar1 a:visited {
	text-decoration: none;
	color: #CCCCCC;
}
.sidebar2 {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 20%; /* since this element is floated, a width must be given */
	background-image: url(images/sidebarbg.gif);
	padding: 10px; /* top and bottom padding create visual space within this div */
	background-repeat: repeat;
	margin: auto;
	height: 1000px;
}
.sidebar2 ul {
         margin: 0;
         padding: 0;
}
.sidebar2 li {
         list-style: none;
         margin-left: 10px;
         margin-top: 5px;
}
.sidebar2 a:link {
	text-decoration: none;
	color: #FFFFFF;
}
.sidebar2 a:hover {
	text-decoration: underline;
}
.sidebar2 a:visited {
	text-decoration: none;
	color: #CCCCCC;
}

/* Tips for mainContent:
1. the space between the mainContent and sidebars is created with the left and right margins on the mainContent div.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 300px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
.mainContent { 
margin: 0 24% 0 23.5%; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
}
.mainContent li {
	color: #FFFFFF;
}
.mainContent a:link {
	color: #FFFFFF;
	text-decoration: underline;
}
.mainContent a:hover {
	text-decoration: none;
}
.mainContent a:visited {
	color: #CCCCCC;
}
h1 {
	font-size: 14px;
	font-weight: bold;
}

.footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #004F73;
	text-align: center;
	font-size: 10px;
} 

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.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 its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.tagsPadding {
	padding-left: 10px;
}
h2 {
	font-size: 12px;
	font-weight: bold;
}
.enterpassword {
	font-size: 14px;
	font-weight: bold;
}
.enterpassword a:link {
	color: #FFFFFF;
	text-decoration: underline;
}
.enterpassword a:hover {
	text-decoration: none;
}
.enterpassword a:visited {
	text-decoration: none;
	color: #CCCCCC;
}
#commentlist li ol {
	list-style-type: none;
}
#commentlist li .avatar {
	float: right;
	margin-right: 25px;
	border: 1px solid #004F73;
	padding: 2px;
}
#postcomment {
	
}

.post {
	
}
.post a:link {
	color: #FFFFFF;
	text-decoration: underline;
}
.post a:hover {
	text-decoration: none;
}
.post a:visited {
	color: #CCCCCC;
}
.entry {
	
}
.postmetadata {
	
}
.comments-template {
	
}
.navigation {
	
}
.navigation a:link {
	color: #FFFFFF;
	text-decoration: underline;
}
.navigation a:hover {
	text-decoration: none;
}
.navigation a:visited {
	color: #CCCCCC;
}
.narrowcolumn {
	
}
.addtoany_share_save_container li {
          list-style: none;
}
.searchterms {
          font-size: 14px;
          font-weight: bold;
}
.formOutline {
          border: solid 1px #cccccc;
          background-color: #004F73;
          padding: 10px;
width: 480px;
margin-top: 10px;
margin-bottom: 10px;
}
.articleContainer {
	background-image: url(images/bg1.gif);
	background-repeat: repeat-x;
         height: 23px;
padding: 5px;
}
.anytoany {
         float: left;
}
.addtoany_list {
         padding: 0;
         margin: 0;
}
.addtoany_list li {
         list-style: none;
}
.leaveacomment {
         float: right;
}
.top1 {
         float: left;
width: 400px;
}
.top2 {
         float: right;
         background-image: url(images/comments.gif);
background-repeat: no-repeat;
         width: 99px;
         height: 35px;
padding-top: 10px;
padding-left: 10px;
color: #004F73;
}
.footerContainer {
width: 971px;
padding-top: 10px;
}
.col1 {
float: left;
text-align: left;
width: 290px;
height: 180px;
background-color: #046896;
padding: 10px;
margin-right: 10px;
}
.col2 {
float: left;
text-align: left;
width: 290px;
height: 180px;
background-color: #046896;
padding: 10px;
margin-right: 10px;
}
.col2 ul {
margin: 0;
padding: 0;
}
.col2 li {
list-style: none;
padding-bottom: 5px;
}
.col2 a:link {
color: #FFFFFF;
text-decoration: none;
}
.col3 {
float: left;
text-align: left;
width: 290px;
height: 180px;
background-color: #046896;
padding: 10px;
}
h4 {
font-size: 14px;
font-weight: bold;
}
.commentOutline {
background-color: #036fa1;
border-top: solid 1px #004F73;
width: 500px;
color: #ffffff;
}
.commentOutline ol li {
list-style: none;
}
.commentOutline ol {
margin: 0;
padding: 10px;
}
.authorOutline {
background-color: #026693;
width: 450px;
padding: 10px;
}
.commenttxt {
padding-left: 10px;
}
