/* STYLESHEET FORMAT GUIDE *****************************************************

  split into the following sections:
  - semantics (direct formatting for <td>, <a>, etc)
  - classes (.whatever)
  - common plugin CSS
  - navbar
  Within these sections, entries are to be strictly alphabetized.

  SAMPLE:
  .poll-vote,
  .poll-vote-results {
    background:transparent;
    color:#000000;
    font-size:smaller;
  }

  These are the rough rules:
  - always put a ';' after the last entry
  - always a linebreak before .
  - always a linebreak after , ; { and }
  - always a . before all classes
  - two spaces indent
  - no tabs
  - no spaces after colons
*/

/* COLOURS ********************************************************************/
.red {
  color : #ED1C24;
}


.turquoise {
  color : #0066CC;
}

.grey {
  color: #9D9FA2;
}

.dark_grey {
  color: #231F20;
}

.pale_grey {
  color :#CBCDCF;
}

.pale_blue {
  color: #E3E4E5;
}
.blue {
  color : #25408F;
}

.beige {
    color: #F5F5DC;
}


.green {
  color : #009900
  
}

.darkergreen {
  color : #006600
  
}

.cornsilk {
    color: #FFF8DC;
}

  

/* SEMANTICS ******************************************************************/

a {
  background:transparent;
}

a:link.non-ul,
a:visited.non-ul,
a:hover.non-ul,
a:active.non-ul {
  color:#000000;
  text-decoration:none;
}
a:link {
  color:#231F20;
  text-decoration:none;
}
a:visited {
  color:#231F20;
}
a:hover {
  color:#231F20;
  text-decoration: underline;
}
a:active {
  color:#231F20;
}



body {
  width:960px;
  background:#FFFFFF;
  color:#231F20;
  font-size:100%;
  font-family: Verdana;
  padding:0px;
  margin:0px auto;
  /*border:1px solid #E7E7E7;*/
  padding-left:1px;
  padding-right:1px;
}
fieldset {
  margin-bottom:1em;
}
fieldset p {
  padding:5px;
  margin:0px;
  margin-top:5px;
  margin-bottom:0px;
}
fieldset legend {
  font-size:0.9em;
}
form {
  margin-top:5px;
  margin-bottom:5px;
}
form div.notes p,
form div small {
  line-height:125%;
}
form div.notes ul {
  margin:0px;
  padding:0px;
  padding-left:2px;
}
form div.notes ul li {
  margin-left:15px;
  list-style-position:outside;
  padding-right:2px;
}
form fieldset div.notes {
  float:right;
  position:relative;
  right:30px;
  width:150px;
  height:auto;
  margin:0px 0px 10px 10px;
  padding:5px;
  border:1px solid #666666;
  background-color:#ffffe1;
  color:#666666;
  font-size:.75em;
}

form fieldset div.notes h4 {
  background-image:url(images/icon_info.png);
  background-repeat:no-repeat;
  background-position:top left;
  padding:3px 0px 2px 27px;
  border-width:0px 0px 1px 0px;
  border-style:solid;
  border-color:#666666;
  color:#666666;
  margin-bottom:5px;
  margin-top:0px;
  font-size:1.3em;
}

form fieldset div.notes p {
  margin:0em 0em 1.2em 0em;
  color:#666666;
}

form fieldset div.notes p.last {
  margin:0em;
  padding-bottom:5px;
}
form label {
    font-weight:bold;
}
h1 {
  font-size:125%;
}
h2 {
  font-size:100%;
}
h3 {
  font-size:100%;
  margin:0px;
}
img {
  border:0;
}
input {
  font-size:12px;
  font-family: Arial;
}

.admin-table td {
  font-size: 12px;
}

.admin-table {
  width: 100%;
  padding : 3px;
}

input,
submit,
td {
  color:#000000;
  font-size: 12px;
  font-family: Arial;
}

td {
  
  font-family: Arial; 
}
table {
  border:0px;
}
textarea {
  color:#000000;
  font-family: Arial;
  font-size:12px; 
}
th {
  color:#000000;
  background-color:#DAE0ED;
  font-weight:bold;
  padding-left:3px;
  text-align:left;
}
p {
  margin-top:5px;
}
select {
  color:#000000;
  font-size:12px;
  font-family: Arial;
}

/* CLASSES ********************************************************************/


.content-wrapper {
  font-size: 12px;
  /*padding: 2px 2px 2px 4px;*/
}

/* Admin lists ****************************************************************/
.admin-menu-icon {
  float:left;
  padding:5px;
}
.admin-menu {
  /* the box around the menu */
  padding:5px;
  border:1px solid #EEEEEE;
}
.admin-menu-text {
  /* the text below the links */
  padding:5px;
}
.admin-menu-item {
  /* a single link in the menu */
  padding: 0px 5px 0px 5px;
}
.admin-list-smalltable {
  text-align:left;
  border-spacing:1px;
}
.admin-list-table {
  width:100%;
  text-align:left;
  border-spacing:1px;
}
.admin-list-table form {
  margin:0px;
}
.admin-list-search {
  text-align:center;
  margin-top:5px;
  margin-bottom:5px;
}
.admin-list-field {
  text-align:left;
  padding-left:5px;
  padding-right:5px;
  font-size: 11px;
}
.admin-list-headerfield {
  text-align:left;
  padding-left:5px;
  padding-right:5px;
  padding-top:2px;
  padding-bottom:2px;
  font-size: 12px;
}
/* Menus in blocks ************************************************************/
.blocklist ul {
  list-style:none;
  padding:0px;
  margin:0px;
}
/* general alignment classes **************************************************/
.alignleft {
  text-align:left;
}
.alignright {
  text-align:right;
}
.aligncenter {
  text-align:center;
}
.aligntop {
  vertical-align:top;
}
.floatright {
  float:right;
}

.floatleft {
  float:left;
  padding-right: 9px;
}

.clearboth {
  clear:both;
}
/* clear floats by applying the clearfix class to float-encasing block !*******/
.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 */
/* general formatting classes *************************************************/
.b {
  font-weight:bold;
}
.ext-link {
  background-color: transparent;
  background: url(./images/external.png) center right no-repeat;
  background-attachment: scroll;
  padding-right: 13px;
}
.ext-link-rtl {
}
.feed-link {
  background-color: transparent;
  background: url(./images/feed.png) center right no-repeat;
  background-attachment: scroll;
  padding: 2px 16px 2px 0px;
}
.feed-link-rtl {
}
.strike {
  text-decoration: line-through;
}
/* Blocks *********************************************************************/
.block-box-left,
.block-box-right,
.block-box {
  /*margin:2px 0px 2px 2px;*/
}
.block-box-left ul,
.block-box-right ul {
  /* do not indent lists in the blocks too much */
  margin:0px;
  padding-left:20px;
}
.block-bg-left,
.block-bg-right {
}

