/*
  The 'Cascade' in Cascading Style Sheets mean elements inherit the styles of parent tags (eg td is a 'child' of the body tag), 
  but new style definitions will override or add to earlier ones. Also more specific definitions have precedence 
  over more generic styles, eg "td.style1 a:link" overrides "a:link" as it's more specific. 
  Closer styles have precedence over more distant ones, eg in <table class="style1"><tr><td class="style2"> 
  style2 has precedence, because it's closer, but the td element (and its 'children') may still inherit styles 
  from style1 not defined in style2.

  NOTE: To switch on IE6's CSS1Compat mode (Standards mode), 
  you must include a full !DOCTYPE in the document header complete with the URL to the Dtd. 
  See http://msdn.microsoft.com/workshop/author/dhtml/reference/properties/compatmode.asp 
*/
body {
    font: 12px/140% 'Trebuchet MS',Georgia, Times, Times New Roman, sans-serif;
    color: #333333;
    background: #024978;  
    margin: 0px;
    padding: 0px;
    }

 /* *** Page Layout *** */ 

#pagewidth{ 
 width:934px; 
 text-align:left;  
 margin-left:auto; 
 margin-right:auto; 
 background-color:#FFFFFF; 
} 
 
#leftcol{
 width:19%; 
 float:left; 
 position:relative; 
 background-color:#E0EFF6;
 border-right: 1px solid #999999;
 height:100%; 
 height: 100%;
 }
 
#twocols{
 width:80%; 
 float:right; 
 position:relative;
  
  }
 
#rightcol{
 width: 26%;
 float:right; 
 background-color:#E0EFF6;
 position:relative;
 height: 100%;
 }
 
#maincol{
 background-color: #FFFFFF;  
 float: left; 
 display:inline; 
 position: relative; 
 width:72%; 
 border-right: 1px dashed #999999;  
 padding-right: 10px;
 height: 100%;;
 }

#footer-bg {
    background: #ddd url(../images/bottombg.png) repeat-x top;
    color:#FFFFFF;
    height:129px;
    overflow:hidden;
}
#footer {
    margin:0 auto;
    width:960px;
    overflow:hidden;
    position:relative;
       text-align: center;
}
 
 /* *** Float containers fix *** */ 
.clearfix:after {
 content: "."; 
 display: block; 
 height: 0; 
 clear: both; 
 visibility: hidden;
 }
 
