@charset "iso-8859-1";


body
{
	margin: 0;
	padding: 0;		
	font-family: arial, helvetica, sans-serif;
font-size: 62.5%; 
}

#pageWrapper
{
	width: 800px;
	margin: 0px auto .50em auto;
}

#masthead-top-menu
{
	text-align: right;
	padding: 0 10px 0 0;
}


#masthead
{
	height: 183px;
}

#masthead-footer
{
	height: 3px;
	background-color: #ffffff;
}


#masthead h1
{
	display: inline;	/* personal preference to keep the header 
				   inline. you could just as easily change 
				   padding and margins to 0. */
}
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide, #oldBrowserNotice
{
					/* hide elements that CSS-targeted browsers shouldn't show */
	display: none !important;
}



#outerColumnContainer
{
	z-index: 1;
	border-color: #fff;	/* set default color to white. set the real
				   color inside colors.css */
	border-style: solid;
				/* sets the width of the borders used to create
				   the left and right columns' background 
				   color. */
	border-top-width: 0;
	border-bottom-width: 0;
				/* need to remove the LEFT & RIGHT borders so we can apply
				   background images. - see image & colour css */
	border-left-width: 153px;
	border-right-width: 0px;


}
#innerColumnContainer
{
	z-index: 2;
	width: 100%;
}
* html #innerColumnContainer
{
	position: relative;	/* fix a render bug in IE under certain
				   conditions */
}
#contentColumn
{
	margin: 0 -1px;		/* without this, boxes stop floating next to*/ 
				   /*each other */
	width: 100%;
}
#leftColumn, #rightColumn, #contentColumn
{
	float: left;
	position: relative;	/* IE has a display/render bug with non-floated */
				   /*block elements inside floated block elements. */
				   /*setting position:relative on the floating */
				   /*element seems to resolve this. */
	z-index: 10;
	overflow: visible;	/* fix for IE italics bug */
	padding-top: 0.5em;
	padding-bottom: 0.5em;	/* this is the vert padding talked about in the */
				   /* previous selector. */
}
#rightColumn
{
	float: right;		/* floating this right allows for the right
				   column block to appear before the content
				   column in the flow of the document. doing
				   this allows for any easy 3 column layout
				   in NN4.

				   There is certainly a lot, in terms of layout
				   'theory' about how the flow of the document
				   should be. I won't get into it here. */
	width: 0px;
	margin: 0 0 0 1px;	/* same as in the #leftColumn selector up 
				   above. */
}
#leftColumn
{
	width: 153px;
	margin: 0 1px 0 -153px;	/* like in the #contentColumn selector, without
				   the 1px margin on the opposite side of the 
				   box, boxes stop floating next to each 
				   other */
}


#left-bottom
{
	position: relative;
bottom: 0px;
margin: 0 0px 0 19px;
padding: 0 0 0 0px;
}


.leftColumnTable
{
margin: 0em -20px 0em 20px;
padding: 0 0 0 0px;
}


#footer-top
{
	text-align: center;
	position: relative;
	height: 30px;
	padding: 0;
}

#footer-middle
{
    margin-left: auto;
    margin-right: auto;
	text-align: center;
	position: relative;
	padding: 0em;
}

#footer-bottom
{
	text-align: center;
	position: relative;
	height: 14px;
	padding: 0;
}
html>body #footer-bottom
{
	padding-bottom: 0.01em;	/* this is to fix a bug in mozilla that results
				   in a 1px line of white below the footer when
				   the document gets very long. extremely long
				   documents may generate the bug again. if
				   you experience that, increasing this value
				   may help. i think this is related to moz's
				   off-by-one troubles as the bug does not
				   occur in any other browser */
}

.inside
{
	padding: 0 1.5em;	/* this padding is applied to every major box 
				   within the layout for a uniform gutter 
				   between borders 

				   _NOTE_: a small glitch in IE seems to appear
				   if this class has vertical padding applied
				   to it. so in cases where you want to add 
				   vert padding, use the parent element. margin
				   values here don't work because .inside has
				   a key role in border generation */
}

.inside-left
{
	padding: 0 0 0 15px;	/* this padding is applied to every major box 
				   within the layout for a uniform gutter 
				   between borders 

				   _NOTE_: a small glitch in IE seems to appear
				   if this class has vertical padding applied
				   to it. so in cases where you want to add 
				   vert padding, use the parent element. margin
				   values here don't work because .inside has
				   a key role in border generation */
}

.inside-right
{
	padding: 0 15px 0 8px;	
}





#content-display-left{
float: left;
	position: relative;
	margin: 0 -1px 0 0;
	width: 337px;}

