a:link, a:visited, a:hover, a:active  { color: #00AEEF; text-decoration: underline; }
a:hover 	{ text-decoration: none; }
a:focus 	{ outline: none; }
.error {
	/*display: block;
	float: center;
	margin-left: 20px;*/
	color: #cc0000;
}

body {
	height: 101%;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 15px 0 30px 0;
	color: #333;
	text-align: center;
	background: #c0c0c0;
	font-size: 70%;
	line-height: 130%;
	}
	html { 
	height: 101%;
	}
	
form {display: inline; }
table {font-size: 100%; text-align: left; }

ul { margin: 0; padding: 0; }
li { margin: 0; padding: 0; list-style-type: none; }

h1, h2, h3, h4, h5, h6 {
	color: #00AEEF;
	margin: 0;
	padding: 0;
	}	

h1 {
	color: #00AEEF;
	font-size: 200%;
	font-weight: normal;
	margin: 0 0 0 -1px;
	padding: 7px 0 5px 0;
	line-height: 25px;
	}

h2  { 
	font-size: 120%;
	margin: 10px 0 0 0;
	}

h3 {
	font-size: 130%;
	font-weight: bold;
	margin: 10px 0 20px 0;
	}

.red {
	color: #f00;
	font-size: 180%;
	font-weight: normal;
	}
.blue-chevron {
	color: #0681d7;
	font-weight: bold;
	}	

h4 { /* used on the footer */
	font-size: 100%;
	color: #444;
	font-weight: bold;
	margin: 15px 0 5px 0;
	}
	
.small-text {
	font-size:9px;
}

/*-----------------------------------------------------------------------------------------*/
.form-tick-box {

	}
.form-text-input {
	font-size: 100%;
	color: #333;
	margin: 3px 0;
	}
/*-----------------------------------------------------------------------------------------*/

.outside-container {
	width: 860px;
	margin: 0 auto 0 auto;
	background: #fff url(../images/site-bg.jpg) no-repeat ;
	border: 1px solid #aaa;
	}

.header-container {
	width: 100%;
	}

.cji-logo {
	float: left;
	padding: 25px 20px 15px 25px;
	}
.cj-logo {
	float: right;
	padding: 15px 20px;
	}
	
.navigation-container {
	background: #a5a5a5 url(../images/menu-bg.jpg) repeat-x bottom left;
	border-top: 1px solid #555;
	border-bottom: 1px solid #333;
	}

ul.menu-bar {
	list-style:none;
	height: 27px;
	}
	ul.menu-bar li { 
		padding: 5px 5px 0 25px;
		float: left
		}
	ul.menu-bar a, ul.menu-bar a:visited, ul.menu-bar a:hover {
		color: #fff;
		text-decoration: none;
		font-weight: normal;
		}
	ul.menu-bar a:hover {
		text-decoration: underline;
		}
		
/* -------------------- MOUSEOVER MENU --------------------------------*/

div#listmenu {
	width: 100%;
	height:27px;
	background: #a5a5a5 url(../images/menu-bg.jpg) repeat-x bottom left;
	border-top: 1px solid #555;
	border-bottom: 1px solid #333;
	z-index: 5;
	}

div#listmenu ul {
	list-style:none;
	margin: 5px 0 0 20px; 
	}
	
div#listmenu li {
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;
	text-align: center;
	color:#FFFFFF;
	}
 
div#listmenu li:hover { 
	background-image:url(../site_pics/menu_bg_tile.jpg);
	}

div#listmenu a {
	display:block;
	padding:0px 36.5px 0 0; /*creates space each side of menu item's text <-------------------------Space Between Menu Items--------------------*/
	text-decoration:none;	 /* removes the underlining of the link */
	color:#FFF;	/* sets the type color */
	}
	
div#listmenu a:hover {
	color:#fff;
	text-decoration: underline;
	}

/* the menu ends here */
/* the drop-down starts here */

div#listmenu ul li ul {
	padding: 7px 0 0 0; 
	margin: 0;
	z-index:10; /* puts drop-down on top of div - Safari needs this as menu is 1px higher */
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:150px; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	border-right:0; /* stops SCBs drops having two right borders - they inherit the border, IE doesn't */
	left:-1px; /*aligns the drop exactly under the menu */
	
	}
	
div#listmenu ul li ul li {
	width:100%; /* makes the list items fill the list container (ul) */
	border-bottom:1px solid #FFF;
	background:  #4e4e4e;
	text-align: left;
	line-height: 21px;
	}
	div#listmenu ul li ul li a:hover {
		text-decoration: underline;
		background: #aaa;
		color: #000;
		}

