/* CSS Document */
/* General styles */
body {
	margin:0px auto;
	padding:0;
	border:0;		/* This removes the border around the viewport in old versions of IE */
	width:1024px;
	font-family:Georgia, serif;
	font-style: normal;
	font-size:1em;  /* font size rendered default for most browsers is 16pt */
	background-image: url("http://www.varanos.com/images/background.jpg"); 	/* body background image */
  background-position : center top;
  background-repeat : repeat-y;
  background-color : black;
}
.small {
  font-size:0.8em;
  font-weight:bold;
}
.big {
  font-size:1.05em;
  font-weight:bold;
}
.bigger {
  font-size:1.1em;
  font-weight:bold;
}
.biggest {
  font-size:1.3em;
  font-weight:bolder;
}
b.menu {
  color:white;
  text-decoration:none;
}
a {
  color:blue;      /* link color */
  text-decoration:none;
}
a.menu {
  color:white;      /* link color */
  text-decoration:none;
}
a:hover {
  color:;  /* mouse hover over link color */
  text-decoration:underline;
}
a img {
  border: 0;
}
a:hover img {
  border: 0;
}
a:visited img {
  border: 0;
}
h1, h2, h3 {
	margin:.8em 0 .2em 0;
	padding:0;
}
p {
	margin:.4em 0 .8em 0;
	padding:0;
}
img {
	margin:0px 0 0px;
	}
/* Universal page header */
#universalheader {
	clear:both;
	width:1024px;
	height:143px;
	background:black;
	margin:0px auto;
	padding:0;
}
/* 'widths' sub menu */
#layoutdims {
	clear:both;
	background:black;
	margin:0px auto;
	padding:6px 15px !important;
	text-align:right;
}
/* column container */
.colmask {
	margin:0px auto;
  position:relative;		/* This fixes the IE7 overflow hidden bug */
  clear:both;
	float:left; 
	width:100%;			/* width of whole page */
	overflow:hidden;	/* This chops off any overhanging divs */
}
/* common column settings */
.colright,
.colmid,
.colleft {
	float:left;
	margin:0px auto;
  width:100%;				/* width of page */
	position:relative;
	text-align:center;
}
.col1 {
	float:left;
	margin:0px auto;
  position:relative;
	padding:0 0 1em 0;	/* no left and right padding on columns, we just make them narrower instead 
    				only padding top and bottom is included here, make it whatever value you need */
	overflow:hidden;
}
.col2 {
	float:left;
	margin:0px auto;
  text-align:left;
	position:relative;
	padding:0 0 1em 0;	/* no left and right padding on columns, we just make them narrower instead 
			        only padding top and bottom is included here, make it whatever value you need */
  overflow:hidden;
  color:white;
}
.col3 {
	float:left;
	margin:0px auto;
	text-align: left;
	position:relative;
	padding:0 0 1em 0;	/* no left and right padding on columns, we just make them narrower instead 
			        only padding top and bottom is included here, make it whatever value you need */
	overflow:hidden;
	color:black;
}
/* 3 Column settings */
.threecol {
	background: url("http://www.varanos.com/images/rightbackground.jpg");	/* right column background colour */
  margin:0px auto;
}
.threecol .colmid {
	right:20%;				/* width of the right column */
	background: white; /* center column background colour */
}
.threecol .colleft {
	right:55%;				/* width of the middle column */
	background: url("http://www.varanos.com/images/corkbackground.png");	/* left column background colour */
}
.threecol .col1 {
	width:53%;				/* width of center column content (column width minus padding on either side) */
	left:101%;				/* 100% plus left padding of center column */
 }
.threecol .col2 {
	width:25%;				/* Width of left column content (column width minus padding on either side) */
	left:22%;				/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
}
.threecol .col3 {
	width:18%;				/* Width of right column content (column width minus padding on either side) */
	left:78%;				/* Please make note of the brackets here:
						(100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
 }

/* CSS Document */