/******************************************************************************/
/* 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: #99A49C;
    font-family: Arial;
    font-size: 80.1%;
    color: #68706B;
    line-height: 17px;
}

#pageWrapper {
    min-width: 700px; /* used for fluid layouts so that narrow browser widths doesn't squash up content */
    width: auto; /* fixed layout: width: 760px; | fluid layout width: auto; */
    margin: 0; /* fixed layout: margin: 0 auto; | fluid layout margin: 0; */
    padding: 0;
}

#headerBackground {
    height: 130px;
    background-color: #3D0633;
}

#header {
    float: left;
    padding: 15px;
}

#slogan {
    float: left;
    margin-left: 100px;
    padding: 32px 10px;
    color: #FFFFFF;
    font-style: italic;
    line-height: 22px;
    text-align: center;
}

#slogan a, #slogan a:visited {
    font-size: 85%;
    color: #FFFFFF;
}

#contact {
    float: right;
    padding: 15px;
    color: #FFFFFF;
    text-align: right;
}

#contact a, #contact a:visited {
    color: #FFFFFF;
    text-decoration: none;
}

#menu {
    clear: both;
    height: 18px;
    padding: 20px 20px 5px 20px;
    background-color: #FFFFFF;
}

#menu ul {
    margin: 0;
    padding: 0;  
    list-style-type: none;
}

#menu li {
    margin: 0;
    padding: 12px 20px 0 20px;
    display: inline;
    background: url(/Images/MenuBackground.gif) no-repeat top center;
}

#menu a, #menu a:visited {
    color: #99A49C;
    font-weight: bold;
    text-decoration: none;
}

#menu a:hover {
    color: #3D0633;
}

#search {
    float: right;
    margin: -10px -10px 0 0;
}

#breadCrumb {
    padding: 5px 20px;
    font-size: 90%;
    background-color: #FFFFFF;
    border-top: solid 1px #CCCCCC;
}

#outerColumnContainer {
    background-color: #FFFFFF;            /* set the background color for the middle column here */
    border-left: solid 203px #FFFFFF;     /* left width | left column background color */
    border-right: solid 203px #FFFFFF;    /* right width | right column background color */
}

#middleContainer { /* only needed if page has a rightColumn */
    float: left;
    width: 100%;
    margin: 0;
}

#middleColumn {
    float: right;
    width: 100%;
}

#middleColumn .inside {
    padding: 0 5px 5px 5px;
}

.middleBox {
    padding: 10px;
    border: solid 1px #CCCCCC;
}

#leftColumn, #rightColumn {
    position: relative;    /* fix some rendering issues (note * html #middleContainer fixes ie6 left column alignment issue) */
    overflow: visible;    /* fix for ie italics bug */
}

#leftColumn {
    float: left;
    width: 198px; /* left width */
    margin-left: -203px; /* -left width + left padding */
    padding-left: 5px;
}

#rightColumn {
    float: right;
    width: 198px; /* right width */
    margin-right: -203px; /* -right width + right padding */
    padding-right: 5px;
}

* html #rightColumn {
    margin-right: -102px; /* -((right width + right padding) / 2) */
}

#footer {
    padding: 15px 0;
    text-align: center;
    color: #FFFFFF;
    font-size: 90%;
}

#footer a, #footer a:visited {
    color: #FFFFFF;
}

#footer #registration {
    float: right;
    margin-top: -10px;
    padding: 10px;
    font-size: 80%;
    text-align: right;
}

a, a:visited {
    color: #99A49C;
    text-decoration: underline;
}

a:hover {
    color: #3D0633;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    padding: 0;
}

h1 {
    color: #99A49C;
    font-size: 190%;
    line-height: 40px;
    font-weight: bold;
}

h2 {
    color: #99A49C;
    font-size: 140%;
    line-height: 30px;
    font-weight: bold;
}

h3 {
    font-size: 120%;
    line-height: 20px;
    font-weight: bold;
}

table {
    font-size: 100%;
}

form {
    margin: 0;
    padding: 0;
}

legend {
    padding: 0 10px 0 5px;
    color: #99A49C;
    font-weight: bold;
}

.clear {
    clear: both;
    margin-bottom: -1px; /* fix issue with nn7 */
    padding-bottom: 1px;
}

.clear2 {
    overflow: auto;
}

* html .clear2 {
    height: 1%;
}

.hide {
    display: none;
}

.right {
    float: right;
}

.left {
    float: left;
}

.noBorder {
    border: 0;
}

.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;
}
/******************************************************************************/
/* 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 */
/******************************************************************************/

/******************************************************************************/
/* 2 Column (Reverse) Styles Start */
/******************************************************************************/
body.twoColumnReverseLayout #leftColumn {
    display: none;
}

body.twoColumnReverseLayout, body.twoColumnReverseLayout #outerColumnContainer {
    border-left-width: 0;
}
/******************************************************************************/
/* 2 Column (Reverse) Styles End */
/******************************************************************************/

/******************************************************************************/
/* Menu Styles Start */
/******************************************************************************/
.menu {
    margin-bottom: 15px;
    color: #68706B;
    text-align: right;
}

