/*
CSS-file for three column layout 2006
http://www.savio.no/
Developed by Eivind Savio
*/

* {
padding: 0;
margin: 0;
border: 0;
}

body, html {
height: 100%;
}

body {
font-family: "helvetica", "verdana", sans-serif;
font-size:.8em;
color:rgb(100,0,0);
min-width: 700px; /* Don't work in IE */
}

.clear { clear: both; }
#mainContainer {
min-height: 100%;
min-width:300px;
left:139px;
}

* html #mainContainer {
height: 100%; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
left:139px;
}
/**************************
HEADER
**************************/
#header {
background: #ffffff;
padding: 0;
margin:0;
color:rgb(0,250,0);
border-type:solid;
border-bottom:2px;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 163px; /*** Same width as margin-left for the float-wrap div ***/
padding-right: 115px; /*** Our right column width ***/

}
.inner {
width: 100%;
padding-bottom: 10px; /*** Padding-bottom value is the same value as the total height of the footer ***/

}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
float: left;
width: 100%;
margin-left: -163px; /*** Same length as .outer padding-left but with negative value ***/
}
#content {
float: right;
margin-right: -163px; /*** Same length as .outer padding-left but with negative value ***/
padding-right:5px;
width: 100%;
position: relative; /*** IE needs this  ***/
}
.contentWrap{
padding: 5px;
}

/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
float: left;
width: 144px;
padding: 0px;
position: relative; /*** IE needs this  ***/
}

/*************************
RIGHT COLUMN
**************************/
#right {
float: right; 
width: 110px;
padding: 5px;
position: relative; /*** IE needs this  ***/
top:20px;
margin-right: -115px; /** This negative margin-right value is the same as the right column width (width + padding). ***/
border-color:rgb(150,150,150);
border-style:solid;
border: 2px solid rgb(150,150,150);
border-left:0px;
border-right:0px;

background-color:rgb(245,245,245);
color:rgb(50,50,50);
}

/**************************
FOOTER
**************************/
#footer {
height: 20px; /*** The drawback with this solution is that the height of the footer can't have a flexible height. If you add so much content to the footer that it extends 45px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
margin-top: -21px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
text-align: center;
color: rgb(0,100,0);
background-image:url("footer.gif");
background-repeat:repeat-x;
}

#footer p {
clear: both;
}

p {
margin-bottom:1em;
}

h1 {
font-size:2em;
font-variant:small-caps;
font-family: "Trebuchet MS", sans-serif;
margin-bottom:1em;
}
	
h2 {
font-size:1.25em;
font-weight:bold;
font-family: "Trebuchet MS", sans-serif ;
margin-bottom:1.2em;
}
	
.pullquote {
float:right;
width:160px;
color:rgb(92,92,0);
background-color:rgb(252,252,252);
font-weight:bold;
font-size:1em;
border:solid rgb(92,92,0);
border-width:1px;
border-left:none;
border-right:none;
padding: 3px 2px;
margin:1px 5px 5px 5px;
text-align:center;
}
		
img.left{
float:left;
margin:5px 10px 5px 0px;
border:0;
}

img.right{
float:right;
padding:0px 10px 5px 10px;
border:0;
}
	
img.centered{
display:block; 
margin-left:auto; 
margin-right:auto;
}
		
p.quoteText{
font-weight:bold;
font-size:1em;
}
	
p.quoteAuthor{
font-size:1em;
font-weight:bold;
margin-top:-.6em;
}

.download {
	clear:both;
	}
	
a {
	text-decoration:none;
	}
	
a.download {
	display:block;
	width:88px;
	height:31px;
	background-position:0px 0px;
	background-repeat:no-repeat;
	padding-top:3px;
	margin-right:5px;
	}
	
a.download.msi {
		background-image:url(i2sm_exe.jpg);
		}

a.download.zip {
		background-image:url(i2sm_zip.jpg);
}

a.download:hover {
	background-position:-88px 0px;
}

.download.external{
		margin-top:10px;
		}
		
/* Show only to IE PC \*/
* html .boxhead h2 {height: 1%;} /* For IE 5 PC */

.sidebox {
	margin: 0; /*auto; center for now */
	width: 17em; /* ems so it will grow */
	background: url(redBorderBodyRight.jpg) no-repeat bottom right;
	font-size: 100%;
}
.boxhead {
	background: url(redBorderHeadRight.jpg) no-repeat top right;
	margin: 0;
	padding: 0;
	text-align: center;
}
.boxhead h2 {
	background: url(redBorderHeadLeft.jpg) no-repeat top left;
	margin: 0;
	padding: 10px 5px 5px;
	color: white;
	font-weight: bold; 
	font-size: 1.2em; 
	line-height: 1em;
}

.boxbody {
	background: url(redBorderBodyLeft.jpg) no-repeat bottom left;
	margin: 0;
	padding: .5em .5em .5em;
}

.boxbody img{
float:left;
margin:5px;
border:0;
}

input, textarea{
			
			position:relative;
			size:30;
			border: 2px inset #d7b9c9;
			}
		
submit{
			 padding:1em;
			 }
			 	
td.comment{
		vertical-align:top;
		}	