.block-bg-spreader {
  /* this is making sure that the blocks have a minimum width */
  background:transparent;
  width:308px;
  height:1px;
}
.block-content,
.block-content-right,
.block-content-left {
  background:transparent;
  color:#000000;
  padding-bottom:2px;
  padding-top:2px;
  clear:both;
}
.block-content-left ul,
.block-content-right ul,
.block-content ul {
  margin-top:0;
  margin-bottom:0;
  margin-left:16px;
  padding-left:0;
  border:none;
}
.block-divider {
  background:#FFFFFF;
  /*border-bottom:1px solid #F7F7F7;
  border-top:1px solid #E7E7E7; */
  color:#000000;
  padding-top:2px;
}
.block-divider-left {
  /*border-top:1px solid #E7E7E7;
  border-bottom:1px solid #FFFFFF;*/
  width:90%;
  margin:0 auto;
  line-height:0px;
}
.block-divider-right {
  /*border-top:1px solid #CCCCCC;
  border-bottom:1px solid #FFFFFF;*/
  width:90%;
  margin:0 auto;
  line-height:0px;
}
.block-featured-left {
  background:#FFFFFF;
  border-left:1px solid #939598;
  color:#231F20;
  width:308px;
  padding-left: 9px;
 
}
.block-featured-right {
  background:#FFFFFF;
  /*border-left:1px solid #E3E4E5;*/
  color:#231F20;
}
.block-helpicon {
  padding-top:5px;
  text-align:right;
  float:right;
}
.block-outerborder-left {
  /*border-left:1px solid #E7E7E7; */
  padding:0px;
  margin:0px;
}
.block-outerborder-right {
  /*border-right:1px solid #CCCCCC;*/
}
.block-title,
.blocktitle,
.block-title-left,
.block-title-right {
  background:transparent;
  color:#1A3955;
  font-weight:bold;
  padding-top:5px;
  padding-bottom:5px;
  text-align:left;
}
/* Comments *******************************************************************/
.commentbar-line1 {
  background:transparent;
  color:#000000;
  padding:3px 3px;
  text-align:center;
}
.commentbar-line2 {
  background:#E7E7E7;
  text-align:center;
  padding-left:3px;
  padding-right:3px;
}
.commentbar-line3 {
  background:#FFFFFF;
  border-bottom:1px solid #FFFFFF;
  border-top:1px solid #E7E7E7;
  color:#000000;
  padding:3px 3px;
  text-align:center;
}
.commenttitle {
  background:#F7F7F7;
  border-bottom:1px solid #E7E7E7;
  border-left:1px solid #E7E7E7;
  border-right:1px solid #E7E7E7;
  border-top:1px solid #E7E7E7;
  font-weight:bold;
  font-size:smaller;
  padding:3px 0px 3px 10px;
}
.comment-edit {
  font-style: italic;
  padding-top:1ex;
}
.comment-sig {
  color:#666666;
  padding-top:1ex;
}
/******************************************************************************/
.edit-perm-down {
  text-align:center;
}
.edit-perm-up {
  text-align:center;
  padding-right:10px;
  padding-left:10px;
}
.fieldhelp {
  font-size:0.8em;
  color:#666666;
  padding-left:0.8em;
  padding-right:0.8em;
}
/* Footer *********************************************************************/
.footerblock {
  background:#1A3955;
  border-top:1px solid #CCCCCC;
  color:#FFFFFF;
  font-size:0.85em;
  padding-bottom:10px;
  padding-top:10px;
  padding-left:4px;
  padding-right:4px;
  vertical-align:middle;
}
.footerblock a:link {
  background:transparent;
  color:#FFFFFF;
  text-decoration:none;
}
.footerblock a:visited {
  background:transparent;
  color:#FFFFFF;
  text-decoration:none;
}
.footerblock a:hover {
  background:transparent;
  color:#008000;
  text-decoration:none;
}
.footerblock a:active {
  background:transparent;
  color:#FFFFFF;
  text-decoration:none;
}
.footer-divider-top {
  background-color: #FFF8DC;
  border-top:4px solid #939598;
  margin-top: 10px;
  


}

.footer-header {
  font-family: "Times New Roman";
  font-size: 33px;
  color: #25408F;
  letter-spacing: 1px;
}

.footer-links {
  border-top:1px solid #939598;
  border-bottom:1px solid #939598;
  color: #939598;
  padding : 8px 0 8px 0;
  font-size: 11px;
  font-family: Verdana;
}

.footer-links a:link, a:visited {
 
  color: #939598;
  text-decoration: none;
 
}

.footer-links a:hover {
 
  color: #939598;
  text-decoration: underline;
 
}




.footer-copyright {
   font-size: 11px;
   color: #25408F;
   padding-top: 5px;
   font-weight: bold;
}
   
.footer-text {
    font-size: 12px;
    color: #231F20;
    font-family: Verdana;
    
}





/* Forms **********************************************************************/
.form-description {
  font-weight:bold;
  float:left;
  width:100px;
  text-align:right;
  padding-right:5px;
  display:block;
}
.form-field {
  padding-bottom:5px;
  margin-left:105px;
}
.checkboxes-list {
  /* this is used for example by COM_checkList */
  list-style:none;
  padding:0px;
  margin:0px;
}
.checkboxes-list span {
  /* space between the text and the checkbox */
  padding-left:5px;
}
.checkboxes-list .gldefault {
  /* default blocks in the user settings block list */
  font-weight:bold;
}
.missing-field {
  /* reserved for future use */
}
.required-field {
  /* reserved for future use */
}
/* Header *********************************************************************/
.header-logo {
  padding:0px;
 
}

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

a.header-logo:hover
{
 
  text-decoration:none;
}