.menu h3 {
    margin-bottom: 5px;
    color: #68706B;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.menu li a, .menu li a:visited {
    display: block;
    width: auto;
    color: #99A49C;
    text-decoration: none;
}

.menu li a:hover {
    color: #3D0633;
    text-decoration: underline;
}

.menu li.active > a, .menu li.active > a:visited {
    color: #3D0633;
    text-decoration: none;
}

.menu li.active > a:hover {
    cursor: text;
    color: #3D0633;
    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, .passiveButton {
    background-image: url(/Images/Template/ButtonBackground.jpg);
    border: solid 1px #CCCCCC;
    color: #666666;
    font-weight: bold;
}

.articleDate {
	width: 55px;
	height: 56px;
	margin: 4px;
	padding-top: 8px;
	background: url(/Images/Template/DateBackground.jpg) no-repeat;
	color: #666666;
	font-size: 11px;
	text-align: center;
}

.articleViews {
	float: right;
	width: 55px;
	height: 56px;
	margin: 4px;
	padding-top: 8px;
	background: url(/Images/Template/ViewsBackground.jpg) no-repeat;
	color: #666666;
	font-size: 11px;
	text-align: center;
}

.author {
    margin: 15px 0;
    color: #999999;
    font-size: 90%;
}

.bookmarks {
    margin: 15px 0;
    padding: 5px;
    border: solid 1px #CCCCCC;
}

.close {
    float: right;
    padding: 0 0 5px 5px;
}

.comment {
    margin: 5px 0;
    padding: 5px;
    background-color: #FFFFFF;
    border: solid 1px #99A49C;
}

.comments {
    margin: 15px 0;
}

.commentsTop {
    height: 40px;
    margin-bottom: 10px;
    background-color: #99A49C;
}

.component, .component2 {
    margin-bottom: 15px;
    border: solid 1px #CCCCCC;
}

.component h5, .component2 h5 {
    height: 20px;
    margin: 0;
    padding: 5px;
	font-size: 125%;
}

.component .inside, .component2 .inside {
    padding: 5px;
}

.componentItem, .componentItem2 {
    margin: 5px 0;
    padding: 5px;
}

.error {
    margin: 10px 0;
    padding: 5px;
    background-color: #F4E7EA;
    border: solid 1px #986265;
    font-weight: bold;
}

.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, .pageNavigation {
    margin: 15px 0;
}

.rating {
    margin: 15px 0;
}

.response {
    margin: 10px 0;
    padding: 5px;
    background-color: #F8F8F9;
    border: solid 1px #0083C1;
    font-weight: bold;
}

.tagCloudComponent .inside {
    line-height: 30px;
    word-wrap: break-word;
    overflow: hidden;
}

.tags {
    margin: 15px 0;
}

.textBox {
    padding: 2px;
    border: solid 1px #809DB9;
}
/******************************************************************************/
/* Custom Styles End */
/******************************************************************************/

/******************************************************************************/
/* User Styles Start */
/******************************************************************************/
/*Please duplicate all HTML tag styles to Wysiwyg.css */
.black, .black a, .black a:visited {
    color: #000000;
    text-decoration: none;
}

.blue, .blue a, .blue a:visited {
    color: #605B8D;
    text-decoration: none;
}

.brown, .brown a, .brown a:visited {
    color: #7D6A65;
    text-decoration: none;
}

.darkGreen, .darkGreen a, .darkGreen a:visited {
    color: #68706B;
    text-decoration: none;
}

.green, .green a, .green a:visited {
    color: #99A49C;
    text-decoration: none;
}

.grey, .grey a, .grey a:visited {
    color: #BAAAB7;
    text-decoration: none;
}

.imageBorder, .imageBorderLeft, .imageBorderRight {
    padding: 2px;
    border: solid 1px #CCCCCC;
}

.imageBorderLeft {
    float: left;
}

.imageBorderRight {
    float: right;
}

.largeText {
    color: #99A49C;
    font-size: 190%;
    line-height: 40px;
    font-weight: bold;
}

.largeTextPurple {
    color: #3D0633;
    font-size: 190%;
    line-height: 40px;
    font-weight: bold;
}

.middleBox {
    padding: 10px;
    border: solid 1px #CCCCCC;
}

.pink, .pink a, .pink a:visited {
    color: #ECC4DC;
    text-decoration: none;
}

.purple, .purple a, .purple a:visited {
    color: #3D0233;
    text-decoration: none;
}

.quote {
	margin: 10px;
    padding: 5px;
    background-color: #F8F8F9;
    border: solid 1px #0083C1;
    font-weight: bold;
}

.seaGreen, .seaGreen a, .seaGreen a:visited {
    color: #8B9B92;
    text-decoration: none;
}

.seaMist, .seaMist a, .seaMist a:visited {
    color: #C1C4C6;
    text-decoration: none;
}

.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;
}

.warm, .warm a, .warm a:visited {
    color: #A55160;
    text-decoration: none;
}

.white, .white a, .white a:visited {
    color: #FFFFFF;
    text-decoration: none;
}
/******************************************************************************/
/* User Styles End */
/******************************************************************************/