/*KiwiStyle.css
  Mike Black 2006

  Notes: For an explanation of the layout read chapter 5 - Three-Column Layouts with Float and Clear of 
  Stylin' with CSS a designer's guide. Very important because it explains why IE and firefox behave
  differently with how floats are handled.
  
  For explanation of font sizes defined in ems not px see same book Ch. 3 and http://www.clagnut.com/blog/348/
  
*/

/*General layout definitions*/
* { padding: 0; margin: 0; }   /*To clear any browser specific stuff (see Eric Meyer)*/

body {
	font-size: 76%;	/*set to 76% because it produces the most consistent sizes between IE and Firefox*/
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	text-decoration: none;
	color: #000000; 
	line-height: 16px; 
	background-color: #393925;
}

a:link {
	font-weight: bold; 
	color: #666699;  
	text-decoration: none;
}
a:visited {
	font-weight: bold; 
	color: #666699;  
	text-decoration: none;
}
a:hover {
	font-weight: bold; 
	color: #666699;  
	text-decoration: none;
}


/* Layout defintion */

#mainbox {
    border: 1px #000 solid;
    width: 774px;
    margin-right: auto;
    background-color: #A2AB67;     
    margin-left: 20px;    
}

#content {
    width: 594px;
    float: left;		
}

#navigation {	
    width: 180px;
    float: left;
}

#footer {
	width: 776px;		
	background-color: #A2AB67;         
	margin-left: 20px;
}	

#footer p {
    text-align: center;
    border-left: #000 1px solid;    
    border-right: #000 1px solid;    
    padding: 5px;
    font-size: .8em;
}    

/* Logo is important for pattern purposes when there is no image defined */

#logo {
    background-color: #B0B02F;
    height: 181px;
}

#logo h1 {
    text-align: center;
    font-weight: bold;
    font-size: 2.5em;
	font-family:Georgia, "Times New Roman", Times, serif;
	border-bottom: 1px #000 solid;
	padding-top: 60px;
	padding-bottom: 20px;
}

#logo h2 {
    text-align: center;
    font-weight: bold;
    font-size: 1.3em;
	font-family:Georgia, "Times New Roman", Times, serif;
	padding-top: 5px;
}

/* For displaying a single post */
.line {     
    padding-bottom: 10px;
}

.prev {
    float: left;
}

.next {
    float: right;
    font-size: 0.8em;
}

#singlenavigation {
    border: #333 2px dotted; 
    background-color: #F4F4F4;
    padding:10px;
    margin:10px;
}

#singlenavigation .prev {	
	padding-left: 10px;
	float: left;
        font-size: 1em;
}

#singlenavigation .next {	
	padding-right: 10px;
	float: right;	
        font-size: 1em;
}


/*The Alsett Clearing Method (see book) */

.clearfix:after {        
   content: ".";        
   display: block;      
   height: 0;        
   clear: both;      
   visibility: hidden;
}

/*.clearfix {display: inline-block;}  */  /*Commented out because not valid CSS*/ 

* html .clearfix {height: 1%;}    

.clearfix {display: block;}       

/* Main menu navigation. Taken from Book.*/

#mainmenu {
	background: url("http://static.free-conversant.com/images/pattern-support/mikeblack/kiwi/menubackground.jpg") no-repeat;		
	margin-top:-2px;
	background-color: #A2AB67;
}

div#mainmenu {
   width:100%;        
   float:left;        
   font-weight: normal;
   font-family: Verdana, Arial, Helvetica, sans-serif;
   font-size: .9em;	   
   }
   
div#mainmenu ul {
   margin:0 0 0 10px;
   line-height:28px;
}
   
div#mainmenu li {
   float:left;        
   list-style-type:none;           
   background-color: #CCCC84;
   border-right:1px solid #000; 
   }
   
div#mainmenu li:first-child {
   border-left:1px solid #000;  
   }
   
div#mainmenu li:hover {
   background-color:#E3E7C5;
   }
   
div#mainmenu li.active {
   background-color: #E3E7C5;
}

div#mainmenu a {
   padding: 6px;        
   text-decoration:none; 
   color: #484848;
   }
   
div#mainmenu a:hover {
   color: #A74040;
   background-color:#E3E7C5;    
   }        

   
/*IE specific tag*/   
* html div#mainmenu ul {        
   float:left;        
   border-left:1px solid #000;
   margin-left:10px;        
   }        

/* Left hand navigation */
.navmenu ul li {
	text-decoration: none;
	list-style: none;	
	margin-left: 30px;
   	font-weight: normal; 
	font-size: .9em; 
	font-family: Arial, Helvetica, sans-serif; 
    list-style-image: url("http://static.free-conversant.com/images/pattern-support/mikeblack/kiwi/bullet.gif");

}

.navmenu {
   width: 170px;
   padding-top: 20px;
   font-size: 1em;
}

.navmenu a {
	font-weight: normal; 
	color: #7B2E2E;  
	text-decoration: none;
}
	
.navmenu a:hover {
	font-weight: normal; 
	color: #7B2E2E;  
	border-bottom: #7B2E2E 1px solid; 
	text-decoration: none;
}

.navmenu a:visited {
	font-weight: normal; 
	color: #7B2E2E;  
	text-decoration: none;
}

.navmenu li.nobullet {
    list-style-image: none;
}

.nobullet a:hover {
	text-decoration: none;

	border-bottom: 0px;
}

.navmenu p {
	padding-left: 10px;
        font-size: 0.9em;
}

.navmenu h3 {
	font-variant:small-caps;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	color:#484848;
	line-height:28px;
	margin-bottom: 10px;
	border-bottom: #000 1px solid;
	border-top: #000 1px solid;
	font-size: 115%; /*had to define in % cause of browsers*/
}

