/* This style sheet was written by Community MX and was distributed freely for use with the free North Pole CSS positioning template.
The North Pole template is freely available from http://www.communitymx.com - This comment should remain intact though you are free to edit the style sheet as you see fit. */

body { /* set everything to zero for a good cross-browser starting point */
	margin: 0; /* zeroes the margins on the body */
	padding: 0; /* zeroes the padding on the body ~ Opera carries a default padding and requires this zeroing */
	border: 0; /* sets the body background colour */
	color: #000;  /* set the default text color */
	text-align: center; /* Hack to centre the wrapper in IE5.x pc */
	font-family: "Trebuchet", Verdana, Arial, Helvetica, sans-serif; /* set the default fonts */
	font-size: 12pt; /* Sets default font size. This odd value compensates for several browser bugs. First, setting a default font size in percent (instead of em) eliminates an IE/Win problem with growing or shrinking fonts out of proportion if they are later set in ems in other elements. Additionally, some versions of Opera will draw a default font-size of 100% too small compared to other browsers. Safari, on the other hand, has a problem with a font-size of 101%. Current "best" suggestion is to use the 100.01% value for this property */
	min-width: 770px; /* Prevents the body becoming narrower than our wrapper div - keeps the content from disappearing off the left edge with Gecko browsers */
	background-image: url(../images/shrimp-bg.jpg);
	background-repeat: repeat;
	
}


/**************************/
/* skip link is positioned off the screen, but still allows screen readers to see it */
#skiplinks {
	position: absolute;
  	margin-left: -1000px;
}
#wrapper {
	width: 770px;/*sets the width for IE5.x's broken box model*/
	w\idth: 770px; /* sets the width of the wrapper for compliant browsers*/
	margin: 0px auto;/* centers the wrapper. First value - 5px is applied to the top and bottom margins, auto sets the excess space on the view port evenly to the left and right*/
	position: relative; /* important to position it relatively */
	background-image: url(../images/body-bg.jpg); /* sets the path to the wrapper's bg image*/
	background-repeat: repeat-x; /* prevents the image from tiling in our page, we do not want this image to repeat */
	background-color: #FFFFFF; /* sets the wrappers background color */
	border: 2px solid #000; /* sets a border to all 4 sides */
	text-align: left; /* Realigns the text to the left after the IE hack in the body rule */
	background-position: 0 209px;
	
}

#banner {
	position: relative; /* **PLEASE READ** ~ This property and value is not needed for your page to be rendered corectly in the browser - However, without it Dreamweaver allows the position of the leftcol div to ride up over the banner in design view. If that does not bother you you can safely delete this property and value pair. Alternatively you could implement a design time style sheet to position the div correctly for working in design view */
	background-image: url(../images/header_1.29.07.jpg);  /* sets the background image for the banner div*/
	background-repeat: no-repeat; /* prevents the bg image from repeating */
	height: 209px;/* set a height for the banner to allow all the bg image to be seen, no text resizing in this element to worry about */
	background-position: top;
	overflow: hidden;
	
}

#content { /* Begin laying out and styling the content div */
	width: 575px; /* sets the width of our content*/
	margin: 0 10px 0 180px; /* this left margin clears the leftcol div and allows our content div to become a second column */
	/*margin-bottom: 120px;  sets a padding clearance on the bottom of the div*/
	padding: 1px;
	
}

#content p {
	font-size: 80%; /* set the font size for p, scaled from the body declaration */
	margin: 10px 6px 10px 6px; /* set the margins for the p element */
	padding: 0; /* zero off the padding */
}

#content li {
	font-size: 80%; /* set the font size for p, scaled from the body declaration */
	margin: 0 6px 0px 6px; /* set the margins for the p element */
	padding: 0; /* zero off the padding */
}

.titleimages { /* used to set the "cold" title images */
	display: block; /* set to display block to ensure it has it's own line in the design */
	margin-top: 25px; /* set a margin to the top */
}

#leftcol { /* Begin laying out the leftcol div */
	float: left; /* Floats the div to the left to make a column */
	width: 171px; /* sets a width for the div - Imperative for IE mac */
	/*margin-left: 7px; creates a margin on the left to move the div away from the wrapper's edge */
	/*margin-top: 25px;  moves the div down from the banner */
	/*background-image: url(../images/body-bg.jpg); /* sets the path to the bg image 
	background-repeat: repeat-x;  prevents the bg image from repeating, no need to position it as top left is the default and that is where we want the image to show */
	/*padding-top: 35px;  sets a padding to the top of the div to allow the bg image to show above the leftcol divs contents */
	
	background-position: top;
	list-style-image: none;
	list-style-type: none;
	margin: 0px;	

}

#leftcol #navigation {
	line-height: 100%; /* helps out IE 5.01 PC */
	width: 170px; /* sets a width for the div */
	/*background-image: url(../DemoImages/icicles.gif);  sets the path to the bg image */
	/*background-repeat: no-repeat;  prevents the bg image from repeating */
	/*background-position: bottom left; uses keywords to place the image at the bottom left of the div */
	 /*padding-bottom: 100px; gives our background image room to display */
}

