/******************************************************************************/
/* 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: url(/Images/Background.gif) repeat-x;
    font-family: Trebuchet MS;
    font-size: 75%;
    color: #000000;
    line-height: 17px;
}

#header .content {
    width: 982px;
    margin: 0 auto;
}

#outerColumnContainer {
    width: 571px;
    margin: 0 auto;
    padding: 0 203px 0 206px;
    background: url(/Images/Border.gif) repeat-y 206px;
    border: solid 1px #B9CFDC;
    border-bottom-width: 0;
}

#outerColumnContainer > .content {
    background: url(/Images/Border.gif) repeat-y 570px;
}

#middleContainer { /* only needed if page has a rightColumn */
    float: left;
    width: 100%;
    margin: 0;
}

#middleColumn {
    float: right;
    width: 100%;
}

#middleColumn .content {
    padding: 15px;
}

#leftColumn {
    float: left;
    width: 200px; /* left width */
    margin-left: -206px; /* -left width */
    padding: 3px;
}

#rightColumn {
    float: right;
    width: 197px; /* right width */
    margin-right: -203px; /* -right width */
    padding: 3px;
}

#footer {
    overflow: auto;
    background: url(/Images/Footer.jpg) repeat-x;
}

#footer .content {
    overflow: auto;
    width: 960px;
    margin: 21px auto 0 auto;
    padding: 10px;
    background-color: #E8F3F6;
    border: solid 1px #B9CFDC;
    border-top-width: 0;
    text-align: center;
    font-size: 95%;
}

#footer ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#footer ul li {
    display: inline;
    margin: 0;
    padding: 0 5px;
}

a, a:visited {
    color: #1980A3;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

h1, h2, h3, h4, h5 {
    margin-top: 0;
    padding: 0;
}

h1 {
    color: #1980A3;
    font-size: 145%;
    line-height: 30px;
    font-weight: bold;
}

h2 {
    color: #1980A3;
    font-size: 120%;
    line-height: 25px;
    font-weight: bold;
}

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;
}

.absmiddle {
    vertical-align: middle;
    margin-bottom: .25em;
}

.pointer {
    cursor: pointer;
}
/******************************************************************************/
/* Generic Styles End */
/******************************************************************************/

/******************************************************************************/
/* 1 Column Styles Start */
/******************************************************************************/
body.oneColumnLayout #leftColumn, body.oneColumnLayout #rightColumn {
    display: none;
}

body.oneColumnLayout #outerColumnContainer {
    width: 980px;
    padding: 0;
}

body.oneColumnLayout #outerColumnContainer, body.oneColumnLayout #outerColumnContainer > .content {
    background-image: none;
}
/******************************************************************************/
/* 1 Column Styles End */
/******************************************************************************/

/******************************************************************************/
/* 2 Column Styles Start */
/******************************************************************************/
body.twoColumnLayout #rightColumn {
    display: none;
}

body.twoColumnLayout #outerColumnContainer {
    width: 774px;
    padding-right: 0;
}

body.twoColumnLayout #outerColumnContainer > .content {
    background-image: none;
}
/******************************************************************************/
/* 2 Column Styles End */
/******************************************************************************/

/******************************************************************************/
/* Menu Styles Start */
/******************************************************************************/
#outerColumnContainer .menu {
    margin-bottom: 15px;
}

#outerColumnContainer .menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#outerColumnContainer .menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}

#outerColumnContainer .menu li a, #outerColumnContainer .menu li a:visited {
    display: block;
    width: auto;
    margin-top: 2px;
    padding: 4px 0;
    background-color: #F1F1F1;
    background-image: url(/Images/NavArrow.gif);
    background-repeat: no-repeat;
    color: #0B567D;
    text-decoration: none;
}

#outerColumnContainer .menu li a:hover {
    text-decoration: underline;
}

#outerColumnContainer .menu li.active > a, #outerColumnContainer .menu li.active > a:visited {
    font-weight: bold;
}

#outerColumnContainer .menu li.active > a:hover {
    cursor: text;
    text-decoration: none;
}

/* identation styles start */
#outerColumnContainer .menu li a, #outerColumnContainer .menu li a:visited {
    padding-left: 20px;
    background-position: 8px center;
}