.header-logobg-container-inner {
  margin-bottom:0px;
  
}
.header-navigation-container {
  border-bottom:1px solid #FFFFFF;
  background:#E7E7E7;
}
.header-navigation-container ul {
  list-style: none;
  padding:0px;
  margin:0px;
  border-bottom:1px solid #CCCCCC;
  color:#FFFFFF;
  float:right;
  height:24px;
}
.header-navigation-container li {
  float:left;
  padding-right:9px;
  padding-left:9px;
  margin-top:4px;
  background:transparent;
  font-size:.9em;
  border-left: 1px dotted #FFFFFF;
}
.header-navigation-container a:link {
  color:#0000FF;
}
.header-navigation-container a:visited {
  color:#800080;
}
.header-navigation-container a:hover {
  color:#008000;
}
.header-navigation-container a:active {
  color:#FF0000;
}
.header-welcomeanddate-text {
  padding-top:12px;
  padding-left:4px;
  margin: 0px;
  height:40px;
  border-bottom:1px solid #CCCCCC;
}

.header-top-bar {
  border-top: solid 1px #939598;
  font-size: 11px;
  padding-top: 3px;
  padding-bottom: 3px;
  font-family: Verdana;
  background: #F0F0F0;
  
  
  
  
}
.header-top-bar .date {
  color: #0066CC;
  font-family: Verdana;
  font-size: 11px;
}


.header-searchform {
  color : #ED1C24;
}


.header-searchform-elements {
  display:inline;
  position:relative;
  /*top:6px;*/
}
.header-searchform-elements input {
  
  color: #231F20;
  border: solid 1px #ED1C24;
  font-size: 11px;
  font-weight:bold;
   font-family: Verdana;
  
}

.advanced-search {
  color: #ED1C24;
  font-size: 11px;
  font-weight:normal;
  font-family: Verdana;
}
a.advanced-search:link, a.advanced-search:visited {
 color: #ED1C24;
  font-size: 11px;
  font-weight:normal;
  font-family: Verdana;
  text-decoration: none;
}

a.advanced-search:hover {
  text-decoration: underline;
}




.header-searchform-elements .searchform-button {
  color : #FFFFFF;
  background-color: #ED1C24;
  font-size: 11px;
  font-family: Verdana;
  font-weight:bold;
  width:80px;
  text-align:left;
  
  
}

.header-menu-bar {
  border-top: solid 4px #9D9FA2;
  border-bottom: solid 4px #9D9FA2;
  font-weight: bold;
  padding: 5px;
  color: #9D9FA2;
  line-height: 1.6em;
  margin-bottom: 10px;
  
}

.header-menu-bar .highlight {
  color: #ED1C24;
  background-image: url('images/menu_separator.gif');
  background-repeat : no-repeat;
  padding-left : 20px;
  background-color: transparent;
}

.header-menu-bar .separator {
  color: #0066CC;
}

a:link.menu-bar {
  color:#9D9FA2;
}

a:visited.menu-bar {
  color:#9D9FA2;
}
a:hover.menu-bar {
  color:#9D9FA2;
  text-decoration: underline;
}
a:active.menu-bar {
  color:#9D9FA2;
}


/******************************************************************************/
.highlight {
  color:#000000;
  background-color:yellow;
  text-decoration:none;
}
.inputTable td {
  padding:4px;
  vertical-align:top;
}
.inputTable label {
  font-weight:bold;
  float:right;
  white-space:nowrap;
}
.moderation-cc {
  width:100%;
}
.moderation-cc-row {
  clear:both;
  height:80px;
  width:100%;
}
.moderation-cc-item {
  float:left;
  text-align:center;
}
.nowrap {
  white-space:nowrap;
}
.pagenav {
  text-align:center;
}
.row_center td {
  text-align:center;
}
.searchauth {
  background:transparent;
  color:#000000;
  text-align:left;
}
.searchdate {
  background:transparent;
  color:#000000;
  text-align:right;
}
.searchform-box {
  background:#E7E7E7;
  text-align:right;
  border-bottom:1px solid #CCCCCC;
  height:52px;
  padding:0px 4px 0px 1px;
  margin:0px;
}
.searchform-elements {
  display:inline;
  position:relative;
  top:6px;
}
.searchform-elements input {
  font-size:0.9em;
}
.searchhits {
  background:transparent;
  color:#000000;
  text-align:right;
}
.searchresult-byline {
  color:green;
}
.site-slogan {
  color:#ffffff;
  background:transparent;
}
.sysmessage img {
  border:none;
  float:left;
  padding-bottom:3px;
  padding-right:5px;
}
/* Stats **********************************************************************/
.stats-list-count {
  text-align:right;
  padding-left:5px;
  padding-right:5px;
}
.stats-header-title {
  text-align:left;
  width:90%;
  padding-left:5px;
  padding-right:5px;
}
.stats-header-count {
  text-align:left;
  width:10%;
  padding-left:5px;
  padding-right:5px;
}
/* Story **********************************************************************/
.story {
  /* the frame around all elements of one story */
  background:transparent;
  
}
.story h1 {
  /* the title of a story */
  background:transparent;
  color:#000000;
  font-weight:bold;
  padding-left:1px;
}
.story-body {
  /* this is the actual content of the story */
  padding:3px;
}
.story-featured {
  /* the frame around all elements of a featured story */
  background:transparent;
  color:#000000;
}
.story-featured h1 {
  /* the title of a featured story */
  background:transparent;
  color:#000000;
  font-weight:bold;
  font-size:1.4em;
  padding-left:1px;
}
.story-icons {
  /* print & mail icons in a storybox */
  float:right;
  padding-top:10px;
}
.story-icons a {
  margin-left:5px;
}
.story-container {
  /* frame around all stories & centerblocks*/
  /*padding-right:3px;*/
  width:960px;
  vertical-align:top;
}
.story-footer {
  /* the bottom of the story with edit-links etc */
  padding:3px;
  text-align:center;
  clear:both;
}
.story-footer p {
  padding:0px;
  margin:0px;
}
.story-information {
  /* the author, views and date of a story */
  padding:3px;
  font-size:11px;
  background:transparent;
  color:#000000;
}
.story-information p {
  padding:0px;
  margin:0px;
}
/******************************************************************************/
#token-expirynotice {
  padding:1em;
  border:1px solid #CCCCCC;
  background:#F7F7F7;
}
#token-expirytime {
  font-weight:bold;
}
.topicoption,
.topicoption-off {
}
.warning {
  background:transparent;
  color:#FF0000;
  font-weight:bold;
}
.warningsmall {
  background:transparent;
  color:#FF0000;
}

