/******************************************************************************/
/* Generic Styles Start */
/* begin with generic selectors so that they can be overridden if needed by classes deeper in the stylesheet */
/******************************************************************************/
body {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    font-family: arial;
    font-size: 75%;
    color: #000000;
    line-height: 17px;
}

#pageWrapper {
    min-width: 700px; /* used for fluid layouts so that narrow browser widths doesn't squash up content */
    width: 950px; /* fixed layout: width: 760px; | fluid layout width: auto; */
    margin: 4px auto; /* fixed layout: margin: 0 auto; | fluid layout margin: 0; */
    padding: 0;
}

#header {
	float: left;
	width: 206px;
}

#menu {
	float: left;
}

#menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#menu ul li {
	float: left;
	margin: 0 0 0 4px;
	padding: 0;
	font-size: 12px;
}

#menu ul li a, #menu ul li a:visited {
	display: block;
	width: 120px;
	height: 28px;
	padding-top: 142px;
	text-align: center;
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
}

#menu ul li.item1 a, #menu ul li.item1 a:visited {
	background-image: url(/Images/MenuItem1.jpg);
}

#menu ul li.item1 a:hover {
	background-image: url(/images/MenuItem1Hover.jpg);
}

#menu ul li.item2 a, #menu ul li.item2 a:visited {
	height: 36px;
	padding-top: 134px;
	background-image: url(/Images/MenuItem2.jpg);
}

#menu ul li.item2 a:hover {
	background-image: url(/Images/MenuItem2Hover.jpg);
}

#menu ul li.item3 a, #menu ul li.item3 a:visited {
	background-image: url(/Images/MenuItem3.jpg);
}

#menu ul li.item3 a:hover {
	background-image: url(/images/MenuItem3Hover.jpg);
}

#menu ul li.item4 a, #menu ul li.item4 a:visited {
	height: 36px;
	padding-top: 134px;
	background-image: url(/Images/MenuItem4.jpg);
}

#menu ul li.item4 a:hover {
	background-image: url(/Images/MenuItem4Hover.jpg);
}

#menu ul li.item5 a, #menu ul li.item5 a:visited {
	background-image: url(/Images/MenuItem5.jpg);
}

#menu ul li.item5 a:hover {
	background-image: url(/Images/MenuItem5Hover.jpg);
}

#menu ul li.item6 a, #menu ul li.item6 a:visited {
	background-image: url(/Images/MenuItem6.jpg);
}

#menu ul li.item6 a:hover {
	background-image: url(/Images/MenuItem6Hover.jpg);
}

#outerColumnContainer {
    clear: both;
	background-color: #FFFFFF;			/* set the background color for the middle column here */
	border-left: 206px solid #FFFFFF;	/* left width + inner left border width | left column background color */
	border-right: 200px solid #FFFFFF;	/* right width + inner right border width | right column background color */
}

#innerColumnContainer {
	width: 100%;
	margin: 0;		/* compensate for the borders because of 100% width declaration */
	z-index: 1;
}

#middleContainer { /* ie6 needs this but only really needed if using right column */
	float: left;
	width: 100%;
	margin: 0;
	z-index: 3;
}

#middleColumn {
	float: right;
	width: 100%;
	margin: 0;
	z-index: 5;
}

#breadCrumb {
	padding: 10px 30px 0 30px;
}

#middleColumn .content {
	padding: 10px 30px;
}

#leftColumn {
	float: left;
	width: 206px; /* left width */
	margin: 0 0 0 -206px; /* 0 | inner left border width (needed for ie6 + ie7) | 0 | -(left width + inner left border width) */
	padding-top: 15px;
	z-index: 4;
}

#rightColumn {
	float: right;
	width: 200px; /* right width */
	margin: 0 -200px 0 0; /* 0 | -(right width + inner right border width) | 0 | inner right border width (needed for ie6 + ie7) */
	padding-top: 15px;
	z-index: 2;
}

#footer {
    overflow: auto;
	margin: 10px 0;
	padding: 10px 5px 8px 5px;
	border-top: 2px solid #333333;
	font-size: 95%;
}

#footer a, #footer a:visisted {
	color: #000000;
}

a, a:visited {
    color: #006699;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    padding: 0;
}

h1 {
	font-size: 260%;
	line-height: 30px;
	font-weight: normal;
	color: #3333BC;
}

h2 {
	font-size: 150%;	
	line-height: 25px;
	font-weight: normal;
	color: #3333BC;
}