#outerColumnContainer .menu li li > a, #outerColumnContainer .menu li li > a:visited {
    padding-left: 30px;
    background-position: 18px center;
}

#outerColumnContainer .menu li li li > a, #outerColumnContainer .menu li li li > a:visited {
    padding-left: 40px;
    background-position: 28px center;
}

#outerColumnContainer .menu li li li li > a, #outerColumnContainer .menu li li li li > a:visited {
    padding-left: 50px;
    background-position: 38px center;
}
/* identation styles end */
/******************************************************************************/
/* Menu Styles End */
/******************************************************************************/

/******************************************************************************/
/* Custom Styles Start */
/******************************************************************************/
.activeButton, .passiveButton {
    background-image: url(/Images/Template/ButtonBackground.jpg);
    border: solid 1px #1D5284;
    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 {
    padding: 10px;
    color: #FFFFFF;
}

.template1 .header {
    line-height: 31px;
    background: url(/Images/ComponentHeader.jpg) no-repeat;
	font-size: 160%;
    font-weight: bold;
}

.template2 .header {
    line-height: 10px;
    background: url(/Images/Component2Header.jpg) no-repeat;
	font-size: 125%;
}

.template2 .content {
    padding: 10px;
}

.componentItem, .componentItem2 {
    margin: 5px 0;
    padding: 5px;
}

.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;
    padding: 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;
}

.pageNavigation a, .pageNaviation a:visited, .pageNavigation .current {
    padding: 5px 4px;
    border: solid 1px #DDDDDD;
    text-decoration: none;
    line-height: 30px;
    vertical-align: text-top;
}

.pageNavigation a:hover, .pageNavigation .current {
    background-color: #EEEEEE;
}

.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;
}

.ratingStar {
    display: block;
    width: 13px;
    height: 15px;
    margin-top: 2px;
    padding: 0;
    font-size: 0;
    background-repeat: no-repeat;
}

.ratingStarDefault {
    cursor: default;
}

.ratingStarFilled {
    background-image: url(/Images/FilledStar.gif);

}

.ratingStarEmpty {
    background-image: url(/Images/EmptyStar.gif);
}

.ratingStarSaved {
    background-image: url(/Images/SavedStar.gif);
}

.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;
}

.userDirectoryProfile {
    margin-top: 10px;
    padding: 3px;
    border: solid 1px #DEDEDE;
}

.userDirectoryProfile .telephone {
    float: right;
    padding-left: 35px;
    background: url(/Images/Telephone.gif) no-repeat;
    color: #000000;
    font-weight: normal;
    line-height: 28px;
}

.userDirectoryProfile h2 {
    margin: -3px;
    padding: 5px;
    background: #DEDEDE;
}

.userDirectoryProfile .inner {
    padding: 5px 0;
}
/******************************************************************************/
/* 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: #0690BC;
    text-decoration: none;
}

.greenText, .greenText a, .greenText a:visited, .greenTextMedium, .greenTextMedium a, .greenTextMedium a:visited, .greenTextLarge, .greenTextLarge a, .greenTextLarge a:visited, .greenTextExtraLarge, .greenTextExtraLarge a, .greenTextExtraLarge a:visited {
    color: #14D614;
    text-decoration: none;
}

.greenTextMedium {
    font-size: 120%;
}

.greenTextLarge {
    font-size: 140%;
}

.greenTextExtraLarge {
    font-size: 200%;
}

.grayText, .grayText a, .grayText a:visited {
    color: #999999;
    text-decoration: none;    
}

.redText, .redText a, .redText a:visited, .redTextMedium, .redTextMedium a, .redTextMedium a:visited, .redTextLarge, .redTextLarge a, .redTextLarge a:visited, .redTextExtraLarge, .redTextExtraLarge a, .redTextExtraLarge a:visited {
    color: #FF1818;
    text-decoration: none;
}

.redTextMedium {
    font-size: 120%;
}

.redTextLarge {
    font-size: 140%;
}

.redTextExtraLarge {
    font-size: 200%;
}

.quote {
	margin: 10px;
    padding: 5px;
    background-color: #F8F8F9;
    border: solid 1px #0083C1;
    font-weight: bold;
}

.quotation {
	padding: 10px;
	border: 1px solid #166F91;
	color: #999999;
	font-style: italic;
}

.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 */
/******************************************************************************/