#leftcol #navigation ul {
	list-style-image: none;	/*background-image: url(../images/nav-bg-oval-board.gif);	*/
	list-style-type: none;
	margin: 0 0 0 20px;
	padding: 0;
}

/*#leftcol #navigation ul li { /*The 3 margin property/value pairs are a hack to make the links butt together in IE 5.01 */
	/*padding: 0;  zeroes off the padding */
	/*margin: 0 0 8px 0;  zeroes off the margins */
	/*ma\rgin: 0;  IE 5.01 and IE5.5 cannot read this selector - resets the margins on other browsers back to zero - the escape character must not come immediately before the letters a,b,c,d,e or f. If it does it will be seen as a hex character and the hack will fail */
	/*background-image: url(../images/nav-bg-oval-board.gif);  sets the image for the roll over */
	/*list-style-image: none;
	height: 52px;
	background-repeat: no-repeat;
	width: 150px;
}*/


/*#leftcol #navigation a {  use dual selectors if the properties and values are the same for each */
	/*color: #000;  changes the default text colour to white */
	/*padding: 17px 0 16px 45px;  sets padding values to give the link text some "air" */
	/*text-decoration: none;  removes the default underline */
	/*width: 100px;  sets the width for IE5.x - content width plus border widths plus padding value = 6 extra pixels */
	/*w\idth: 100px;  resets the width for IE6 and compliant browsers */
	/*display: block;  required to make the links act like a button, having the full area "clickable" */
	/*font-family: "Andy", "Trebuchet MS", Verdana, Arial;
	font-size: 16pt;
	background-image: url(../images/little_palm.gif);
	background-repeat: no-repeat;
	background-position: 12px center;
}*/

/* using the \ escape character as in w\idth - see final property declaration in the selector above */
/* IE 5.01 and IE5.5 cannot read this selector. The escape character must not come immediately before the letters a,b,c,d,e or f. If it does it will be seen as a hex character and the hack will fail */

/*#leftcol #navigation a:hover, 
#leftcol #navigation a:focus {  use dual selectors if the properties and values are the same for each */
	/*color: #005E00;  changes the hover and focus text to green 
	background-image: url(../images/little-shrimp.gif);
	background-position: 11px 10px;
	background-repeat: no-repeat;
	font-weight: bolder;
	letter-spacing: 1px;
}*/

.right-box-top {
	float:right;
	margin:0 0 0 10px;
	padding:8px 5px;
	clear: right;
	background-image: url(../images/testimonial-box-top.gif);
	height: 24px;
	width: 143px;
	background-repeat: no-repeat;
	}
	
.right-box {
	float:right;
	margin:-16px 0 0 10px;
	padding:8px 5px;
	clear: right;
	background-image: url(../images/testimonial-box-middle.gif);
	width: 143px;
	background-repeat: repeat-y;
	font-size: small;
	}
	
.right-box p {
	color: #333333;
	width: 120px;
	clear: right;
}
	
.right-box-bottom {
	float:right;
	margin:0 0 10px 10px;
	padding:8px 5px;
	clear: right;
	background-image: url(../images/testimonial-box-bottom.gif);
	width: 143px;
	height:19px;
	background-repeat: no-repeat;
	}
#right-box-wrapper {
	float:right;
	clear: right;
	width: 150px;
	margin-left: 10px;
}
#footer {  /* Begin laying out and styling the footer div */
	width: 770px;  /*Sets the footers width*/
	border-top: 2px solid #000000;  /*sets the top border to define the beginning of the footer*/
	font-size: 60%;  /* sets the footer text size */
	text-align: right;  /* aligns the text to the right*/
	margin-top: 20px;   /*Adds a margin to the top of the footer*/
	clear: left;  /*clears any floats to the left - our leftcol div in this instance*/
	background-image: url(../images/footer-bg.jpg);
	background-repeat: repeat;
}

#footer p {
	padding: 4px 4px 4px 10px;  /* sets the padding values*/
	margin: 0;  /*zeroes off the margins */
	color: #FFFFFF;
	font-size: 10pt;
}

#footer ul{
margin: 0;/*zeroes off the margins*/
padding: 4px;/*add some air around the links*/
}

#footer li{
display: inline;/*set the list to display inline*/
}

#footer a {  /* Styles the links within the footer */
	color: #fff;  /*sets the text to white*/
	text-decoration: none;  /*keeps the underline*/
	font-weight: bold;
}

#footer a:hover,
#footer a:focus {
text-decoration: underline;  /*removes the underline*/
}
h1 {
	font-family: "Trebuchet MS", Verdana, sans-serif;
	font-size: 21pt;
	color: #990000;
	margin-left: 5px;
	text-decoration: none;
}
h2 {
	font-size: 18pt;
	color: #000;
	font-family: "Trebuchet MS", Verdana, sans-serif;
	margin-left: 15px;
}
h3 {
	font-size: 120%;
	color: #B8A008;
	margin-left: 15px;
}
h4 {
	font-size: 100%;
	color: #045FF4;
	margin-left: 15px;
}
img {
	margin: 10px;
}

.smalltext {
font-size: 75%;
}

