* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;

}
body, html {
color: #737373; 
font-family: Verdana, Arial, Tahoma, sans-serif;
background-color: #fff; 
text-align: center; /*** Centers the design in old IE versions ***/
}
body {
font-size: 70%;
}
p {padding: 7px 0 7px 0;}

a {
color: #000000;
text-decoration:none;
font-weight:bold;
}
a:hover{
color: #000000;
text-decoration: underline;
}

h1, h2, h3, h4, h5 {
font-weight: bold;
padding-bottom: 5px;
}
h1 {
font-size: 1.4em;
}
h2 {
font-size: 1.1em;
}
h3 {
font-size: 1.0em;
}
h1 a, #header h2{
color: #FFF;
}
.clear { clear: both; }
#mainContainer {
width: 980px;
margin: 0 auto; /*** Centers the design ***/
min-height: 300px;
background: #fff;
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}
* html #mainContainer {
height: 300px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
background-image: url('images/headerbg.jpg');
background-repeat: repeat;
padding: 10px;
color:#fff;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 165px;  
padding-right: 120px;
}
* html .outer {

}
.inner {
width: 815px; /*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
}
* html .inner {
width: 100%;
}
/*** 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: 810px;
margin-left: -165px; /*** Same length as .outer padding-left but with negative value ***/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
/*** 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. 
***/
#content {
float: right;
width: 620px;
background: #FFFFF0;
position: relative; /*** IE needs this  ***/
}
* html #content {

}
.contentWrap {
padding: 5px;
}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 35px;
}
.contentWrap li {
padding-bottom: 2px;
}
/**************************
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: 180px;
background: #fff; 
min-height: 250px;
padding: 5px;
position: relative; /*** IE needs this  ***/
}
* html #left {
height: 250px;
}
#left ul {
list-style: none;
padding-bottom: 4px;
}
#left li {
padding-bottom: 2px;
}
/*************************
RIGHT COLUMN
**************************/
#right {
float: right; 
width: 160px;
background: #fff;
padding: 5px;
min-height: 250px;
position: relative; /*** IE needs this  ***/
}
* html #right {
margin-right: -120px; /*** IE gets this margin. ***/
height: 250px;
}
#right ul {
list-style: none;
padding-bottom: 4px;
}
#right li {
padding-bottom: 2px;
}
/**************************
FOOTER
**************************/
#footer {
width: 980px;
margin: 0 auto;
text-align: center;
background-color: #B11719;
color:#FFFFFF;
}

.box
{
	width:95%;
	border-width:1px;
	border-style:solid;
	border-color:#CCCCCC;
}

h3.titles
{
	padding-top:5px;
	padding-left:5px;
	background-color:#737373;
	color:#FFFFFF;
	height:20px;
	font-size:14px;
}

.menus li
{
	background: url( 'images/dot.gif' );
}

h3.top
{
	padding-top:5px;
	padding-left:5px;
	background-color:#3B3B3B;
	height:20px;
	color:#FFF;
	font-size:14px;
}

h2.middle
{
	background-color:#737373;
	padding:7px;
	height:18px;
	color:#FFFFFF;
}

.price
{
	color:#B11719;
	font-weight:bold;
	font-size:12px;
}

.img
{
	border-color:#CCC;
	border-width:1px;
	border-style:solid;
	margin:2px;
	padding:2px;
}

.fl
{
	float:left;
}

.imagesdiv
{
	float:left;
	text-align:center;
	padding: 10px;
	margin: 2px;
	border-width: 1px;
	border-style: solid;
	border-color: #CCC;
	
}

.detailsimage
{
 padding:5px;
 border-width:1px;
 border-style:dotted;
 border-color: #3FBAE3;
}

.listimage
{
 float:left;
 padding:5px;
 margin-right:5px;
 border-width:1px;
 border-style:dotted;
 border-color: #3FBAE3;
}

.imagediv
{
	float:right;
	border-style:solid;
	border-color:#CCC;
	border-width:1px;
	padding-top:5px;
	text-align:center;
}


.cssform p{
width: 450px;
clear: left;
margin: 0;
padding: 5px 0 8px 0;
padding-left: 155px; /*width of left column containing the label elements*/
border-top: 1px dashed gray;
height: 1%;
}

.cssform label{
font-weight: bold;
float: left;
margin-left: -155px; /*width of left column*/
width: 150px; /*width of labels. Should be smaller than left column (155px) to create some right margin*/
}

.cssform input{ /*width of text boxes. IE6 does not understand this attribute*/

}

.cssform textarea{
width: 250px;
height: 150px;
}

.myinput
{
	border-color:#CCC;
	border-width:1px;
	border-style:solid;
}

.errormsg
{
	color:red;
}


.red
{
	color:red;
}

.categoryname
{
	border-width:0;
}
