@charset "utf-8";

* {
padding: 0px;
margin: 0px;
border-collapse:collapse;
}

h1, h2, h3, h4, h5, h6, h7{
padding: 0 0 3px 0;
}

p {
padding: 0 0 5px 0;
}

/*link under featured image*/
#sidebar1 a:link {color:#000000; text-decoration:none;}
#sidebar1 a:visited {color:#000000;}
#sidebar1 a:focus {color:#000000;}
#sidebar1 a:hover {color:#000000; font-weight:bold;}
#sidebar1 a:active {color:#000000;}

/*this is for the text under the cartoon strip on the index page*/
.smalltext {
font-size:60%; float:right; padding-right:20px;
}



body  {
	background-color: #bb2828; /*puts red on the browser background*/
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
#container { 
	width: 1024px;  
	/*background: #FFFFFF;*/
	background-image:url(../images/webms5_03.gif);
	background-repeat:repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #000000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin:0 auto;
	line-height:1.5;
} 
#header { 
	background-image:url(../images/webms5_01.gif);
	background-repeat:repeat-y;
	height: 168px;
	margin:0 auto;
	width: 1024px;
	
	/*padding: 0 10px 0 20px;   this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
 #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 40px 30px 0 150px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #ffffff;
	letter-spacing: 0.5em;
	font-family:"Times New Roman", Times, serif;
}

#header p {
padding: 5px 0 2px 150px; color: #ffffff; font-weight:bold; font-size: 110%; margin:0;
}


#logoname {width: 600px; float: left; text-align:left;}
#logoname p {letter-spacing:0.10em;}

#bannerad { width: 220px; float: right; padding: 30px 120px 0 0;}

#menu {
width: 400px; float: left; padding: 10px 10px 10px 460px; /*changedFeb 2, margin-left: 460px*/;
}

#menu img {
padding: 0 0 0 15px;
}


#top_gap {
	background-image:url(../images/webms5_02.gif);
	background-repeat:no-repeat;
	height: 34px;
	margin:0 auto;
}

#top_gap p {
padding-left:130px; font-size:80%;
}


#bottom_gap 
{
	background-image:url(../images/webms5_02.gif);
	background-repeat:no-repeat;
	height: 34px;
	margin:0 auto;
}





#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	/* changed Feb 2, margin-left:130px;*/
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	/* background: #EBEBEB; the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 0 5px 130px;
}

.imgborder {
border: 1px solid #333333; padding: 5px; background-color:#FFFFFF;
}

#sidebar1 ul {
	list-style: none;
	margin-left: 0;
	/*padding-left: 1em;
	ext-indent:  1em;*/
	list-style-position:outside;
	}

#sidebar1 li {
	padding-top:5px;
	list-style-type:square;
}

.80percent p{
font-size:80%; padding: 1px 0 5px 0; 
}


#mainContent { 
	float: left;
	width: 540px;
	/*margin: 0 0 0 370px; Changed Feb 2. the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 0 0 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

#image_buttons li {
display:inline;
padding: 0px 20px 0px 0px;
}


/*link under featured image*/
#image_buttons a:link {color:#74156c; text-decoration:none;}
#image_buttons a:visited {color:#74156c;}
#image_buttons a:focus {color:#74156c;}
#image_buttons a:hover {color:#74156c; font-weight:bold;}
#image_buttons a:active {color:#74156c;}


/*the three images at foot of index.php*/
#linkingimage img {border:none; padding: 0 1px;}


.noborder {border:none;}


 #footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	margin:0 auto;
 	background-image: url(../images/webms5_06.gif);
	background-repeat:no-repeat;
	height: 128px;
	float: left;	/* adding this float removed a big red gap between container and footer divs 	in Firefox*/
	width:1024px;
} 
	
	
#footerp {
	margin: 20px 0 0 130px; 
	text-align:left;
	color:#FFFFFF;
	/* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	/* padding: 10px 0; padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}



.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.leftmargin20{
margin-left:20px;
}
/*This adds a left margin on images page to line up everything with the image gallery*/


.indentsquare {
list-style:square; list-style-position:inside;
}

.discountlist {
	list-style:square;
	margin-left: 0;
	list-style-position:inside;
	/*	text-indent:  1em;*/
	}

/*table on rates page*/
#ratetable {border:1px solid #999999;}

#ratetable th {background-color:#bb2828; color:#FFFFFF;}

#ratetable img {padding: 5px;}

.style1 {font-size: 90%}

form {
padding: 5px 5px 5px 5px;
width: 350px;
border: #74156c solid 1px;
}