.clearfix{display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix{height: 1%;}
.clearfix{display: block;}
/* End hide from IE-mac */  
 
 /*printer styles*/ 
 @media print{ 
/*hide the left column when printing*/ 
#leftcol{display:none;} 

/*hide the right column when printing*/ 
#rightcol{display:none;} 
#twocols, #maincol{width:100%; float:none;}
}


table, div  { 
    font: 12px/140% 'Trebuchet MS',Georgia, Times, Times New Roman, sans-serif;
       }


/*STYLING THE FORMS AND INPUT */


.button {
 font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
 background-color: #D7E5F2;
 color: #102132;
 margin-left: 12px;
 margin-top: 3px;
 margin-bottom: 2px;
}

select,
select.pn-normal,
select.pn-text {
    background-color: #f3f3f3;
    color: #999999;
}

select:focus, 
select.pn-normal:focus 
 {
    background: #f3f3f3;
    border-color: #53B021;
       }

textarea,
textarea.pn-normal {
    background: #ffffff url(../images/input.png) repeat-x top;
    color: #000000;
    border: 0;
    padding: 3px;
       margin-top: 5px;
       margin-left: 5px;
    max-width: 700px;
    border: 1px solid #999999;
}

input
{
    background: #FFFFFF url(../images/input.png) repeat-x top;
    color: #000000;
    border: 0;
    padding: 3px;
    max-width: 700px;
    border: 1px solid #999999;  
       }

input,
input.pn-normal,
input.pn-text,
input.pn-button,
textarea,
textarea.pn-normal,
textarea.pn-text {
       margin-top: 5px;
       margin-left: 5px;
    padding: 1px 6px;
       }	   
	   
textarea.pn-normal { 
       width: 100%;
       margin-top: 5px;
       margin-left: 5px; 
       }

* html textarea.pn-normal { padding: 1px 0px;} /* IE fix */


input.pn-button {
    border-collapse: collapse;
       }

input.r-button {
    font-size: 10pt;
    color: #000000; 
    background: none; 
       }

input[type="checkbox"] {
background:none repeat scroll 0 0 transparent;
border:0 none;
padding:0;
}

input:hover,
input.pn-normal:hover, 
select:hover,
select.pn-normal:hover, 
textarea:hover {
    border-color: #cccccc;
       }

input:focus, 
input.pn-normal:focus, 
textarea:focus {
    background: #ffffff url(../images/input.png) repeat-x top;
    border-color: #8DC741;
       }


.pnRightBlock input:focus { 
       background-color: #FFF; 
       }



/* Temporary fix for old modules in standards browsers */
table[border="1"],
table[border="2"], 
table[border="3"] { 
    border: 0px; 
    border-collapse: collapse;
    margin-bottom: 15px;
       }

table[border="1"] td, 
table[border="1"] th,
table[border="2"] td, 
table[border="2"] th, 
table[border="3"] td, 
table[border="3"] th { 
    text-align: left;
    border: 2px solid #4C5EA8; 
    margin: 0px;
    padding: 3px 0.5em;
       }
 
table[border="1"] th,
table[border="2"] th, 
table[border="3"] th {
    font-size: 11px;
    background-color: #EBF2FD; /* #ACB2D4; */
    text-align: center;
       }

th   { 
      font-size: 14px; 
      }


/*  IE hacks, "* html" style only read by IE, as it selects nothing */
/* 
    IE6 only uses the standard W3C Boxmodel in CSS1Compat mode, which requires a full Doctype declaration with Label and URL to the Dtd.
    It defaults to BackCompat mode, which works like previous versions of IE. 
*/
* html #LeftCol {
    width: 155px; /* IE 5.x uses non-standard Box Model */
    width: 140px;  /* IE 6 can uses W3C Standard box model (in CSS1Compat mode), IE 5.x chokes on escape character */
} 
/* 
* html #RightCol {
    width: 160px;
    width: 150px;
}
*/

* html #rightcol {
    overflow-x: hidden; overflow-y: hidden; 
	display: inline; 
}


#CenterCol {
    padding: 15px 15px 15px 0px;
    vertical-align: top;
    text-align: left;
}

#box_content {
    display:block;
    background:#fff;
    border:0 solid #fff;
    border-width:0 1px;
    overflow:hidden;
    height:100%;
    padding:0 10px;
}

#header {
    width: 100%;
    height: 102px;
    clear: both;
    background-color: #cccccc;
    background-image: url("../images/content_bkg.gif");
}

#header .logotop {
       padding-top:7px;
       padding-left:20px;
}


#topmenu {
    margin: 0px;
    padding: 8px;
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
    vertical-align: middle; 
    clear: both;
    background-color: #f3f3f3; 
}
#topmenu a {
    text-decoration: none;
}
#bottomMenu {
    font-size: 10px;
    text-align: center;
    background-color: #DFE5FF; 
    border: 1px solid #7C82A4;
    border-width: 1px 0px;
    margin: 0px;
    padding: 3px 0;
    clear: both;
}



/* STANDARD */
.pn-formbuttons {
    color:#336699;
}

.pn-formbuttons a:hover{
    color:#336699;
}
.pn-formbuttons a:active{
    color:#999999;
}



/* navigation top */

/*Tab Start */
#navi {
    height: 25px;
    width: 483px;
    text-align: center;
    line-height: normal;
    position:absolute;
    top:95px;
    left:20px;
}
#nav {
    list-style: none;
    margin: 0;
    padding: 0;
    float: left;
    clear:both;
    height: 30px;
}
#nav li {
    float: left;
    background: url(../images/navtabr.png) top right no-repeat;
    margin: 0;
    line-height:30px;
    margin-left:2px;
}
#nav .page_item a {
    color: #fff;
    display: block;
    text-decoration: none;
    padding:5px 12px 4px 12px;/*top right bottom left */
    font:bold 12px 'Trebuchet MS',Georgia, Times, Times New Roman, sans-serif;
}