h3 {
	font-size: 100%;
	line-height: 20px;
	font-weight: bold;
}

h4 {
    font-size: 90%;
    line-height: 18px;
    font-weight: bold;
}

table {
    font-size: 100%;
}

form {
    margin: 0;
    padding: 0;
}

legend {
    padding: 0 10px 0 5px;
    font-weight: bold;
}

p.first, .componentItem p:first-child, .componentItem2 p:first-child, .comment p:first-child, .comment2 p:first-child, .item p:first-child, .item2 p:first-child {
    margin-top: 0;
}

p.last { /* style needed since ie doesn't support last-child pseudo class */
    margin-bottom: 0;
}

hr {
    width: 50%;
    height: 1px;
    color: #065083;
}

.clear {
    clear: both;
    margin-bottom: -1px; /* fix issue with nn7 */
    padding-bottom: 1px;
}

.clear2 {
    overflow: auto;
}

.hide {
    display: none;
}

.right {
    float: right;
}

.left {
    float: left;
}

.noBorder {
    border: 0;
}

.pointer {
    cursor: pointer;
}
/******************************************************************************/
/* Generic Styles End */
/******************************************************************************/

/******************************************************************************/
/* 1 Column Styles Start */
/******************************************************************************/
body.oneColumnLayout #leftColumn, body.oneColumnLayout #rightColumn {
    display: none;
}

body.oneColumnLayout #outerColumnContainer {
    border-left-width: 0;
    border-right-width: 0;
}
/******************************************************************************/
/* 1 Column Styles End */
/******************************************************************************/

/******************************************************************************/
/* 2 Column Styles Start */
/******************************************************************************/
body.twoColumnLayout #rightColumn {
    display: none;
}

body.twoColumnLayout #outerColumnContainer {
    border-right-width: 0;
}
/******************************************************************************/
/* 2 Column Styles End */
/******************************************************************************/

/******************************************************************************/
/* Menu Styles Start */
/******************************************************************************/
.menu {
    margin-bottom: 15px;
}

.menu h5 {
    margin-bottom: 5px;
}

.menu ul {
    margin: 0 5px;
    padding: 0;
    list-style-type: none;
}

.menu li {
    margin: 0;
    padding: 0;
}

.menu li a, .menu li a:visited {
    display: block;
    padding: 3px 15px;
    background-image: url(/MyFiles/Images/Bullet1.gif);
    background-repeat: no-repeat;
    text-decoration: none;
}

.menu li a:hover {
    text-decoration: underline;
}

.menu li.active > a, .menu li.active > a:visited {
    font-weight: bold;
}

.menu li.active > a:hover {
    cursor: text;
    text-decoration: none;
}

/* Identation Styles Start */
.menu li a, .menu li a:visited {
    padding-left: 15px;
    background-position: 0 center;
}

.menu li li > a, .menu li li > a:visited {
    padding-left: 25px;
    background-position: 10px center;
}

.menu li li li > a, .menu li li li > a:visited {
    padding-left: 35px;
    background-position: 20px center;
}

.menu li li li li > a, .menu li li li li > a:visited {
    padding-left: 45px;
    background-position: 30px center;
}
/* Identation Styles End */
/******************************************************************************/
/* Menu Styles End */
/******************************************************************************/

/******************************************************************************/
/* Custom Styles Start */
/******************************************************************************/
.activeButton {
	background-image: url(/Images/ActiveBackground.jpg);
	border-top: 1px solid #FFFFFF;
	border-right: 1px solid #666666;
	border-bottom: 1px solid #666666;
	border-left: 1px solid #FFFFFF;
	color: #FFFFFF;
	font-weight: bold;
}

.articleDate {
	width: 55px;
	height: 56px;
	padding-top: 8px;
	background: url(/Images/Template/DateBackground.jpg) no-repeat;
	color: #666666;
	font-size: 11px;
	text-align: center;
}

.articleViews {
	float: left;
	width: 55px;
	height: 56px;
	padding-top: 8px;
	background: url(/Images/Template/ViewsBackground.jpg) no-repeat;
	color: #666666;
	font-size: 11px;
	text-align: center;
}

.left .articleDate, .left .articleViews {
	margin: 0 8px 8px 0;
}

.right .articleDate, .right .articleViews {
	margin: 0 0 8px 8px;
}

.author {
    margin: 15px 0;
    color: #999999;
    font-size: 90%;
}

.bookmarks {
    margin: 15px 0;
    padding: 5px;
    border: solid 1px #000000;
}

.centeredList {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
}

