@charset "UTF-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	margin: 0;
	padding: 0;
	
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
h1, h2, h3, h4, h5, h6{
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	color: #27abea;
}
h1 { font-size:20px; }
h2 { font-size:16px; }
h3 { font-size:14px; }
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	text-decoration: none;
	color: #009dd6;
}
a:visited {
	text-decoration: none;
	color: #009dd6;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: none;
}
#content h1 {
	font-size: 18px;
	color: #27abea;
}
#content h2 {
	font-size: 16px;
	color: #27abea;
}
#content h3 {
	font-size: 14px;
	color: #27abea;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 80%;
	max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}

/* ~~the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo~~ */
.header {
	background:none;
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.content {
	padding: 10px 0;
	background-image: url(images/contentbk.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	min-height:432px;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

.sidebar1 {
	float: left;
	width: 25%;
	background: none;
	padding-bottom: 10px;
}
.contentno-padding {

	padding: 0;
	width: 75%;
	float: left;
	
}

.content-secondary {

	padding: 40;
	width: 65%;
	float: left;
	min-height:500px;
}

.content-center {

	padding: 40;
	width: 50%;
	float: left;
	min-height:500px;
}


/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	background: #ffffff;
}
.footer {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #999999;
	margin: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	line-height: 20px;
	clear:both;
	text-align: center;
}

.footer a {
	color: #999999;
	text-decoration: none;	
}

.footer a:hover {
	color: #999999;
	text-decoration: none;
	padding-bottom: 4px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #cccccc;
	
}

/* ~~ miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

#suckerfishnavtop {
    background:#ffffff repeat-x;
    font-size:11px;
    font-family:verdana,sans-serif;
    font-weight:normal;
  
    }
#suckerfishnavtop, #suckerfishnavtop ul {
    float:left;
    list-style:none;
    line-height:20px;
    padding:0;
    border:0px solid #none;
    margin:0;
    width:100%;
	
    }
#suckerfishnavtop a {
    display:block;
    color:#929292;
    text-decoration:none;
    padding:0px 10px;
    }
#suckerfishnavtop li {
    float:left;
    padding:0;
    }
#suckerfishnavtop ul {
    position:absolute;
    left:-999em;
    height:auto;
    width:200px;
    font-weight:normal;
    margin:0;
    line-height:1;
    -moz-opacity:1;
    opacity:1;
    khtml-opacity:1;
    border:0;
    border-top:1px solid #cccccc;
	background-color:#ffffff;
    }
#suckerfishnavtop li li {
    width:199px;
    border-bottom:1px solid #cccccc;
    border-left:1px solid #cccccc;
    border-right:1px solid #cccccc;
    font-weight:normal;
    font-family:verdana,sans-serif;
    }
#suckerfishnavtop li li a {
    padding:4px 10px;
    width:180px;
    font-size:12px;
    color:#797979;
    }
#suckerfishnavtop li ul ul {
    margin:-21px 0 0 200px;
    }
#suckerfishnavtop li li:hover {
    background:#b8b8b8;
    }
#suckerfishnavtop li ul li:hover a, #suckerfishnavtop li ul li li:hover a, #suckerfishnavtop li ul li li li:hover a, #suckerfishnavtop li ul li li li:hover a {
    color:#000000;
    }
#suckerfishnavtop li:hover a, #suckerfishnavtop li.sfhover a {
    color:#797979;
    }
#suckerfishnavtop li:hover li a, #suckerfishnavtop li li:hover li a, #suckerfishnavtop li li li:hover li a, #suckerfishnavtop li li li li:hover li a {
    color:#797979;
    }
#suckerfishnavtop li:hover ul ul, #suckerfishnavtop li:hover ul ul ul, #suckerfishnavtop li:hover ul ul ul ul, #suckerfishnavtop li.sfhover ul ul, #suckerfishnavtop li.sfhover ul ul ul, #suckerfishnavtop li.sfhover ul ul ul ul {
    left:-999em;
    }
#suckerfishnavtop li:hover ul, #suckerfishnavtop li li:hover ul, #suckerfishnavtop li li li:hover ul, #suckerfishnavtop li li li li:hover ul, #suckerfishnavtop li.sfhover ul, #suckerfishnavtop li li.sfhover ul, #suckerfishnavtop li li li.sfhover ul, #suckerfishnavtop li li li li.sfhover ul {
    left:auto;
    background:#ffffff;
    }
#suckerfishnavtop li:hover, #suckerfishnavtop li.sfhover {
    background:#ffffff;
    }
#suckerfishnavtop .current_page_parent {
    background:#B13733;
    }
#suckerfishnavtop .current_page_item {
    background:#D31510;
    }
#suckerfishnavtop .current_page_parent a:after, #suckerfishnavtop .current_page_parent li a:after, #suckerfishnavtop .current_page_parent li li a:after, #suckerfishnavtop .current_page_parent li li li a:after, #suckerfishnavtop .current_page_parent li li li li a:after {
    content:"";
    }
#suckerfishnavtop .current_page_parent a:after, #suckerfishnavtop li .current_page_parent a:after, #suckerfishnavtop li li .current_page_parent a:after, #suckerfishnavtop li li li .current_page_parent a:after {
    color:#000000;
    content:"";
    }
#suckerfishnavtop .current_page_item a:after, #suckerfishnavtop li .current_page_item a:after, #suckerfishnavtop li li .current_page_item a:after, #suckerfishnavtop li li li .current_page_item a:after, #suckerfishnavtop li li li li .current_page_item a:after {
    color:#000000;
    content:"";
    }
	
	img#img1 {
	display: inline;
	padding: 0px;
	margin-top: 0px;
	margin-right: 14px;
	margin-bottom: 20px;
	margin-left: 0px;
	
}

img#img2 {
	display: inline;
	padding: 0px;
	margin-top: 0px;
	margin-right: 14px;
	margin-bottom: 20px;
	margin-left: 0px;
}
img#img3 {
	display: inline;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
}
img#img1a {
	display: inline;
	padding: 0px;
	margin-top: 0px;
	margin-right: 4px;
	margin-bottom: 0px;
	margin-left: 0px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #cccccc;
	border-right-color: #cccccc;
	border-bottom-color: #cccccc;
	border-left-color: #ffffff;
}

img#img2a {
	display: inline;
	padding: 0px;
	margin-top: 0px;
	margin-right: 4px;
	margin-bottom: 0px;
	margin-left: 0px;
	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: #cccccc;
	border-right-color: #cccccc;
	border-bottom-color: #cccccc;
	border-left-color: #cccccc;
}
img#img3a {
	display: inline;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	border-top-width: 1px;
	border-right-width: 0px;
	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: #cccccc;
	border-right-color: #ffffff;
	border-bottom-color: #cccccc;
	border-left-color: #cccccc;
}
#suckerfishnav {
    background:#d6d6d6 repeat-x;
    font-size:12px;
    font-family:verdana,sans-serif;
    font-weight:normal;
    width:100%;
    }
#suckerfishnav, #suckerfishnav ul {
    float:left;
    list-style:none;
    line-height:25px;
    padding:0;
    border:0px solid #d6d6d6;
    margin:0;
    width:100%;
    }
#suckerfishnav a {
    display:block;
    color:#000000;
    text-decoration:none;
    padding:0px 39px 0px 54px;
	background-image:url(images/nav-dots.jpg);
	background-repeat:no-repeat;
	background-position:left bottom,
	
    }
	
	#suckerfishnav ul a {
    background-image:none;
	
	
    }
#suckerfishnav {
    background:#d6d6d6 repeat-x;
    font-size:12px;
    font-family:verdana,sans-serif;
    font-weight:normal;
    width:100%;
    }
#suckerfishnav, #suckerfishnav ul {
    float:left;
    list-style:none;
    line-height:25px;
    padding:0;
    border:0px solid #d6d6d6;
    margin:0;
    width:100%;
    }
#suckerfishnav a {
    display:block;
    color:#000000;
    text-decoration:none;
    padding:0px 39px 0px 54px;
	background-image:url(images/nav-dots.jpg);
	background-repeat:no-repeat;
	background-position:left bottom,
	
    }
	
	#suckerfishnav ul a {
    background-image:none;
	
	
    }
#suckerfishnav li {
    float:left;
    padding:0;
    }
#suckerfishnav ul {
    position:absolute;
    left:-999em;
    height:auto;
    width:151px;
    font-weight:normal;
    margin:0;
    line-height:1;
    -moz-opacity:1;
    opacity:1;
    khtml-opacity:1;
    border:0;
    border-top:1px solid #ffffff;
	margin-left:30px;
    }
#suckerfishnav li li {
    width:149px;
    border-bottom:1px solid #ffffff;
    border-left:1px solid #ffffff;
    border-right:1px solid #ffffff;
    font-weight:normal;
    font-family:verdana,sans-serif;
    }
#suckerfishnav li li a {
    padding:4px 10px;
    width:130px;
    font-size:12px;
    color:#000000;
    }
#suckerfishnav li ul ul {
    margin:-21px 0 0 150px;
    }
#suckerfishnav li li:hover {
    background:#009dd8;
    }
#suckerfishnav li ul li:hover a, #suckerfishnav li ul li li:hover a, #suckerfishnav li ul li li li:hover a, #suckerfishnav li ul li li li:hover a {
    color:#000000;
    }
#suckerfishnav li:hover a, #suckerfishnav li.sfhover a {
    color:#009dd8;
    }
#suckerfishnav li:hover li a, #suckerfishnav li li:hover li a, #suckerfishnav li li li:hover li a, #suckerfishnav li li li li:hover li a {
    color:#000000;
    }
#suckerfishnav li:hover ul ul, #suckerfishnav li:hover ul ul ul, #suckerfishnav li:hover ul ul ul ul, #suckerfishnav li.sfhover ul ul, #suckerfishnav li.sfhover ul ul ul, #suckerfishnav li.sfhover ul ul ul ul {
    left:-999em;
    }
#suckerfishnav li:hover ul, #suckerfishnav li li:hover ul, #suckerfishnav li li li:hover ul, #suckerfishnav li li li li:hover ul, #suckerfishnav li.sfhover ul, #suckerfishnav li li.sfhover ul, #suckerfishnav li li li.sfhover ul, #suckerfishnav li li li li.sfhover ul {
    left:auto;
    background:#d6d6d6;
    }
#suckerfishnav li:hover, #suckerfishnav li.sfhover {
    background:#d6d6d6;
    }
#suckerfishnav .current_page_parent {
    background:#d6d6d6;
    }
#suckerfishnav .current_page_item {
    background:#d6d6d6;
    }
#suckerfishnav .current_page_parent a:after, #suckerfishnav .current_page_parent li a:after, #suckerfishnav .current_page_parent li li a:after, #suckerfishnav .current_page_parent li li li a:after, #suckerfishnav .current_page_parent li li li li a:after {
    content:"";
    }
#suckerfishnav .current_page_parent a:after, #suckerfishnav li .current_page_parent a:after, #suckerfishnav li li .current_page_parent a:after, #suckerfishnav li li li .current_page_parent a:after {
    color:#000000;
    content:"";
    }
#suckerfishnav .current_page_item a:after, #suckerfishnav li .current_page_item a:after, #suckerfishnav li li .current_page_item a:after, #suckerfishnav li li li .current_page_item a:after, #suckerfishnav li li li li .current_page_item a:after {
    color:#000000;
    content:"";
    }
	
	
	
	
	#suckerfishnavside {
    background:#ffffff repeat-x;
    font-size:12px;
    font-family:verdana,sans-serif;
    font-weight:normal;
    }
#suckerfishnavside, #suckerfishnavside ul {
    float:left;
    list-style:none;
    line-height:16px;
    padding:0;
   
    margin:0;
    width:150px;
    }
#suckerfishnavside a {
    display:block;
    color:#797979;
    text-decoration:none;
    padding:0px 20px;
    }
#suckerfishnavside li {
    float:left;
    padding:5px 0px;
	border-bottom:1px solid #d6d6d6;
	min-height:25px;
    }
#suckerfishnavside li a {
    width:149px;
    
    overflow:hidden;
    }
#suckerfishnavside ul {
    position:absolute;
    left:-999em;
    height:auto;
    width:151px;
    font-weight:normal;
    margin:0;
    line-height:1;
    border:0;
    border-top:1px solid #d6d6d6;
    margin:-25px 0 0 150px;
    }
#suckerfishnavside li li {
    width:149px;
    border-bottom:1px solid #d6d6d6;
    border-left:1px solid #d6d6d6;
    border-right:1px solid #d6d6d6;
    font-weight:normal;
    font-family:verdana,sans-serif;
	min-height:25px;
    }
#suckerfishnavside li li a {
    padding:4px 10px;
    width:130px;
    font-size:12px;
    color:#797979;
    }
#suckerfishnavside li ul ul {
    margin:-21px 0 0 150px;
    }
#suckerfishnavside li li:hover {
    background:#ffffff;
    }
#suckerfishnavside li ul li:hover a, #suckerfishnavside li ul li li:hover a, #suckerfishnavside li ul li li li:hover a, #suckerfishnavside li ul li li li:hover a {
    color:#00aae9;
    }
#suckerfishnavside li:hover a, #suckerfishnavside li.sfhover a {
    color:#00aae9;
    }
#suckerfishnavside li:hover li a, #suckerfishnavside li li:hover li a, #suckerfishnavside li li li:hover li a, #suckerfishnavside li li li li:hover li a {
    color:#797979;
    }
#suckerfishnavside li:hover ul ul, #suckerfishnavside li:hover ul ul ul, #suckerfishnavside li:hover ul ul ul ul, #suckerfishnavside li.sfhover ul ul, #suckerfishnavside li.sfhover ul ul ul, #suckerfishnavside li.sfhover ul ul ul ul {
    left:-999em;
    }
#suckerfishnavside li:hover ul, #suckerfishnavside li li:hover ul, #suckerfishnavside li li li:hover ul, #suckerfishnavside li li li li:hover ul, #suckerfishnavside li.sfhover ul, #suckerfishnavside li li.sfhover ul, #suckerfishnavside li li li.sfhover ul, #suckerfishnavside li li li li.sfhover ul {
    left:auto;
    background:#ffffff;
    }
#suckerfishnavside li:hover, #suckerfishnavside li.sfhover {
    background:#ffffff;
    }
#suckerfishnavside .current_page_parent {
    background:#ffffff;
    }
#suckerfishnavside .current_page_item {
    background:#ffffff;
    }
#suckerfishnavside .current_page_parent a:after, #suckerfishnavside .current_page_parent li a:after, #suckerfishnavside .current_page_parent li li a:after, #suckerfishnavside .current_page_parent li li li a:after, #suckerfishnavside .current_page_parent li li li li a:after {
    content:"";
    }
#suckerfishnavside .current_page_parent a:after, #suckerfishnavside li .current_page_parent a:after, #suckerfishnavside li li .current_page_parent a:after, #suckerfishnavside li li li .current_page_parent a:after {
    color:#000000;
    content:"";
    }
#suckerfishnavside .current_page_item a:after, #suckerfishnavside li .current_page_item a:after, #suckerfishnavside li li .current_page_item a:after, #suckerfishnavside li li li .current_page_item a:after, #suckerfishnavside li li li li .current_page_item a:after {
    color:#000000;
    content:"";
    }