div#listmenu ul li ul li a {
	padding:1px .5em;
	}
	
div#listmenu ul li ul li:first-child {
	}

/* make the drop-down display as the menu is rolled over */
div#listmenu ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#listmenu ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */
 
/* pop-out starts here */
body div#listmenu ul li ul li ul  {
	position:absolute; 
	visibility:hidden; /* same effect as display:none in this situation */
	top:10px;
	left:10em;	
	}
	
div#listmenu ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */
 
/* second level popouts start here*/
div#listmenu ul li ul li:hover ul li ul {visibility:hidden;}
div#listmenu ul li ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */
 
/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#listmenu ul {
	float:left; /* makes the ul wrap the li's */
	margin-left:15px; /* IE doubles the given value above - why? */
	}
 
/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html  div#listmenu ul li ul {
	border-left:0px; /* stops the drop inheriting the ul border */
	}
	
/* the Tantek hack to feed IE Win 5.5-5.0 a lower value to get the pop-out to touch the drop-down */
* html  div#listmenu ul li ul li ul { 
  	left:9.85em; 
  	voice-family: "\"}\""; 
  	voice-family:inherit;
  	left:10em;
	} 
 
/* and the "be nice to Opera" rule */
html>body div#listmenu ul li ul li ul {
  	left:10em;
	} 
 
/* an Opera-only hack to fix a redraw problem by invisibly extending the ul */
/* the first-level drop stays open for 100px below the bottom but at least it works */
/* this can be reduced to as little as 22px if you don't have pop-outs */
/* the pop-out menu stays open for 22px below the bottom but at least it works */
	@media all and (min-width: 0px){
   body div#listmenu ul li ul {padding-bottom:100px;}
   body div#listmenu ul li ul li ul {padding-bottom:22px;}
   ul li ul li ul li ul li:hover {visibility:visible;} /* same effect as display:block in this situation */
 
}
/*end Opera hack */
/* END OF HACK ZONE */
/* the drop-down ends here */
/* END OF LIST-BASED MENU */

/* -----------------------------------------------------------------------*/
		
.content-column {
	width: 77%;
	float: left;
	text-align: left;
	padding: 15px 0 20px 25px;
	}
	
.content-column-salaries {
	width: 77%;
	float: left;
	text-align: left;
	padding: 15px 0 20px 25px;
	background:url(../images/salaries-bg.jpg) top right no-repeat;
	}

.picture-column {
	width: 18%;
	float: right;
	padding: 25px 0;
	}
	.picture-column img {
		border: 1px solid #777;
		margin: 0 0 15px 0;
		}
	
.home-page-table {
	width: 80%;
	margin: 5px 0 0px 0;
	}
	.home-page-table td {
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
		padding: 2px 3px 2px 8px;
		}
		#green-bg {
			background-color:#a5cc3a;
			}
	.home-page-table td.home-page-table-column-one {
		width: 50%;
		background: #ddd;
		
		}
	.home-page-table td.home-page-table-column-two {
		width: 25%;
		background: #bbb;
		}
	.home-page-table td.home-page-table-column-three {
		width: 25%;
		background: #13b7f4;
		}
			
ul.bullet-list {
	list-style: none;
	padding: 0 0 0 20px ;
	}
	ul.bullet-list li { 
		background: url(../images/tick.png) 0px 0px no-repeat;
		padding: 0 0 6px 20px;
		line-height: 15px;
		}
	ul.bullet-list a, ul.bullet-list a:visited {
		font-weight: normal; text-decoration: underline; color: #333333; font-size: 100%;
		}
	ul.bullet-list a:hover {
		text-decoration: none;
		}
		
#green-bullet li { background: url(../images/green-arrow.png) 0px 0px no-repeat; }
#blue-bullet li { background: url(../images/blue-arrow.gif) 0px 3px no-repeat; }

.how-it-works-table {
	width: 100%;
	}
	.how-it-works-table td {
		border-bottom: 1px solid #00AEEF;
		padding: 10px 0 5px 0;
		}
	.how-it-works-table td img {
		padding: 0 30px 0 0;
		}

.button {
	float: left;
	padding: 15px 10px 5px 0;
	}
	
.text-buttons {
	float: left;
	padding: 25px 10px 10px 0;
	}
	
.download-button {
	padding: 0px 20px 0 0;
	}	
	