.centeredList li {
    margin: 0;
    padding: 0;
    display: inline;
}

.close {
    float: right;
    padding: 0 0 5px 5px;
}

.comment {
    margin: 5px 0;
    padding: 5px;
    background-color: #EEEEEE;
    border: solid 1px #DDDDDD;
}

.comments {
    margin: 15px 0;
}

.commentsTop {
    height: 40px;
    margin-bottom: 10px;
    background-color: #DDDDDD;
}

#outerColumnContainer .component {
    margin-bottom: 15px;
}

.component .header {
    margin-bottom: 10px;
    font-weight: bold;
	font-size: 125%;
}

.componentItem, .componentItem2 {
    margin: 5px 0;
    padding: 5px;
}

.template1 {
    padding: 5px;
    border: solid 1px #CCCCCC;
}

.error {
    margin: 10px 0;
    padding: 10px 5px 10px 40px;
    background: #F4E7EA url(/Images/Warning.gif) no-repeat 5px center;
    border: solid 1px #986265;
}

.error ul {
    margin: 0 0 0 16px;
}

.flyout {
    position: absolute;
    display: none;
    overflow: hidden;
    background-color: #FFFFFF;
    border: solid 1px #D0D0D0;
    z-index: 2;
}

.help {
    position: absolute;
    display: none;
    overflow: scroll;
    width: 250px;
    height: 280px;
    padding: 5px;
    background-color: #FFFFFF;
    border: solid 1px #CCCCCC;
    z-index: 2;
}

.highLight {
	background-color: #FFFF66;
	color: #003399;
	font-weight: bold;
}

.item, .item2 {
    margin: 5px 0;
    padding: 5px;
}

.modalBackground {
    background-color: #CCCCCC;
    filter: alpha(opacity=60);
    opacity: 0.6;
}

.modalPopup {
    width: 500px;
    padding: 10px;
    background-color: #FFFFFF;
    border: solid 1px #000000;
}

.pageLocation {
    margin: 15px 0;
    text-align: center;
}

.pageNavigation {
    margin: 15px 0;
}

.passiveButton {
	background-image: url(/Images/PassiveBackground.jpg);
	border-top: 1px solid #FFFFFF;
	border-right: 1px solid #666666;
	border-bottom: 1px solid #666666;
	border-left: 1px solid #FFFFFF;
	color: #FFFFFF;
	font-weight: bold;
}

.passwordStrength {
    width: 200px;
    max-height: 18px;
    padding: 1px;
    border: solid 1px #000000;
    vertical-align: middle;
}

.passwordStrengthText {
    margin: 2px 0 0 208px;
    background-color: White;
}

.passwordStrengthWeak {
    max-height: 18px;
    background-color: Red;
    color: Red;
}
.passwordStrengthAverage {
    max-height: 18px;
    background-color: Orange;
    color: Orange;
}

.passwordStrengthGood {
    max-height: 18px;
    background-color: Green;
    color: Green;
}

.popularSearches {
    margin: 30px 100px;
    padding: 10px;
    border: solid 1px #000000;
    line-height: 30px;
    word-wrap: break-word;
    overflow: hidden;
}

.productImage {
    margin-right: 15px;
    border: 0;
}

.productPrice {
    font-size: 110%;
    line-height: 25px;
    font-weight: bold;
}

.productTitle {
    font-size: 110%;
    line-height: 25px;
    font-weight: bold;
}

.rating {
    margin: 15px 0;
}

.response {
    margin: 10px 0;
    padding: 10px 5px 10px 40px;
    background: #F8F8F9 url(/Images/Info.gif) no-repeat 5px center;
    border: solid 1px #0083C1;
}

.tagCloudComponent {
    line-height: 30px;
    word-wrap: break-word;
    overflow: hidden;
}

/* Start styles used to set xx-small to xx-large font sizes of tags for small, medium and large */
.tagCloudComponentTag1 {
    font-size: 80%;
}

.tagCloudComponentTag2 {
    font-size: 90%;
}

.tagCloudComponentTag3 {
    font-size: 100%;
}

.tagCloudComponentTag4 {
    font-size: 110%;
}

.tagCloudComponentTag5 {
    font-size: 120%;
}

.tagCloudComponentTag6 {
    font-size: 140%;
}

.tagCloudComponentTag7 {
    font-size: 160%;
}
/* End of tag cloud tag font sizes */

.textBox {
    padding: 2px;
    border: solid 1px #809DB9;
}
/******************************************************************************/
/* Custom Styles End */
/******************************************************************************/

