/******************************************************************************/
/* 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: tahoma;
    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: auto; /* fixed layout: width: 760px; | fluid layout width: auto; */
    margin: 0; /* fixed layout: margin: 0 auto; | fluid layout margin: 0; */
    padding: 0;
}

#header {
    float: left;
    padding: 15px;
}

#slogan {
    float: left;
    margin-left: 200px;
    margin-top: 30px;
    padding: 15px;
}

#slogan .big {
    font-size: 250%;
}

#search {
    float: right;
    margin-top: 60px;
    padding: 15px;
}

#menu {
    clear: both;
    height: 30px;
    background: url(/Images/MenuBackground.jpg) repeat-x;
}

#menu ul {
    margin-left: 20px;
    padding: 0;
    list-style-type: none;
}

#menu li {
    float: left;
    margin: 0;    
}

#menu li.selected {
    background: url(/Images/MenuSelected.jpg) repeat-x;
    border-left: solid 1px #FFFFFF;
    border-right: solid 1px #FFFFFF;
}

#menu a, #menu a:visited {
    display: block;
    height: 22px;
    padding: 8px 20px 0 20px;
    color: #FFFFFF;
    text-decoration: none;
}

* html #menu a, * html #menu a:visited {
    width: 100px;
    font-size: 80%;
}

#menuBottom {
    height: 5px;
    margin-top: 1px;
    background: url(/Images/MenuBottom.jpg) repeat-x top;
}

.breadCrumb {
    padding: 10px 10px 0 10px;
}

#outerColumnContainer {
    padding: 15px 0;
    background-color: #FFFFFF;            /* set the background color for the middle column here */
    border-left: solid 239px #FFFFFF;     /* left width | left column background color */
    border-right: solid 239px #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%;
    margin: 0;
}

#middleColumn .content {
    margin: 0 15px;
    padding: 15px;
    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: 224px; /* left width */
    margin-left: -239px; /* -left width + left padding */
    padding-left: 15px;
}

#rightColumn {
    float: right;
    width: 224px; /* right width */
    margin-right: -239px; /* -right width + right padding */
    padding-right: 15px;
}

* html #rightColumn {
    margin-right: -127px; /* -((right width + right padding) / 2) */
}

.welcome {
    position: relative;
    margin-top: 15px;
    font-size: 115%;
    line-height: 30px;
    min-height: 270px;
}

* html .welcome {
    height: 270px;
}

.welcome p {
    margin: 20px 0 0 0;
}

#animation {
    position: absolute;
    top: -10px;
    right: 20px; 
    height: 290px;
    width: 292px;
    padding: 0 15px;
    background: url(/Images/FlashBackground.gif) no-repeat;
}

#slideshow {
    position: absolute;
    top: 40px;
    left: 35px;
}

#footer {
    padding: 15px 0;
    background: url(/Images/FooterTop.jpg) repeat-x top;
    text-align: center;
    font-size: 90%;
}

a, a:visited {
    color: #D60B01;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    padding: 0;
}

h1 {
    color: #D60B01;
    font-size: 150%;
    line-height: 30px;
    font-weight: bold;
}

h2 {
    color: #D60B01;
    font-size: 120%;
    line-height: 25px;
    font-weight: bold;
}

h3 {
    font-size: 100%;
    line-height: 20px;
    font-weight: bold;
}

hr {
    clear: both;
    height: 5px;
    padding: 5px 0;
    background: url(/Images/Hr.jpg) repeat-x;
}

table {
    font-size: 100%;
}

form {
    margin: 0;
    padding: 0;
}