/* Default Plugin CSS Declarations */
/* Recommended CSS to be used by Plugin Authors - allows easier site themeing */

.plugin {
  color:#000000;
  background-color:#EFEFEF;
  font-weight:normal;
  border:1px solid #CCCCCC;
}
.plugin th {
  color:#000000;
  background-color:#B7C1DC;
  padding:5px;
  text-align:left;
}
.plugin tr {
  vertical-align:top;
}
.plugin td {
  padding:2px 5px 2px 5px;
}
.pluginBG {
  color:#FEFEFE;
  background-color:#7398BA;
}
.pluginAltBG {
  background-color:#7398BA;
}
.pluginAltBG td {
  color:#FFFFFF
}
.pluginCellTitle {
  color:#666666;
  font-weight:bold;
  background-color:#E6E6E6;
  padding:5px;
}
.pluginCellFill {
  background-color:#F8FAFD;
}
.pluginCellText {
  color:#636363;
  font-weight:normal;
}
.pluginHeader {
  color:#204275;
  font-weight:bolder;
  padding-top:3px;
  padding-bottom:3px;
}
.pluginFooter, .pluginFooter td {
  background-color:#507AA1;
  color:#FFFFFF;
  }
.pluginAlert {
  padding:5px 15px 5px 15px;
  color:#D8010E;
  background-color:#FEF1B4;
  font-weight:bold;
}
.pluginInfo {
  padding:5px 15px 5px 15px;
  color:#707070;
  background-color:#FEF1B4;
  font-weight:normal;
}
.pluginSubTable {
  color:#000000;
  background-color:#CCCCCC;
  font-weight:normal;
  border:1px solid #CCCCCC;
}
.pluginSubTable th {
  color:#000000;
  background-color:#C9D1E4;
  padding:5px;
  text-align:left;
}
.pluginSubTable tr {
  vertical-align:top;
}
.pluginSolidOutline {
  background-color:#CCCCCC;
}
.pluginSolidFill {
  background-color:#1A3955;
}
.pluginTitle {
  background-color:#507AA1;
  color:#F5F9FF;
  padding:4px;
  padding-left:6px;
  padding-right:6px;
}
.pluginCellSubTitle {
  background-color:#F7F7F7;
  color:#000000;
  padding:4px;
  padding-left:6px;
  padding-right:6px;
}
.pluginTinyText {
  font-size:0.70em;
}
.pluginSmallText {
  font-size:0.8em;
}
.pluginMediumText {
  font-size:1em;
}
.pluginLargeText {
  font-size:1.25em;
}
.pluginAltText {
  color:#FFFFFF;
}
.pluginRow1, .pluginRow1 td {
  color:#000000;
  background-color:#F7F7F7;
  /*line-height:120%;*/
}
.pluginRow2, .pluginRow2 td {
  color:#000000;
  background-color:#E7E7E7;
  /*line-height:120%;*/
}

.pluginRow1 .pluginRollOver,
.pluginRow2 .pluginRollOver,
.pluginRollOver {
  color:#000000;
  background-color:#FFFFFF;
  /*line-height:120%;*/
}

.pluginRow1 .pluginRollOut,
.pluginRow2 .pluginRollOut,
.pluginRollOut {
  color:#000000;
  background-color:#F7F7F7;
  /*line-height:120%;*/
}
.pluginLinks A:link {
  color:#000000;
  font-style:normal;
  font-weight:normal;
  text-decoration:none;
}
.pluginLinks A:visited {
  color:#000000;
  font-style:normal;
  font-weight:normal;
  text-decoration:none;
}
.pluginLinks A:hover {
  color:#000000;
  font-style:normal;
  font-weight:normal;
  text-decoration:underline;
}
.pluginBreadCrumbs,
.pluginBreadCrumbs A:link {
  color:#FFFFFF;
  font-style:normal;
  font-weight:normal;
  text-decoration:none;
}
.pluginBreadCrumbs A:visited {
  color:#FFFFFF;
  font-style:normal;
  font-weight:normal;
  text-decoration:none;
}
.pluginBreadCrumbs A:hover {
  color:#FFFFFF;
  font-style:normal;
  font-weight:normal;
  text-decoration:none;
}
a.pluginButton:link, a.pluginButton:visited {
  color:#000000;
  text-align:center;
  padding-top:2px;
  display:block;
  height:19px;
  text-decoration:none;
  background-color:transparent;
}
a.pluginButton:hover {
  color:blue;
  text-align:center;
  padding-top:2px;
  background:center url(navbar/images/button_over.gif);
  background-repeat:repeat-x;
  display:block;
  height:19px;
  text-decoration:none;
  background-color:transparent;
}

/* Navbar Class CSS ***********************************************************/
#navcontainer {
  float:left;
  width:100%;
  background:#F4F4F4;
  font-size:93%;
  line-height:normal;
  border-bottom:1px solid #24618E;
  }
#navcontainer ul {
  margin:0px;
  padding:10px 10px 0 50px;
  list-style:none;
}
#navcontainer li {
  display:inline;
  margin:0px;
  padding:0px;
}
#navcontainer a {
  float:left;
  background:url("navbar/images/tableftJ.gif") no-repeat left top;
  margin:0px;
  padding:0px 0px 0px 5px;
  text-decoration:none;
}
#navcontainer a span {
  float:left;
  display:block;
  background:url("navbar/images/tabrightJ.gif") no-repeat right top;
  padding:5px 15px 4px 6px;
  color:#24618E;
}
/* Commented Backslash Hack hides rule from IE5-Mac \*/
#navcontainer a span {
  float:none;
}
/* End IE5-Mac hack */
#navcontainer a:hover span {
  color:#FFFFFF;
}
#navcontainer a:hover {
  background-position:0% -42px;
}
#navcontainer a:hover span {
  background-position:100% -42px;
}
#navcontainer a#current span {
  background:url("navbar/images/tabrightI.gif") no-repeat left top;
  background-position:100% -42px;
  color:#FFFFFF;
}
#navcontainer a:link#current,
#navcontainer a:visited#current,
#navcontainer a:hover#current {
  background:url("navbar/images/tableftI.gif") no-repeat left top;
  background-position:0% -42px;
}