/******************************************************************************/
/* User Styles Start */
/******************************************************************************/
/*Please duplicate all HTML tag styles to Wysiwyg.css */
.imageBorder {
    margin: 5px;
    padding: 5px;
    border: solid 1px #999999;
}

#leftColumn .imageBorder, #rightColumn .imageBorder {
    border: solid 1px #FFFFFF;
}

.blueText, .blueText a, .blueText a:visited {
    color: #3333BC;
    text-decoration: none;
}

.darkGreenText, .darkGreenText a, .darkGreenText a:visited {
    color: #006600;
    text-decoration: none;
}

.greenText, .greenText a, .greenText a:visited {
    color: #009933;
    text-decoration: none;
}

.grayText, .grayText a, .grayText a:visited {
    color: #999999;
    text-decoration: none;    
}

.redText, .redText a, .redText a:visited {
    color: #FF0000;
    text-decoration: none;
}

.quote {
	margin: 10px;
    padding: 5px;
    background-color: #F8F8F9;
    border: solid 1px #0083C1;
    font-weight: bold;
}

.tableGrid {
    width: 100%;
    border-width: 0 0 1px 1px;
    border-spacing: 0;
    border-collapse: collapse;
}

.tableGrid, .tableGrid td, .tableGrid th {
    border-color: #E1E1E1;
    border-style: solid;
}

.tableGrid th, .tableGrid td {
    margin: 0;
    padding: 4px;
    border-width: 1px 1px 0 0;
}

.tableGrid th {
    background-color: #EEEEEE;
    font-weight: bold;
}

.tableGrid th a {
    color: #000000;
}

.tableGrid th.none {
    background: none;
    border: none;
    font-weight: normal;
}

.tableGrid td td, .tableGrid th th {
    border: none;
}

.tableContentHover {
    background-color: #EEEEEE;
}
/******************************************************************************/
/* User Styles End */
/******************************************************************************/

/******************************************************************************/
/* Image Popup Styles Start */
/******************************************************************************/
#imagePopupLoadingScreen {
    position: absolute;
    z-index: 30001;
    background: #CCCCCC url(/Images/ImagePopupLoading.gif) no-repeat 50% 47%;
    font: normal normal normal 0.9em arial,sans-serif;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    visibility: hidden;
    filter: alpha(opacity=60);
    opacity: 0.6;
}

#imagePopupIframeShim {
    position: absolute;
    z-index: 30000;
    border: none;
    filter: alpha(opacity=0);
    opacity: 0;
    visibility: hidden;
}

#imagePopupImageWindow {
    position: absolute;
    z-index: 30002;
    background-color: #222222;
    border: solid 1px #666666;
    padding: 10px;
    visibility: hidden;
}

#imagePopupImageWindow img {
    border: solid 1px #999999;
    background-color: #FFFFFF;
}

#imagePopupImageWindow ul, #imagePopupImageWindow li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#imagePopupImageWindow ul {
    margin-top: 8px;
    padding: 0 0 8px;
    background-color: #FAFAFA;
    border: solid 1px #999999;
    overflow: hidden;
    white-space: nowrap;
}

#imagePopupImageWindow li.fullScreen {
    float: left;
    padding: 10px 10px 0 10px;
}

#imagePopupImageWindow li.close {
    float: right;
    padding: 10px 10px 0 10px;
}

#imagePopupImageWindow ul a, #imagePopupImageWindow ul a:visited {
    min-height: 15px;
    padding: 0 0 0 20px;
    font: normal normal normal 0.9em arial,sans-serif;
    background: url(/Images/ImagePopupIcons.gif) no-repeat 0 1px;
    color: #555555;
    text-decoration: none;
    display: block;
}

#imagePopupImageWindow li.fullScreen a, #imagePopupImageWindow li.fullScreen a:visited {
    background-position: 0 -449px;
}

#imagePopupImageWindow ul a:hover, #imagePopupImageWindow ul a:focus {
    background-position: 0 -149px;
    color: #222222;
}

#imagePopupImageWindow ul li.fullScreen a:hover, #imagePopupImageWindow ul li.fullScreen a:focus {
    background-position: 0 -599px;
}

#imagePopupImageWindow ul a:active {
    background-position: 0 -299px;
    color: #000000;
}

#imagePopupImageWindow ul li.fullScreen a:active {
    background-position: 0 -749px;
}
/******************************************************************************/
/* Image Popup Styles End */
/******************************************************************************/