/* CSS Document */

/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	color: #333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 17px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	background: #CCC url(images/base/grey060.jpg) repeat fixed;
}
/* Commonly used to style page titles. */
h1 {
	color: #005A8F;
	font-size: 18px;
	font-weight: bold;
	line-height: 20px;
	text-transform: uppercase;
	font-family: Verdana, Geneva, sans-serif;
}
/* Commonly used to style section titles. */
h2 {
	color: #F5750A;
	font-size: 14px;
	font-weight: bold;
	line-height: 18px;
	margin-top: 30px;
	margin-bottom: 10px;
}

h3 {
	color: #0097DA;
	font-size: 12px;
	font-weight: bold;
	line-height: 16px;
	margin-top: 30px;
	margin-bottom: 5px;
}

/* Sets the style for unvisited links. */
a,  a:link {
	color: #0194D7;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #06C;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #88BC50;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #0194D7;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #0097DA;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 800px;
	background: #FFF;
	border-right: thick solid #666;
	border-left: thick solid #666;
}
#header {
	font-size: 18px;
	font-weight: bold;
	line-height: 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(images/base/web_banner.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	width: 800px;
	height: 145px;
	margin: 0px auto;
	padding: 0px 0px;
	border-right: thick solid #666;
	border-left: thick solid #666;
}
#nav {
	width: 800px;
	height: 30px;
	margin: 0px auto;
	padding: 0px 0px;
	border-right: thick solid #666;
	border-left: thick solid #666;
}

#outerWrapper #contentWrapper {
	margin: 0px;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 20px;
	height: auto;
	background: fff;
}

#outerWrapper #contentWrapper #leftColumn1 {
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 175px;
	color: #333;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 0px;
	border-right: 3px solid #CCC;
}

#outerWrapper #contentWrapper #leftColumn1 a{
	font-weight: bold;
	padding-top: 2px;
}

#outerWrapper #contentWrapper #leftColumn1 a:hover{
	font-weight: bold;
}

#outerWrapper #contentWrapper #leftColumn1 a:visited{
	font-weight: bold;
}


/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 200px;
	padding: 10px;
}

#outerWrapper #contentWrapper #onecolcontent {
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 10px;
	padding: 10px;
}

#pantone {
	font-size: 9px;
}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
	clear: left;
	display: block;
}
#outerWrapper #footer {
	padding: 10px 10px 10px 10px;
	color: #FFF;
	text-align: center;
	font-size: 10px;
	background: #666;
	border-top: 1px solid #666;
	font-weight: bold;
}

#footer a {
	color: #FFF;
	text-decoration: underline;
}

/*other*/

.img_left{float:left; margin:0 15px 4px 0;}
.img_right{float:right; margin:0 0 4px 15px;}
.textright{text-align:right;}

.img_left_bdr{
	float:left;
	padding: 10px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 4px;
	margin-left: 15px;
	border: 3px solid #E5E5E5;
	background: #D2D4D3;
}

.img_right_bdr{
	float:right;
	padding: 0px;
	border: 2px solid #E5E5E5;
	background: #D2D4D3;
	margin: 0 0 4px 15px;
}

.img_right_bdr_thick{
	float:right;
	padding: 10px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 4px;
	margin-left: 15px;
	border: 3px solid #E5E5E5;
	background: #D2D4D3;
}


#outerWrapper #contentWrapper #content ul{
	padding:0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 16px;
	margin-left: 20px;
}

#outerWrapper #contentWrapper #content li{
	margin:0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 4px;
	padding-left: 5px;
	list-style-type: disc;
}

#outerWrapper #contentWrapper #leftColumn1 ul{
	padding:0;
	margin-top: 8px;
	margin-right: 0;
	margin-bottom: 16px;
	margin-left: 20px;
}

#outerWrapper #contentWrapper #leftColumn1 li{
	margin:0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 4px;
	padding-left: 5px;
	list-style-type: disc;
}

#outerWrapper #contentWrapper #content th{
	color:#333;
	padding:12px;
	background: #CCC;
	border-top: 1px solid #E0E0E0;
	border-right: 1px solid #E0E0E0;
	border-bottom: 0px solid #E0E0E0;
	border-left: 1px solid #E0E0E0;
}

#outerWrapper #contentWrapper #content td{
	border: 1px solid #E0E0E0;
	padding: 10px;
	vertical-align:top;
	background: #FFF;
}


/* Highlight styles */

.highlight_Green {
	color: #4B882F;
}

.highlight_Gold {
	color: #F78F20;
}

#outerWrapper #contentWrapper #content .blockquote {
	color:#F78F20;
	margin:16px;
	padding:12px;
	background: #F5F5F5 url(img/menubg.gif) repeat-x left bottom;
	border: 2px solid #CCC;
}

#outerWrapper #contentWrapper #content .franchisequote {
	color:#1C1C1C;
	margin:16px;
	padding:12px;
	background-color: #DE9BFF;
	background-image: url(img/menubg.gif);
	background-repeat: repeat-x;
	background-position: left bottom;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #333333;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
}