/* Common CSS for on-hover tooltip feature */
a.gl-tooltip {
    border-bottom: 1px dotted #000000; color: #000000; outline: none;
    text-decoration: none;
    position: relative;
}
a.gl-tooltip span {
    margin-left: -999em;
    position: absolute;
    text-align: left;
    width: 250px;
}
a.gl-tooltip:hover span {
    border-radius: 8px; -moz-border-radius: 8px; -webkit-border-radius: 8px; 
    box-shadow: 2px 2px 8px #666; -webkit-box-shadow: 2px 2px 8px #666; -moz-box-shadow: 2px 2px 8px #666;
    font-family: Calibri, Tahoma, Geneva, sans, sans-serif;
    position: absolute; left: 2.2em; top: 2.2em; z-index: 99;
    margin-left: 0; width: 250px;
}
a.gl-tooltip:hover img.icon {
    border: 0; margin: -15px 0 0 -51px;
    float: left; position: absolute;
}
a.gl-tooltip img#gl-tooltip-icon { 
    border: 0;
}
a.gl-tooltip:hover em {
    font-family: Candara, Tahoma, Geneva, sans, sans-serif; font-size: 1.2em; font-weight: bold;
    display: block; padding: 0.2em 0 0.6em 0.4em;
}
span.classic     { padding: 0.8em 1em; }
span.custom      { padding: 0.5em 0.8em 0.8em 2em; }
* html a:hover   { background: transparent; }
span.classic     { background: #EEEEEC; border: 2px solid #555753; }
span.critical    { background: #F5F0F0; border: 2px solid #A40000; }
span.help        { background: #EDF0F2; border: 2px solid #204A87; }
span.info        { background: #EDF0F2; border: 2px solid #204A87; }
span.warning     { background: #FCF7EF; border: 2px solid #CE5C00; font-weight: normal; color: black; }

span.critical em { color: #A40000; }
span.help     em { color: #204A87; }
span.info     em { color: #204A87; }
span.warning  em { color: #CE5C00; }

/* End of common CSS for on-hover info feature */

#admin-editor dt#title {
  display:     block;
  font-size:   13px;
  font-weight: bold;
  position:    relative;
  top:         10px;
}

#admin-editor input#close {
  width: 150px;
}

/* Used by lib-plugin.php to display dependencies */
b.notbold { /* hack for HTML compliance inside tooltips */
  font-weight: normal;
}

b.status_red {
  display:     inline;
  color:       #a40000;
}

b.status_orange {
  display:     inline;
  color:       #b25000;
}

b.status_green {
  display:     inline;
  color:       #3d7805;
}

b.status_black {
  display:     inline;
  color:       black;
}

/* End of Common Plugin CSS */

.search-results {
    
    
    padding-top:10px;
    padding-bottom: 5px;
    font-weight: bold;
}

/*******************************************************************************
* TAGS
*******************************************************************************/
a.bluelink:link,a.bluelink:visited {
    font-style: normal;
    color: #0066CC;
    text-decoration: none
}
        
a.bluelink:active,a.bluelink:hover {
    font-style: normal;
    color: #0066CC;
    text-decoration: underline
}

a.redlink:link,a.redlink:visited {
    font-style: normal;
    color: #ED1C24;
    text-decoration: none
}
        
a.redlink:active,a.redlink:hover {
    font-style: normal;
    color: #ED1C24;
    text-decoration: underline
}
    

.source {
    color: #0066CC;
    font-weight: bold;
    font-style: italic;
}

/*******************************************************************************
* END TAGS
*******************************************************************************/
    

.main-content-area {
    width:634px;
    padding-top: 12px;
    
}

.column1 {
    width:308px;
    padding-right: 8px;
    border-right: 1px solid #939598;
  
}

.column2 {
  width: 308px;
  padding-left: 9px;
  
}

.column5 {
    width:145px;
    padding-right: 8px;
    border-right: 1px solid #939598;
}

.column6 {
    width:145px;
    padding-left: 9px;
   
}

.spacer-column {
    width: 8px;
    /*border-right:1px solid #939598;*/
}

.header-issueno {
  
  color: #25408F;
  font-family: Verdana;
  font-size: 10px;
  font-weight: normal;
  
}

.header-issueno- {
  
  color: #25408F;
  font-family: Verdana;
  font-size: 10px;
  font-weight: normal;
  top: 105px;
  
}

.header-issueno-UWorld {
  
  color: #25408F;
  font-family: Verdana;
  font-size: 10px;
  font-weight: normal;
  top: 105px;
  
}

.header-issueno-Africa_Edition {
  
  color: #25408F;
  font-family: Verdana;
  font-size: 10px;
  font-weight: normal;
  top: 3px;
  
}

.header-issueno-UWorld_Special {
  
  color: #25408F;
  font-family: Verdana;
  font-size: 10px;
  font-weight: normal;
  top: 0px;
  
}

.header-issueno-Africa {
  
  color: #25408F;
  font-family: Verdana;
  font-size: 10px;
  font-weight: normal;
  top: 0px;
  
}

.notes {
  color : #0066CC;
  font-size :11px;
}



.grey_dot_line {
  width: 100%;
  background-image: url('images/grey_dot.gif');
  height:3px;
}

.grey_dot_line_short {
  width: 308px;
  background-image: url('images/grey_dot.gif');
  height:3px;
  
}

.grey_line {
  width: 100%;
  border-top: 1px solid #939598;
  margin-top: 4px;
    
}

.news_column
{
  border-right: 1px solid #939598;
}



.thick_grey_line {
  width: 100%;
  border-top: 4px solid #939598;
  /*padding-bottom:2px;*/
  
}

.vertical-left-div {
  border-left: 1px solid #939598;

}

.categoryheading {
  font-family: Verdana;
  font-size:  20px;
  color: #0066CC;
  font-weight: normal;
  padding-bottom: 9px;
}

.topic-heading {
  font-family: Verdana;
  font-size:  20px;
  color: #0066CC;
  font-weight: normal;
}

.topic-spacer {
    height: 12px;
}

.photo-topic-heading
{
  font-family:Verdana Bold,  Verdana;
  background-color: #009900;
  color: #FFFFFF;
  font-size: 11px;
  line-height:18px;
  font-weight:bold;
  width: 139px;
  padding-left: 6px;
}

.photo-topic-caption
{
  
  font-family: Verdana Bold, Verdana;
  color: #6D6F71;
  font-weight: bold;
  font-size: 14px;
  line-height: 15px;
}


a.photo-topic-caption:link, a.photo-topic-caption:visited
{
  font-family: Verdana Bold Verdana;
  color: #6D6F71;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
}

a.photo-topic-caption:hover
{
 
  text-decoration: underline;
}

.photo-topic-spacer {
  border-top: 1px solid #939598;
  padding-bottom: 14px;
}



.sidebar-text {
  font-family: Verdana;
  font-size: 12px;
  font-weight:normal;
  line-height: 12px;
}

.sidebar-link {
  font-family: Verdana;
  font-size: 12px;
  font-weight:normal;
  line-height: 12px;
  color: #0066CC;
}



a.sidebar-link:link, a.sidebar-link:visited {
  font-family: Verdana;
  font-weight:normal;
  text-decoration: none;
  color: #0066CC;
}

a.sidebar-link:hover {
  text-decoration: none;
}


.full-story-container {
  width: 634px;
}

.full-story-sidebar {
  width: 145px;
  padding-right: 9px;
 
}

.full-story-content {
  width : 471px;
  padding-left:8px;
  border-left: 1px solid #939598;
  
  
}


.full-story-country
{
  font-family: Verdana Bold, Verdana;
  color: #ED1C24;
  font-weight: bold;
  font-size:10px;
  line-height:28px;
}


.full-story-article-title {
  font-family: Verdana Bold, Verdana;
  font-size: 30px;
  line-height: 32px;
  font-weight: bold;
 
}


.full-story-info {
  font-size: 12px;
  line-height: 18px;
    
}

.full-story-writer {
  font-family: Verdana Bold, Verdana;
  color: #0066CC;
  font-weight:bold;
  padding-right:3px;
  
}


.full-story-date {
  font-family: Verdana, sans-serif;
  font-weight: normal;
  padding-right: 3px;
 
}

.full-story-issueno {
  font-family: Verdana;
  color: #0066CC;
  font-weight: normal;
  
}



.fullstory-article-image {
   
  padding-bottom:6px;
  padding-top: 3px;
 
}

.full-story-body {
 	font-family: Verdana;
        font-size: 14px;
        line-height: 18px;

}

.full-story-disclaimer {
  font-family: Verdana;
  font-size: 12px;
  font-style: italic;
  line-height:16px;
  
}

.full-story-disclaimer-header {
  color : #009900;
  font-weight: bold;
}





.featured-article {
  
  border-bottom: 4px solid #939598;
  width:634px;
 
}




.featured-article-title {
  font-family: Verdana Bold, Verdana;
  font-size: 24px;
  line-height: 26px;
  
  font-weight: bold;
   color: #231F20;
  /*padding-top: 5px;*/
  
}

a.featured-article-title:link, a.featured-article-title:visited {
  font-family: Verdana Bold, Verdana;
  font-size: 24px;
  line-height: 26px;
  font-weight: bold;
  text-decoration: none;
  color: #231F20;
}

a.featured-article-title:hover {
  text-decoration: none;
}

.featured-article-intro
{
  font-family: Verdana;
  font-size: 14px;
  
}

.featured-story-writer
{
  font-family: Verdana Bold, Verdana;
  font-size: 12px;
  line-height:26px;
  font-weight: bold;
  color: #0066CC;
}

.featured-story-country
{
  font-family: Verdana;
  color: #ED1C24;
  font-weight: bold;
  font-size:10px;
  line-height:17px;
}



.main-article {
  /*padding-bottom: 7px;*/
  /*padding-top:14px;*/
 
  
}

.main-article-title {
  font-family: Verdana Bold, Verdana;
  font-size: 18px;
  font-weight: bold;
  line-height:19px;
   color: #231F20;
  /*padding-top: 5px;*/
  
}

a.main-article-title:link, a.main-article-title:visited {
 font-family: Verdana Bold, Verdana;
  font-size: 18px;
  line-height:19px;
  font-weight: bold;
  text-decoration: none;
  color: #231F20;
}

a.main-article-title:hover {
  text-decoration: none;
   color: #231F20;
}

.main-article-intro
{
  font-family: Verdana;
  font-size: 14px;
  
}

.main-story-writer
{
  font-family: Verdana Bold, Verdana;
  font-size: 12px;
  line-height:16px;
  font-weight: bold;
  color: #0066CC;
}

.main-story-country
{
  font-family: Verdana;
  color: #ED1C24;
  font-weight: bold;
  font-size:10px;
  line-height:17px;
}


.short-article {
  
  /*padding-bottom: 7px;*/
  
  
}

.short-article-title {
  font-family: Verdana;
  font-size: 14px;
  font-weight: bold;
   color: #231F20;
  /*padding-top: 5px;*/
  
}

a.short-article-title:link, a.short-article-title:visited {
 font-family: Verdana;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
   color: #231F20;
}

a.short-article-title:hover {
  text-decoration: none;
   color: #231F20;
}

.short-article-intro
{
  font-family: Verdana;
  font-size: 12px;
  font-weight: normal;
  
  
}

.short-story-writer
{
  font-family: Verdana;
  font-size: 12px;
  line-height:16px;
  font-weight: normal;
  color: #0066CC;
}

.short-story-country
{
  font-family: Verdana;
  color: #ED1C24;
  font-weight: bold;
  font-size:10px;
  line-height:15px;
}


.headline-article {
  
  /*padding-bottom: 7px;*/
  
  
}

.headline-article-title {
  font-family: Verdana;
  font-size: 14px;
  font-weight: bold;
   color: #231F20;
  
  
}

a.headline-article-title:link, a.headline-article-title:visited {
 font-family: Verdana;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
   color: #231F20;
}

a.headline-article-title:hover {
  text-decoration: none;
   color: #231F20;
}


.headline-story-country
{
  font-family: Verdana;
  color: #ED1C24;
  font-weight: bold;
  font-size:10px;
  line-height:15px;
}

.headline-story-writer
{
  font-family: Verdana;
  font-size: 12px;
  line-height:16px;
  font-weight: normal;
  
}

.headline-story-credit
{
  font-family: Verdana;
  font-size: 12px;
  line-height:16px;
  font-weight: normal;
  font-style: italic;
  color: #6D6E71;
}


.article-divider {
  width: 100%;
  border-top: 1px solid #939598;
  
}

.special-africa-intro-article-title {
  font-family: Verdana Bold, Verdana;
  font-size: 20px;
  font-weight: bold;
  color: #231F20;
  /*padding-top: 5px;*/
  
}



.special-africa-intro-article-intro
{
  font-family: Verdana;
  font-size: 14px;
  line-height: 18px;
  
}

.special-africa-intro-info
{
  font-family: Verdana;
  font-size: 12px;
  line-height: 16px;
  text-align:right;
}

.special-africa-intro-story-writer
{
  font-family: Verdana Bold, Verdana;
  font-weight: bold;
  color: #0066CC;
}

special-africa-intro-story-institution
{
  font-family: Verdana;
  font-weight: normal;
  color: #231F20;
}


.special-africa-featured-article-title {
  font-family: Verdana Bold, Verdana;
  font-size: 24px;
  line-height: 26px;
  font-weight: bold;
  color: #231F20;
 
  
}


a.special-africa-featured-article-title:link, a.special-africa-featured-article-title:visited {
  font-family: Verdana Bold, Verdana;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #231F20;
}

a.special-africa-featured-article-title:hover {
  text-decoration: none;
  color: #231F20;
}



.special-africa-featured-article-intro
{
  font-family: Verdana;
  font-size: 14px;
  line-height: 16px;
  font-weight:normal;
}

.special-africa-featured-story-interviewee
{
  font-family: Verdana Bold, Verdana;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  color: #0066CC;
}

.special-africa-featured-story-institution
{
  font-size: 14px;
  line-height: 16px;
  font-family: Verdana;
  font-weight: normal;
  color: #ED1C24;
}

.special-africa-featured-story-writer
{
  font-size: 14px;
  line-height: 16px;
  font-family: Verdana;
  font-weight: normal;
  color: #6D6E71;
}


.special-africa-main-article-title {
  font-family: Verdana;
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  color: #231F20;
 
  
}


a.special-africa-main-article-title:link, a.special-africa-main-article-title:visited {
  font-family: Verdana;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #231F20;
}

a.special-africa-main-article-title:hover {
  text-decoration: none;
  color: #231F20;
}




.special-africa-main-article-intro
{
  font-family: Verdana;
  font-size: 12px;
  line-height: 16px;
  font-weight:normal;
}

.special-africa-main-story-interviewee
{
  font-family: Verdana Bold, Verdana;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  color: #0066CC;
}

.special-africa-main-story-institution
{
  font-size: 14px;
  line-height: 16px;
  font-family: Verdana;
  font-weight: normal;
  color: #ED1C24;
}

.special-africa-main-story-writer
{
  font-size: 14px;
  line-height: 16px;
  font-family: Verdana;
  font-weight: normal;
  color: #6D6E71;
}

.special-africa-article-divider {
  width: 100%;
  padding-top:16px;
  border-bottom: 2px solid #ED1C24;
  
}




.first-intopic-story-country {
  font-family: Verdana Bold, Verdana;
  color: #ED1C24;
  font-weight: bold;
  font-size:10px;
  line-height:28px;
}

.first-intopic-article-title
{
  font-family: Verdana Bold, Verdana, sans-serif;
  font-size: 28px;
  line-height: 32px;
  font-weight: bold;  
}

a.first-intopic-article-title:link, a.first-intopic-article-title:visited {
  font-family: Verdana Bold, Verdana;
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
}

a.first-intopic-article-title:hover {
  text-decoration: none;
}

.topic-story-info {
  font-size: 12px;
  line-height: 18px;
    
}

.topic-story-writer {
  font-family: Verdana Bold, Verdana;
  color: #0066CC;
  font-weight:bold;
  padding-right:3px;
  
}


.topic-story-date {
  font-family: Verdana, sans-serif;
  font-weight: normal;
  padding-right: 3px;
 
}

.topic-story-issueno {
  font-family: Verdana;
  color: #0066CC;
  font-weight: normal;
  
}

.topic-story-country {
  font-family: Verdana Bold, Verdana;
  color: #ED1C24;
  font-weight: bold;
  font-size:10px;
  line-height:16px;
}




.topic-article-intro
{
  font-family: Verdana;
  font-size: 12px;
  line-height: 14px;
  font-weight: normal;  
}




.topic-article-title
{
  font-family: Verdana Bold, Verdana;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;  
}

a.topic-article-title:link, a.first-intopic-article-title:visited {
  font-family: Verdana Bold, Verdana;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}

a.topic-article-title:hover {
  text-decoration: none;
}

.first-intopic-article-intro {
  font-family: Verdana;
  font-size: 12px;
  line-height: 14px;
  
}

.topic-article-image {
  width: 159px;
  border-right: 1px solid #939598;
  height: 100%;
}



.top-story-block
{
  background-color: #F5F5DC;
  border-top: 4px solid #939598;
  width: 145px;
  padding-bottom: 20px;

}

.top-story-header {
  
  color: #0066CC;
  font-family: Verdana, sans-serif;
  font-size: 20px;
  line-height: 21px;
  padding-left: 6px;
  padding-right:6px;
  padding-top: 24px;
}

.top-story-country {
  font-family: Verdana Bold, Verdana, sans-serif;
  font-weight: bold;
  font-size: 10px;
  line-height: 16px;
  padding-left: 6px;
  padding-right:6px;
  color: #0066CC; 
}

.top-story-title {
  font-family: Verdana, sans-serif;
  font-size: 14px;
  line-height: 16px;
  padding-left: 6px;
  padding-right:6px;
}

a.top-story-title:link, a.top-story-title:visited {
  font-family: Verdana, sans-serif;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  padding: 0;
}

a.top-story-title:hover {
  text-decoration: none;
}

.top-story-divider {
  border-bottom: 1px solid #939598;
  height:14px;
}

.special-report-container {
  width: 634px;
} 

.special-report-title {
  font-family: Verdana;
  font-size: 30px;
  line-height: 32px;
  font-weight: bold;
  text-decoration: none;
  padding-top: 2px;
  padding-bottom:2px;
}

.special-report-story-info {
  font-size: 12px;
  line-height: 18px;
    
}

.special-report-story-writer {
  font-family: Verdana Bold, Verdana;
  color: #0066CC;
  font-weight:bold;
  padding-right:3px;
  
}


.special-report-story-date {
  font-family: Verdana, sans-serif;
  font-weight: normal;
  padding-right: 3px;
 
}

.special-report-story-issueno {
  font-family: Verdana;
  color: #0066CC;
  font-weight: normal;
  
}


.special-report-intro
{
  font-family: Verdana;
  font-size: 14px;
  line-height:18px;
}




.special-report-story-country
{
  font-family: Verdana Bold, Verdana;
  color: #ED1C24;
  font-weight: bold;
  font-size:10px;
  line-height:16px;
}

.special-report-story-title
{
  font-family: Verdana Bold, Verdana, sans-serif;
  font-size:12px;
  line-height: 14px;
  font-weight:bold;
}

a.special-report-story-title:link
{
  font-family: Verdana Bold, Verdana, sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}

a.special-report-story-title:hover
{
 
  text-decoration: none;
}

a.special-report-story-title:link
{
  font-family: Verdana Bold, Verdana, sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}


.special-report-list-title
{
  font-family: Verdana Bold, Verdana, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 16px;
}

a.special-report-list-title:link
{
  font-family: Verdana Bold, Verdana, sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}

a.special-report-list-title:hover
{
  text-decoration: none;
}

.special-reports-list
{
  padding-top: 10px;
 
}


.special-report-short-body {
  padding-top: 10px; 
}



.special-report-list-article-title
{
    font-family: Verdana;
    font-weight: bold;
    font-size: 12px;
}

a.special-report-list-article-title:link, a.special-report-list-article-title:visited {
 font-family: Verdana;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
}

a.special-report-list-article-title:hover {
  text-decoration: none;
}

.special-report-list-article-intro {
  font-family: Verdana;
  font-size: 12px;
  padding-top: 5px;
  
}




.article-sidebar {
  width: 153px;
  padding-right: 6px;
  
  
}



.article-image {
  border: 1px solid #C6C8CA;
}



.list-story {
  border-bottom : 1px solid #939598;
  padding-bottom: 4px;
}


story-read-more-link
a.list-story-headinglink:link, a.story-read-more-link:link {
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  padding-top: 2px;
  padding-bottom:2px;}
  


story-read-more-link
a.list-story-headinglink:link, a.story-read-more-link:link {
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  padding-top: 2px;
  padding-bottom:2px;}
  

    
.shortstorybody {
	padding-top: 10px;
        font-size: 11px;
}


  
    


.story-country
{
  font-family: Verdana Bold, Verdana;
  color: #ED1C24;
  font-weight: bold;
  font-size:10px;
  line-height:17px;
}

.related-block {
   margin-top: 36px;
   border-top: 1px solid #939598;
   padding-top:2px;
   font-size:12px;
   line-height:16px;
   font-family: Verdana;
}

.related-header {
  font-family: Verdana Bold, Verdana, sans-serif;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
   color : #009900;
}

.related-country
{
  font-family: Verdana Bold, Verdana;
  color: #ED1C24;
  font-weight: bold;
  font-size:10px;
  line-height:17px;
}
    


.related-links {
  font-family: Verdana;
  color : #009900;
  font-weight: bold;
  font-size: 12px;
  
}


a.related-link:link
{
  font-family: Verdana;
  font-size: 12px;
  font-weight: normal;
  text-decoration: none;
}

a.related-link:hover
{
 
  text-decoration: underline;
}





.required
{
  padding-left: 3px;
  font-size: 1.3em;
  font-weight:bold;
  
}

.button_submit_narrow {
	background: #FFFFFF;
	border: 1px solid #2c6b9e;
	color: #2c6b9e;
	font-weight: bold;
	font-style: normal;
	padding: 2px;
	letter-spacing: 0;
	cursor:pointer;
}

.button_submit_narrow:hover {
	background:#F5F6F7;
}

.block-box h2 {
  color : white;;
  background-color: #0066CC;
  padding: 1px;
  font-size: 12px;
}

.bold_ul {
  font-weight:bold;
  text-decoration: underline;
}

input.comment_url{
  display:none;
}

.form_warning {
  background:transparent;
  color:#FF0000;
  font-weight:bold;
}

/*******************************TOP STORIES************************************/
.top-stories {
  background-color: #F5F5DC;
  color: #231F20;
  font-family: Verdana;
  font-size: 11px;
  padding-left: 6px;
  padding-right:6px;
  border-top: 4px solid #939598;
}

.top-stories a:link, a:visited {
 
  color: #231F20;
  text-decoration: none;
  font-size: 12px;
 
}

.top-story-country {
    color: #0066CC;
    font-weight:bold;
    font-size: 11px;
}

.top-stories a:hover {
 
  color: #231F20;
  text-decoration: underline;
 
}

.top-stories-head {
    font-size: 20px;
    color: #0066CC;
    font-weight: normal;
    
}






/************************** DROPDOWN MENU *************************************/

/* LEVEL ONE*/


.dropdown .highlight {
  color: #ED1C24;
  background-image: url('images/menu_separator.gif');
  background-repeat : no-repeat;
  padding-left : 20px;
  background-color: transparent;
}

.dropdown .separator {
  color: #0066CC;
  font-weight: normal;
}


ul
{
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

ul.story
{
  list-style: disc;
  padding-left: 20px;
}

ul.dropdown
{
  position: relative;
}
ul.dropdown li {
  font-weight: bold;
  font-family: Verdana Bold, Verdana;
  font-size: 13px;
  line-height: 24px;
  float: left;
  color: #6D6E71;
}


ul.dropdown a:hover {
  color: #6D6E71;
  text-decoration:none
}

ul.dropdown a:active {
  color: #6D6E71;
}

ul.dropdown li a  {
  display: block;
  padding: 2px 2px;
  /*border-right: 1px solid #FFFFFF;*/
  color: #6D6E71;
}
ul.dropdown li:last-child a  {
  border-right: none;
} /* Doesn't work in IE */
    
ul.dropdown li.hover,ul.dropdown li:hover {
  position: relative;
}

ul.dropdown li.hover a {
}


/* LEVEL TWO */
	

ul.dropdown ul 	{
  width: 220px;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFF8DC;
  border:1px solid #939598;
  padding: 5px;
  
}

ul.dropdown ul li  {
  font-weight: normal;
  float: none;
  color: #231F20;
  background-image: url(images/red_dot.gif);
  background-repeat: no-repeat;
  background-position: 0px 4px;
  padding-left: 14px;
}
									  
                                    /* IE 6 & 7 Needs Inline Block */
ul.dropdown ul li a {
  border-right: none;
  width: 100%;
  display: inline-block;
  color: #231F20;
}

ul.dropdown ul li a:hover  {
  color: #231F20;
  text-decoration: underline;
}

/* LEVEL THREE */
ul.dropdown ul ul {
  left: 100%;
  top: 0;
}
ul.dropdown li:hover > ul 	    { visibility: visible; }