#nav .page_item a:hover {
    background-position: 0 -14px;
    border: none;
    color: #F8981D;
}
* html #nav .page_item a:hover {
    background-position: 0 0;
    border: none;
    color: #F8981D;
}
#nav li.current_page_item {
    color: #fff;
    text-decoration: none;
    background: url(../images/navtabr.png) no-repeat right;
    background-position: 100% -34px;
}
#nav .current_page_item a, #nav .current_page_item a:visited {
    color: #fff;
    text-decoration: none;
    background: url(../images/navtabl.png) no-repeat;
    background-position: 0 -34px;
}

/* footer area */


#footer a, #footer a:visited {
       color:#FFFFFF;
       font:11px Verdana, Arial, Helvetica, sans-serif;
    text-decoration:none;
    clear: both;
}
#footer a:hover { color:#333; }
/* alignments */
.center {
    text-align: center;
}


/* Main menu in PN 0.76+ */
#pnMainMenu {
    padding-left: 1em;
    margin-left: 0em;
}
/* Stories block menu */
.storiesmenu {
    padding-left: 1em;
    margin-left: 0em;
}


/* Center blocks and admin messages */
div#CenterBlocks {
    font: normal 10pt 'Trebuchet MS',Georgia, Times, Times New Roman, sans-serif;
}
#CenterBlocks .pn-title {
    font: bold 14px 'Trebuchet MS',Georgia, Times, Times New Roman, sans-serif;
    color: #CC6600; /*#4C5EA8; #006699 #003366;*/
}
#CenterBlocks td, 
#CenterBlocks div {
    margin-bottom: 15px;  
/*    font: normal 11px/120% 'Trebuchet MS',Georgia, Times, Times New Roman, sans-serif;  */
}

.pn-normal,
td.pn-normal {
    font: 8pt 'Trebuchet MS',Georgia, Times, Times New Roman, sans-serif;/* 8pt */
    line-height: 1.3em;
    text-align: left;
    color: #666666; /* #191919 */
    background: none; 
    text-decoration: none; 
}
a img, img {    border: 0px; }

/* Anchor styles */
a:link, a:visited {
    color: #4C5EA8;
    text-decoration: none;
}
a:hover, 
a:active {
    color: #C45915;
}
a.pn-normal:link,
a.pn-normal:visited {
    color: #4C5EA8; 
    text-decoration: underline;
    background: none; 
}/*#191919;*/
a.pn-normal:hover {
    color: #CC6600;
    text-decoration: underline;
    background: none; 
}
a.pn-normal:active {
    color: #FF9900; /*#F3F3F3;*/
    text-decoration: underline;
    background: none; 
}

/* ----------  side bar rollovers ------- */

#sidebar {
       color: #999999;
       padding-left: 10px;
       padding-right: 10px;
       }

#sidebar ul li {
      font-family: 'Trebuchet MS',Georgia, Times, Times New Roman, sans-serif;
      font-weight: normal;
    letter-spacing: 0.1em;
    border: 0;
    text-align: left;
    padding-left:0;
    margin-left: 0;
    text-decoration: none;
}


#sidebar ul ul ul.children {
    padding-left: 4px;
}


#sidebar ul {
margin-left: 0;
padding-left: 0;
list-style-type: none;
text-decoration: none;
font-family: 'Trebuchet MS',Georgia, Times, Times New Roman, sans-serif;
}

#sidebar a {
color: #000000;
background-image: url("../images/icon.gif");
display: block;
padding: 3px;
padding-left: 17px; 
background-repeat: no-repeat;
background-position: 0 55%;
text-decoration: none;
}

#sidebar a:link, #sidebar a:visited {
text-decoration: none;
}

#sidebar a:hover {
background-image: url("../images/icon2.gif");
color: #C45915;
text-decoration: none;
}


/* Titles */
.pn-title {
    font: bold 14px/150% Verdana, Helvetica, Arial, sans-serif;  /* 12px/26px */
    color: #CC6600; /* orange */ /* #990000; #4C5EA8; #006699 #003366;*/
    text-align: center;
    text-decoration: none;
    background: none; 
    margin-top: 0.5em;
    margin-bottom: 6px;
    border-bottom: 1px solid #cccccc;
}