/* Defintion of the semi-rounded right hand navigation shape*/
.bl {margin-left: 10px; background-color: #C2C1B0; width: 170px}

.br {background: url("http://static.free-conversant.com/images/pattern-support/mikeblack/kiwi/br.gif") 100% 100% no-repeat}

.tl {background: url("http://static.free-conversant.com/images/pattern-support/mikeblack/kiwi/tl.gif") 0 0 no-repeat}

.tr {padding:15px}

.clear {font-size: 1px; height: 1px}


/* Blog post content*/

.blogpost {
	 padding: 10px;
	 margin: 20px;
	 background-color: #E3E7C5;
         border: #333 1px solid;	
}

.blogpostdate {
	font-size: .8em; 
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	text-decoration: none;
	text-align: right;
	margin-bottom: 10px;
}

.blogposttext {
	font-size: 1em; 
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	text-decoration: none;
	margin: 0 0 10px 20px;
	
}

/* Reply post formatting */
.replypost {
	 padding: 10px;
	 margin: 20px;
	 background-color: #E3E7C5;
	 border: #333 1px solid;	 
}

.replyheader {
	font-size: 1.1em; 

	font-family: Verdana, Arial, Helvetica, sans-serif; 
	text-decoration: none;
	text-align: right;
	margin-bottom: 10px;
}

.replytext {
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	text-decoration: none;
	margin: 0 0 10px 20px;
}

/*blogpost text formatting defintions*/
.blogpost p {
   margin: 1em 0;
}

.blogpost ul {
  margin: 1em 0;
}

.blogpost li {
  margin-left: 20px;   
}

.blogpost dd {
  margin-left: 20px;   
}

.blogpost h2 {
   padding: 10px 18px 0 18px;
   border-bottom-color:#999999;
   border-bottom-width: 1px;
   border-bottom-style: dashed;
   font-size: 1.2em;
   /* Required for single navigation when only 1 post is displayed*/
   color:#A74040;
   font-variant:small-caps;
   font-family:Georgia, "Times New Roman", Times, serif;
   font-weight:bold;
   font-size: 14px;
   font-style: normal;
   line-height: 16px; 
   text-decoration: none;
}

.h2link:link, .h2link:visited, .h2link:hover {		
	font-variant:small-caps;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:bold;	
	color:#A74040;	
	font-style: normal;
	line-height: 16px; 
       text-decoration: none;
}			

.bodyLink:link {
	font-weight: bold; 
	color: #666699; 
	border-bottom: #666699 1px dotted; 
	text-decoration: none;
}

.bodyLink:visited {
	font-weight: bold; 
	color: #666699;  
	border-bottom: #666699 1px solid; 
	text-decoration: none;

}

.bodyLink:hover {
	font-weight: bold; 
	color: #666699;  
	border-bottom: #666699 1px solid; 
	text-decoration: none;
}

.commentlink:link, .commentlink:visited, .commentlink:hover {
	font-weight: bold; 
	color: #666699;  
	border-bottom: #666699 1px solid; 
	text-decoration: none;
	font-size: 0.8em;
}

.leftinline {
	float: left;
	margin-right: 10px;

	margin-bottom: 10px; 
}

.leftinlineborder {
	border-color:#000000;
	border-style:solid;

	border-width:1px;
	float: left;
	margin-right: 10px;
	margin-bottom: 10px; 
}

.rightinline {
	float: right; 
	margin-left: 10px;
	margin-bottom: 10px;
}

.rightinlineborder {
	border-color:#000000;
	border-style:solid;
	border-width:1px;
	float: right; 
	margin-left: 10px;
	margin-bottom: 10px;
}

.bodylink:link {
	font-weight: bold; 
	color: #666699; 
	border-bottom: #666699 1px dotted; 
	text-decoration: none;
}

.bodylink:visited {
	font-weight: bold; 
	color: #666699;  
	border-bottom: #666699 1px solid; 
	text-decoration: none;
}

.bodylink:hover {
	font-weight: bold; 
	color: #666699;  
	border-bottom: #666699 1px solid; 
	text-decoration: none;
}

.h3class {
	padding: 0px;
	margin: 0px;
	font-size: 1.2px;
	font-variant:small-caps;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:bold;
	font-style: normal;
	line-height: 16px; 
}

.boxedtext {
	font-size: 0.9em;
	font-family: Arial, Helvetica, sans-serif; 
	font-style: normal;
}

.listheader {
	font-weight: bold;
	font-style: italic;
	color: #666666;
}

.nobullets {
	list-style: none;
	margin-left: 0;
	padding-left: 1em;
	text-indent: -1em;
}

.indent {
    margin-left: 20px;
}     

/* Styles for conversant forms */
#msg {
   padding-left: 10px;
   padding-top: 20px;
}

#msg h3 {
	font-variant:small-caps;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:bold;	
        font-size: 1.2em;
	color:#A74040;	
	font-style: normal;
	line-height: 16px; 
       text-decoration: none;
}

#logonbox {
    padding: 10px;
    margin: 20px;
    border: 1px #000 solid;
    line-height: 16px;
}

#signupbox {
 	padding: 10px;
	margin: 20px;
        border: 1px #000 solid;
}

#signupform {
    padding-left: 50px;
    line-height: 20px;
}

#loginform {
    padding-left: 50px;
    line-height: 20px;
}

.msgLabelText {
   font-weight: bold;
}


.search {
   padding-left: 20px;
}
  
.searchform {
   margin: 20px;
   border: 1px #000 solid;
}

.boundmessage {
   margin: 20px;
}

.code {
	padding: 10px;		
	font-family: "Courier New", "Arial Narrow", Arial, sans-serif;
}