.purchase-table	{
	width: 97%;
	margin: 0 0 10px 0;
	}
	.purchase-table	td {
		vertical-align: top;
		border-bottom: 1px solid #ddd;
		padding: 7px 0;
		}
	.purchase-table	td.total {
		background: #f8f8f8;
		}
#no-border td { border: none; }	

.download-link {
	background: url(../images/arrow-icon.png) 0px 0px no-repeat;
	height: 25px;
	padding: 3px 0 0 27px;
	margin: 0px 6px;
	}

.notice-yellow {
	padding: 3px 10px 3px 30px;
	line-height: 18px;
	border: 1px solid #cccccc;
	margin: 10px 0 10px 0;
	background: url(../images/error-icon.png) 5px 3px no-repeat #eee;
}

.table-general {
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	margin: 0;
	padding:0;
}

/*----------------- FOOTER --------------------- */

.footer-container {
	width: 860px;
	margin: 0 auto;
	background: #d5d5d5;
	}
.footer-links-column {
	float: left;
	width: 70%;
	text-align: left;
	padding: 15px;
	color: #444;
	}
.footer-picture-column {
	float: right;
	width: 16%;
	margin: 15px;
	}
	.footer-picture-column img {
		padding: 0 0 10px 0;
		}

ul.footer-links {
	list-style:none;
	}
	ul.footer-links li { 
		padding: 0 10px 0 10px;
		float: left;
		border-right: 1px solid #333;
		line-height: 12px;
		color: #444;
		}
	ul.footer-links a, ul.footer-links a:visited, ul.footer-links a:hover {
		color: #444;
		text-decoration: none;
		font-weight: normal;
		}
	ul.footer-links a:hover {
		text-decoration: underline;
		}
	ul.footer-links li.footer-first-link { 
		padding-left: 0;
		}
	ul.footer-links li.footer-last-link { 
		border-right: 0;
		}
		
		
/*-------------------------------- T&C's POPUP ---------------------------------------------------------*/

#backgroundPopup {
	display:none;
	position:fixed;
	_position:absolute; /* hack for internet explorer 6*/
	height:100%;
	width:100%;
	top:0;
	left:0;
	background:#000000;
	border:1px solid #cecece;
	z-index:6;
	width: 3000px;
	}
	
#popupContact {
	display:none;
	position:fixed;
	_position:absolute; /* hack for internet explorer 6*/
	height:535px;
	width:708px;
	background:#222;
	border:2px solid #cecece;
	z-index:7;
	padding: 5px 12px 5px 12px;
	overflow: scroll;
	overflow-x: hidden;
	text-align: left;
	color: #fff;
	}

#popupContactClose {
	background: url(../images/cross-greyy.png) no-repeat 41px 1px;
	}

.close-right {
	right:8px;
	top:6px;
	position:absolute;
	}
	
.cross-padding { padding: 0 15px 0 0; }

/*---------------------- submit button ----------------------------------*/

.submit { display: block; position: relative; padding: 3px 0; float: left; color: #fff; text-decoration: none; cursor: pointer; border: 1px solid #bbb; width: 190px; margin: 10px 10px 0 0; }
.submit.blue { background: #039ede; color: #fff;  text-decoration: none;}
.submit.green { background: #77b113; color: #fff;  text-decoration: none;}
.submit.maroon { background: #f00; color: #fff;  text-decoration: none;}

.submit:hover { background-color: #024b6a; color: #fff;}
.submit.green:hover { background-color: #499003; color: #fff;}
.submit.maroon:hover { background-color: #b20101; color: #fff;}

.submit:active { background-color: #012839;}
.submit[class] {  background-image: url(../images/shade.png); background-position: bottom; }

.btn {padding: 2px 5px;  color: #fff; text-decoration: none; cursor: pointer; border: 1px solid #bbb; float: left; }

.btn[class] {  background-image: url(../images/shade.png); background-position: bottom; }


/*--------------------- SLIDING MENU -----------------------*/

ul.menu, ul.menu ul {
	list-style-type:none;
	margin: 0px 0 15px 0;
	padding: 5px 0 0 0;
	width: 100%;
	}

ul.menu a { text-decoration: none;	}
ul.menu a:hover { text-decoration: underline;  }

ul.menu li { 
	background: url(../images/bullet-green.png) 0px 1px no-repeat; 
	padding: 1px 0 0 0;
	font-size: 100%;
	}

ul.menu ul li { background: none; padding: 10px 0 0 0;}

[disabled] 
{ background-color:#7e7e7e; }
/*-----------------------------------------------------------------------------------------*/	