h1,
h1.pn-pagetitle {
    font: bold 16px/150% Verdana, Helvetica, Arial, sans-serif;
    color: #4D7CC1; /* dark gray */
    text-decoration: none;
    letter-spacing: 1pt;
    background: none; 
    margin-top: 0.3em;
    margin-bottom: 20px;
    border-bottom: 1px solid #cccccc;
}

h2,
h2.pn-title {
    font: bold 15px Verdana, Helvetica, Arial, sans-serif;
    color: #4D7CC1;
}

h3, 
h3.pn-title {
    font: bold 14px Verdana, Helvetica, Arial, sans-serif;
    color: #4D7CC1;
    text-decoration: none;
    background: none;
    margin-top: 3px;
    margin-bottom: 6px;
    padding: 6px;
    line-height: 130%;
}

h4, 
h4.pn-title{ 
    font-size: 14px;
    line-height: 130%;
    font-weight: bold;
    color: #4D7CC1; 
    margin-top: 1em;
    margin-bottom: 3px;
    text-decoration: none; 
    border-bottom: 1px solid #cccccc;
}



td.pn-title { 
    font: bold 14px/150% Verdana,Helvetica,sans-serif; 
    color: #4C5EA8;
    text-decoration: none;
    background: none;
}
a.pn-title {
    font-weight: bold;
    color: #8DC741;
    text-decoration: underline;
    background: none;
}
span.pn-title,
a.pn-title:link,
a.pn-title:visited {
    color: #4C5EA8;
    text-decoration: underline;
}
a.pn-title:hover {
    color: #CC6600;
    text-decoration: underline;
}
a.pn-title:active { 
    color: #FF9900;
    text-decoration: underline;
}

/* used in /templates/modules/News/newsuserdisplay.htm */
.pn-art {
    font: 10pt/1.5em Verdana, Helvetica, Arial, sans-serif;
    color: #191919;
    background: none;
    text-decoration: none;
}