#content-display-right{
float: right;
	position: relative;
	margin: 0 0 0 1px;
width: 287px;
}


.next-size{
	font-size: 1.1em;

}



.firstnav
{
	text-align: right;
}
.firstnav, .firstnav ul li a
{
	/* need to SET veritcal padding on .hnav and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .hnav to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .hnav _looks_ like its containing the child anchor
	 * elements. 
	 */
	padding-top: 1px;
	padding-bottom: 1px;
}
.firstnav ul, .firstnav ul li
{
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.firstnav ul li a
{
	margin: 0 -1px 0 0;
	padding-left: 2px;
	padding-right: 2px;	/* short-hand padding attribute would overwrite top/bottom padding set in a previous rule */
	border-left: solid 0px #C1C9CC;
	border-right: solid 0px #C1C9CC;
	white-space: nowrap;
}
.firstnav ul li a:link, .firstnav ul li a:visited, .firstnav ul li a:active, .firstnav ul li a:hover
{
	text-decoration: none;
}

* html .firstnav, * html .firstnav ul a
{
	/* \*/ height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win. IE/Mac will ignore this rule. */
}


.hnav
{
	text-align: center;
}
.hnav, .hnav ul li a
{
	/* need to middor veritcal padding on .hnav and child anchor elements
	 * because the anchors are _not_ block elements. since they are not
	 * block elements web browsers will not expand .hnav to contain them
	 * even with the extra padding. by applying the same padding to both
	 * the parent .hnav _looks_ like its containing the child anchor
	 * elements. 
	 */
	padding-top: 3px;
	padding-bottom: 4px;
}
.hnav ul, .hnav ul li
{
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.hnav ul li a
{
	margin: 0 -1px 0 0;
	padding-left: 10px;
	padding-right: 10px;	/* short-hand padding attribute would overwrite
				   top/bottom padding set in a previous rule */
	border-left: solid 1px #000;
	border-right: solid 1px #000;
	white-space: nowrap;
}
.hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active, .hnav ul li a:hover
{
	text-decoration: none;
}
.hnav ul li span.divider
{
	display: none;
}

* html .hnav, * html .hnav ul a
{
	/* \*/ height: 0.01%; /* hasLayout hack to fix render bugs in IE/Win. 
				 IE/Mac will ignore this rule. */
}



.vnav
{
	margin: 1em 0;
}

.vnav ul, .vnav ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
}
.vnav ul
{
	border: solid 1px #000;
	border-bottom-width: 0;
}
.vnav ul li
{
	border-bottom: solid 1px #000;
}
.vnav ul li a
{
	display: block;
	text-decoration: none;
	padding: 2px 10px;
}


* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 1%;
}
* html .vnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}


div.colorPicker a
{
	display: block;
	width: 12px;
	height: 12px;
	margin: 0 5px;
	float: left;
	padding: 0;
	line-height: 0;
	font-size: 0;
	background-color: #dc8;	/* default color picker */
}

/* style-switcher will use anchors converted to block elements with no
 * content. set the background-color property to whatever value that particular
 * swatch should be
 */
a#colorPicker-blue
{
	background-color: #abe;
}
a#colorPicker-green
{
	background-color: #aca;
}
a#colorPicker-camille
{
	background-color: #e77;
}
a#colorPicker-gray
{
	background-color: #ccc;
}
a#colorPicker-black
{
	background-color: #000;
}

p, h1, h2, h3, h4, h5, h6
{
	margin: 1em 0;		/* specifically define this for Opera's sake,
				   and also for better consistency across 
				   all platforms  */
}

/*
	Time to try and get all the heading elements to the same size 
	regardless of browser. (IE seems to put them a big bigger
	than Mozilla, typically.)
*/
h1
{
	font-size: 210%;
}
h2
{
	font-size: 180%;
}
h3
{
	font-size: 140%;
}
h4
{
	font-size: 126%;
}
h5
{
	font-size: 110%;
}
h6
{
	font-size: 100%;
}

table
{
	font-size: 100%;
}

a.claim1:link, a.claim1:visited {
	display: block;
	background: url(../cj-images/double-footers-start-a-claim.jpg) no-repeat;
	vertical-align: middle;
	font-size: 11px;
	font-weight: bold;
	color: #333333;
	text-align: left;
	padding-top: 0px;
	padding-left: 0px;
	height: 123px !important;
	height: 123px;
	width: 195px;
	text-decoration: none;
}

a.claim1:hover {
	background-position: 0px -123px;
	text-decoration: none;
	color: #3C758A;
}


/******************************************************************************/