/******************************************************
* FixedStyles.css                                     *
*-----------------------------------------------------*
* Copyright (C) 2006-2010 Prosirius Technologies, LLC *
* Abstract: CSS Reset, default styles used for        *
*           web editor and patches for CSS            *
* Last Update: 09-29-11                               *
******************************************************/

/* ===== CSS RESET ======================================================= */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, 
dl, dt, dd, ol, ul, li, fieldset, form, label, legend {
/* table, caption, tbody, tfoot, thead, tr, th, td */
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
p {
	margin: 10px 0px 10px 0px;
}
ol, ul {
	margin: 10px 0px 10px 25px;
}
li {
	margin-bottom: 3px;
}
hr {
	border: 1px;
	height: 1px;
	background-color: #000000;
}
blockquote {
	margin: 10px 20px;
}

/* ===== PATCH FOR IE =================================================== */

.centered {
	text-align: center;
}
.centered table {
	margin: 0 auto; 
	text-align: left;
}

/* ===== GENERIC STYLING OF TEXT ======================================== */

.tl {
	text-align: left;
}
.tc {
	text-align: center;
}
.tcws {
	text-align: center;
	white-space: nowrap;
}
.trt {
	text-align: right;
}
.trtws {
	text-align: right;
	white-space: nowrap;
}
.wsno {
	white-space: nowrap;
}
.lh1 {
	line-height: 1em;
}
.lh13 {
	line-height: 1.3em;
}
.fs120 {
	font-size: 120%;
}
.fs130 {
	font-size: 130%;
}
.fs150 {
	font-size: 150%;
}
.fs200 {
	font-size: 200%;
}
.fwbold {
	font-weight: bold;
}
.fwnormal {
	font-weight: normal;
}
.icodown {
	position: relative;
	top: 4px;
	border: 0px none;
}

/* ===== PADDING AND MARGINS ============================================= */

.pa0 {
	padding: 0px;
}
.pa1 {
	padding: 1px;
}
.pa2 {
	padding: 2px;
}
.pa3 {
	padding: 3px;
}
.pa4 {
	padding: 4px;
}
.pa5 {
	padding: 5px;
}
.ma0 {
	margin: 0px;
}
/* Ad Spacer between ads */
.ads0 {
	height: 7px;
}

/* ===== GENERIC STYLING OF NAVIGATOR BAR (HORIZONTAL MENU) ============== */
/*       This is usually used with a menubutton, such as .menubutton2 .navleft {} */
.navleft {
}
.navcenter {
}
.navright {
}

/* ===== GENERIC STYLING OF BLOCKS ======================================= */

/* Page Banners for Shopping, Registration, Services, etc */
.pagebanner {
	width: 530px;
	height: 150px;
	border: none;
}
/* Outer div for Headline News / Managed News block */
.headlinenews {
}
/* Page Footer block */
.pagefootercontent {
}
/* Calendar Month Formatting */
.calmo {
	height: 70px;
	padding: 1px;
}
/* Calendar Year Formatting for Sunday */
.calyrsu {
	border: none;
	padding: 0px;
	margin: 0px;
	font-size: 9px;
}
/* Margin Top+Bottom for Footer */
#contentfooter {
	margin: 30px 0px;
}
#footermenu {
	width: 480px;
	text-align: center;
	margin: 20px auto;
}
/* Top Row on Month Calendar: Sun, Mon, etc */
.calendarmonthnamerow {
}

/* ===== BULLETS ========================================================= */

/* Calendar */
.bucal {
	width: 4px;
	height: 12px;
}
/* Service Directory */
.busd {
	width: 6px;
	height: 8px;
}
/* Menu */
.bumu {
	width: 6px;
	height: 6px;
}
/* Big Bullet */
.bubb {
	width: 12px;
	height: 12px;
}

/* ===== PAGE FOOTER ICONS =============================================== */

.ico {
	padding:0px 5px;
}

/* ===== MAIL CMT-CATCH ================================================== */

.mailfmt {
	display: none;
}

/* ===== CONTROL PANELS ================================================== */

/* group heading text */
.cpgroup { 
	padding-left: 8px;
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	line-height: 1.5em;
	text-decoration: none;
	vertical-align: middle;
}
/* space around icon and label */
.cpspace {
	height: 70px;
	vertical-align: top;
	text-align: center;
}
.cpspace img {
	padding-bottom: 3px;
}
/* icon formatting */
.cpicon {
	border: 0px none;
}
/* label / link formatting */
.cplink {
	font-weight: normal;
	text-decoration: none;
	line-height: 1em;
}


/* ===== TOOLTIPS ======================================================= */

.tooltip {
    position: relative;
    color: #000000;
    text-decoration: none;
    z-index: 680;
}

.tooltip:hover {
	z-index: 685; 
}

.tooltip span {
	display: none
}

.tooltip:hover span {
    display: block;
    position: absolute;
    top: -75px; 
	left: -32px;
	width: 160px;
	margin: 0px;
	padding: 5px 10px;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
    background-color: #FFFFCC;
	color: #000000;
    text-align: center;
	line-height: 1em;
    border: 2px solid #000000;
	z-index: 690; 
	/* CSS3 code for rounded corners */
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	box-shadow: 8px 3px 3px rgba(0, 0, 0, 0.1); 
	-webkit-box-shadow: 3px 3px rgba(0, 0, 0, 0.1); 
	-moz-box-shadow: 3px 3px rgba(0, 0, 0, 0.1);

}
.tooltiphelp:hover span {
	top: 16px;
	left: 16px;
}

/* ===== ONLINE STORE ==================================================== */

/* Cart Buy Box - right side contains price, qty, options, etc */
.cartbuy {
}
/* Suggested Products Box */
.cartbrowser {
}
/* Right Margin Mini Cart Box */
.minicart {
}

/* ===== RSS FEED READER ================================================= */

/* UL used by RSS Feed Reader */
.rssfeed {
}
.rssfeed li {
	line-height: 1.2em;
	padding-bottom: 5px;
}
.rssfeed li a {
}

/* ===== DATE, TIME AND COLOR PICKERS ==================================== */

.dpDiv {
}
.dpTable {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: center;
	color: #333333;
	background-color: #fffefe;
	border: 3px solid #bbd0e8;
}
.dpnavtextbodytiny {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #333333;
}
.dpTR {
}
.dpTitleTR {
	background-color: #e3edfe;
}
.dpDayTR {
}
.dpTD {
	cursor: pointer;
}
.dpDayHighlightTD {
	background-color: #ffffcc;
	border: 1px solid #ecb855;
	cursor: pointer;
}
.dpTitleTD {
}
.dpButtonTD {
}
.dpDayTD {
	background-color: #86a1d2;
	color: #ffffff;
}
.dpTitleText {
	font-size: 12px;
	color: #000000;
	font-weight: bold;
}
.dpDayHighlight {
	background-color: #ffffcc;
	color: #333333;
	font-weight: bold;
}
.dpButton {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	border: 1px solid #a7bcde;
	background-color: #e3edfe;
	color: #003333;
	padding: 0px;
}