/* "More" and "Posted by" text */
.pn-sub {
    font: 10px Verdana, Helvetica, Arial, sans-serif;
    color: #999999;
}
a.pn-sub:link {
    color: #666666;
    text-decoration: underline;
    background: none;
}
a.pn-sub:visited {
    color: #4C5EA8; }
a.pn-sub:hover {
    color: #CC6600; }
a.pn-sub:active {
    color: #FF9900; }

div.pn-sub a.pn-normal {
    font: 8pt Verdana, Helvetica, Arial, sans-serif; 
    color: #666666;
} 
div.pn-sub a.pn-normal:visited {
    color: #4C5EA8;
}
div.pn-sub a.pn-normal:hover {
    color: #CC6600;
}
div.pn-sub a.pn-normal:active {
    color: #FF9900;
}

/* News articles */
.ArticleBlock {
    margin-bottom: 0.8em;
}
.ArticleHead {
    margin-bottom: 6px;
}
.Article {
    background: white;
    line-height: 1.3em;
}
.storytitle, pn-storytitle { 
    font-size: 12px;
    line-height: 130%;
    font-weight: bold;
    color: #4C5EA8; 
    margin-top: 1em;
    margin-bottom: 3px;
    text-decoration: none; 
}
h4.storytitle img { /* align Article image */
    margin-bottom: -5px;
}

div.pn-sub img { /* Print this and Email this images */
    margin-bottom: -3px;
}
.note { margin-bottom: 1.2em; }

/* News title links */
h4.storytitle {
    font-size: 12px;
    font-weight: bold;
    text-decoration: underline; 
}
h4.storytitle a:link,
h4.storytitle a:visited { 
    color: #4C5EA8; 
}
h4.storytitle a:hover,
h4.storytitle a:active  { 
    color: #CC6600; 
} 

/* Block titles */
h4.blocktitle, 
h4.BlockTitleRight, 
#CenterBlocks h4.pn-title {
    font-size: 18px;
    font-weight: bold;
    color: #CC6600; 
    margin-bottom: 3px;
    border-bottom: 1px solid #cccccc;
}


/* Block styles */
.pnLeftBlock {
    width: 100%; /* 150-6px */
    padding: 3px;
}

.pnRightBlock {
    width: 95%; /* 150-6px */
    padding: 10px 0px 5px 10px; /*top right bottom left */
    margin-bottom: 5px;
    margin-right: 0px;
    border-bottom: 1px solid #cccccc;
}

.pnRightBlock ul li {
      font-family: 'Trebuchet MS',Georgia, Times, Times New Roman, sans-serif;
    font-size: 12px;
      font-weight: normal;
    letter-spacing: 0.1em;
    border: 0;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
    text-decoration: none;
}

.pnRightBlock ul ul ul.children {
    padding-left: 4px;
}

.pnRightBlock ul {
margin-left: 0;
padding-left: 0;
list-style-type: none;
text-decoration: none;
font-family: 'Trebuchet MS',Georgia, Times, Times New Roman, sans-serif;
}

.pnRightBlock a {
color: #000000; 
text-decoration: none;
}

.pnRightBlock a:link, .pnRightBlock a:visited {
text-decoration: none;
}

.pnRightBlock a:hover {
color: #C45915;
text-decoration: none;
}


/* IE hack to compensate for different box model */
* html .pnLeftBlock { 
    width: 150px; 
    width: 144px; 
}
* html .pnRightBlock { 
    width: 250px; 
}

/* menu styles */
.pn-menu {
    text-align: left;
}
.pn-menuitem-title {
    text-align: left;
}

#pn-maincontent .pn-statusmsg {
background-color: #f3f3f3;
margin: 10px;
padding: 35px;
}


/* Loading message */
div#loading {
    font-size: 11px; 
    color: #000;
    position: fixed;
    z-index: 100;
    width: 300px;
    left: 50%; top: 50%;
    margin-left: -166px; 
    margin-top: -56px;
    text-align: center;
    padding: 15px;
    border: 1px solid #333;
    background-color: #EFEFEF; /* #eee; */
    cursor: pointer;
}
* html div#loading { position: absolute; } /* IE hack */
div#PBouter, div#PBdone { margin-left: auto; margin-right: auto;}



/* **********
** Corners **
*********** */
.CornerSpacer {
    margin: 0px; 
    padding: 0px; 
    border: 0px;
    font-size: 1px; 
    line-height: 1px;
    clear: both;
}
.borderTL, .borderTR, .borderBL, .borderBR {
    padding: 0px; border: 0px;
}
/* Corner dimensions: top: 15w x 13h  bottom: 11w x 11h */
/* Padding: Top 13px  Right 10px  Bott 15px  Left 10px; */
/* Top: -padding -border */
.borderTL {     float:  left; clear: both;    margin: -13px  0px  0px -10px; z-index: 99; top: 30px; }
.borderTR {    float: right; clear: right;    margin: -13px -10px  0px  0px; z-index: 99; top: 30px; }
/* Bottom: -(image heigh) -padding -border */
.borderBL {    float:  left; clear: both;    margin: -26px  0px  0px  0px; z-index: 99 } 
.borderBR {    float: right; clear: right;    margin: -26px  0px  0px  0px; z-index: 99 }
/* IE 5.x hack to fix 3px bug, exploiting other IE bugs 
   * html selects nothing, only IE acts on it      
   If IE6 isn't in CSS1Compat mode (full !DOCTYPE with URL), comment out 2nd line with escape character 
*/
* html .borderTL { 
    margin-left: -13px; /* Fix IE 5.x 3px bug */
    ma\rgin-left: -10px; /* Reset IE6, IE5.x chokes on escape character */
}
* html .borderTR  {
    margin-right: -13px; /* content padding + 3px */
    ma\rgin-right: -10px;
}
* html .borderBL {
    margin-left: -3px;
    ma\rgin-left: 0px;
}
* html .borderBR {
    margin-right: -3px;
    margin-right: 0px;
}
/**************************/