legend {
    padding: 0 10px 0 5px;
    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 */
/******************************************************************************/

/******************************************************************************/
/* Menu Styles Start */
/******************************************************************************/
.menu {
    color: #666666;
    margin-bottom: 5px;
    background: url(/Images/MenuBottomCenter.jpg) no-repeat bottom left;
}

.menu .top {
    width: 224px;
	height: 54px;
	background: url(/Images/MenuTopCenter.jpg) no-repeat top left;
}

.menu .bottom {
    width: 224px;
	height: 44px;
	background: url(/Images/MenuBottomCenter.jpg) no-repeat bottom left;
}

.menu .content {
    width: 194;
    padding: 15px;
	background-color: #FFFFFF;
    background: url(/Images/MenuMiddleBackground.jpg) repeat-y top left;
}

* html .menu .content {
    height: 1%; /* -((right width + right padding) / 2) */
}

.menu h3 {
    margin-bottom: 5px;
    color: #666666;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.menu li {
    width: 90%;
    margin: 0;
    padding: 3px;
    border-bottom: solid 1px #CCCCCC;
}

.menu li li {
    border-bottom: none;
}

.menu li a, .menu li a:visited {
    display: block;
    width: auto;
    margin: 0 10px;
    padding: 2px;
    color: #000000;
    text-decoration: none;
}

.menu li a:hover {
    color: #D60B01;
}

.menu li.active > a {
    font-weight: bold;
}

.menu li.active > a:hover {
    cursor: text;
    text-decoration: none;
}

/* Identation Styles Start */
.menu li li > a, .menu li li > a:visited {
    padding-left: 15px;
}

.menu li li li > a, .menu li li li > a:visited {
    padding-left: 25px;
}

.menu li li li li > a, .menu li li li li > a:visited {
    padding-left: 35px;
}
/* Identation Styles End */
/******************************************************************************/
/* Menu Styles End */
/******************************************************************************/

/******************************************************************************/
/* Custom Styles Start */
/******************************************************************************/
.activeButton, .passiveButton {
    height: 23px;
    padding: 0 3px;
    background-image: url(/Images/ButtonBackground.jpg);
    border-top: solid 1px #CCCCCC;
    border-right: solid 1px #666666;
    border-bottom: solid 1px #666666;
    border-left: solid 1px #CCCCCC;
    color: #FFFFFF;
}

.articleDate {
	width: 55px;
	height: 56px;
    margin: 0 8px 8px 0;
	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;
    margin: 0 8px 8px 0;
	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-top: solid 1px #CCCCCC;
}

.close {
    float: right;
    padding: 0 0 5px 5px;
}

.comment {
    margin: 5px 0;
    padding: 5px;
    background-color: #FAFAFA;
    border: solid 1px #DDDDDD;
}

.comments {
    margin: 15px 0;
}

.commentsTop {
    height: 5px;
    padding: 5px 0;
    background: url(/Images/Hr.jpg) repeat-x;
}

.component, .component2 {
    margin-bottom: 5px;
    color: #000000;
}

.component h5, .component2 h5 {
    height: 20px;
    margin: 0;
    padding: 10px;
	font-size: 125%;
}

.component .inside, .component2 .inside {
    padding: 10px;
}

.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;
}

.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;
}

.roundedBox {
    padding: 0 10px;
}

.roundedBox .top {
    background: url(/Images/RoundedBoxTopRight.jpg) no-repeat top right;
}

.roundedBox .top div {
	background: url(/Images/RoundedBoxTopLeft.jpg) no-repeat top left;
}

.roundedBox .top, .roundedBox .top div {
	height: 20px;
}

.roundedBox .top span {
    display: block;
    height: 20px;
    margin: 0 20px;
    border-top: solid 2px #EAEAEA;
}

.roundedBox .middle {
    padding: 0 350px 0 20px;
	border-left: solid 2px #EAEAEA;
	border-right: solid 2px #EAEAEA;    
}

.roundedBox .bottom {
    background: url(/Images/RoundedBoxBottomRight.jpg) no-repeat bottom right;
}

.roundedBox .bottom div {
	background: url(/Images/RoundedBoxBottomLeft.jpg) no-repeat bottom left;
}

.roundedBox .bottom, .roundedBox .bottom div {
	height: 20px;
}

.roundedBox .bottom span {
    display: block;
    height: 18px;
    margin: 0 20px;
    border-bottom: solid 2px #EAEAEA;
}

.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 */
.imageBorder, .imageBorderLeft, .imageBorderRight {
    margin: 5px;
    padding: 5px;
    border: solid 1px #CCCCCC;
}

.imageBorderLeft {
    float: left;
}

.imageBorderRight {
    float: right;
}

.blueText, .blueText a, .blueText a:visited {
    color: #0690BC;
    text-decoration: none;
}

.greenText, .greenText a, .greenText a:visited {
    color: #009933;
    text-decoration: none;
}

.greyText, .greyText a, .greyText 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 */
/******************************************************************************/