/* General*/
.clear  { clear: both; }
.nobreak   { white-space: nowrap; }
.pnleft {
    vertical-align: middle; 
    float: left;
/*    clear: left; */
    text-align: left;
}
.pnright {
    float: right;
/*    clear: right; */
    text-align: right;
}

/* News topic image styles */ 
.TopicImage,
.TopicImageLeft {
    float: left; 
    vertical-align: top;
    margin-left: -2px;
    margin-right: 6px;
    margin-top: 3px;
    margin-bottom: 4px;
}
.TopicImageRight {
    float: right;
    vertical-align: top;
    margin-left: 6px;
    margin-right: -2px;
    margin-top: 3px;
    margin-bottom: 4px;
}
.pntable1,
.pn-datatable,
.container,
.opentable, 
.opentable1 {
    border: 1px solid #CCCCCC; /* $bgcolor2 */
    background: #F3F3F3;  /* $bgcolor1 */
    padding: 8px;    
    margin: 0px;
/*    margin-left: auto; margin-right: auto; */
}



.extmenuadmin a:active, .extmenuadmin a:link, .extmenuadmin a:visited, .extmenuadmin a:hover  {
    background: #cccccc;
    padding: 15px; 
    border: 1px solid #F8981D;
    font-size: 14px;
    margin-left: 10px;
    color: #ffffff;
}

.pntable2,
.opentable2 {
    background: #E6E6E6; 
    border: 2px solid #739FC4; /* $bgcolor2 */
    padding: 6px 12px;
    margin: 6px;
    margin-left: auto; margin-right: auto;
}


/* Table styles based on style from the css table gallery 
   STYLESHEET: CLEAR BLUE, AUTHOR: ROBERT HARTL */

table.pn-datatable {
    width:100%;
    line-height:1.2em;
    background-color:#fff;
    border-collapse:collapse;
    text-align:left;
    margin-bottom:1em;
       padding: 5px;
}

table.pn-datatable caption {
    padding-bottom:1em;
    text-align: center;
    font-size: 1.4em;
    font-weight: normal;
    color: #333;
    background: transparent;
}
  
table.pn-datatable thead th, table.pn-datatable tfoot th, table.pn-datatable tfoot td {
    border-right: 1px solid #ffffff;
    padding-left:5px;
    color: #fff;
    background: #a0a0a0;
}
  
table.pn-datatable tfoot th, table.pn-datatable tfoot td {
    border-top: 2pt double #009;
}

table.pn-datatable table.pn-datatable th {
      color: #999999;
      background: #f3f3f3;   
      padding: 5px;
      border-right: 1px dashed #999999;
}

table.pn-datatable tbody tr th, table.pn-datatable tbody tr td {
    border-bottom: 1px dotted #467aa7;
}


table.pn-datatable tbody td a, table.pn-datatable tbody th a {
    color: #999999;
       background: transparent;
    text-decoration: none;
    border:none;
}

table.pn-datatable tbody td a:hover, table.pn-datatable tbody th a:hover {
    background: transparent;
}

table.pn-datatable .odd {
    background: #f3f3f3;
}

table.pn-datatable .even {
    background: #fff;
}

table.pn-datatable tbody tr:hover {
    color: #999999;
    background: #f3f3f3;
}

table.pn-datatable tbody tr th:hover {
    background:#cccccc;
    padding: 5px;
}

/* Other Stuff */

.pn-formrow news_notes {
    padding-bottom:1em;
    background-image: url("../images/icon.gif");
}

.feeds-image {
    float: left;
    padding: 10px;
}

#pn-maincontent p {
font-size: 12px;
font-family: 'Trebuchet MS',Georgia, Times, Times New Roman, sans-serif;
}

#pn-maincontent {
padding-top: 10px;
list-style-type: none;
text-decoration: none;
font-family: 'Trebuchet MS',Georgia, Times, Times New Roman, sans-serif;
}

#pn-maincontent ul {
margin-left: 0;
padding-left: 0;
list-style-type: none;
text-decoration: none;
font-family: 'Trebuchet MS',Georgia, Times, Times New Roman, sans-serif;
}

div#pn-maincontent a#news_notes_collapse {
    padding-bottom:0em;
}
