.subpages {
	text-decoration: none;
}.MenuBarItemIE 
{
	position: static;
}

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		float: left;
		background-color: #FFF;
	}
}

/*******************************************************************************

 HORIZONTAL LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0px;
    padding: 0px;
	font-size: 16px;
	list-style-type: none;
	cursor: default;
	text-transform: uppercase;
    width: auto;
    display: table;
}


/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}

/* Menu item containers, position children relative to this container and are a fixed width */

ul.MenuBarHorizontal li
{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	font-size: 16px;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: auto;
	float: left;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	z-index: 1020;
	cursor: default;
	width: 150px;
	position: absolute;
	left: -1000em;
	font-size: 16px;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 150px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -1px 0 0 100%;

}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0px;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
{
	border: none;
}
/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	border: 1px solid #979A98;
	border-bottom: none;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	padding: 0px;
	color: #FFFFFF;
	text-decoration: none;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
	font-weight: bold; 
}

/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
	color: #333333; 
	text-decoration: none;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{	
	color: #333333; 
	text-decoration: none;
}

ul.MenuBarHorizontal ul a.MenuBarItemHover, ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal ul a.MenuBarSubmenuVisible
{	
	color: #333333; 
	text-decoration: none;
}

ul.MenuBarHorizontal ul ul a.MenuBarItemHover, ul.MenuBarHorizontal ul ul a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal ul ul a.MenuBarSubmenuVisible
{	
	color: #333333; 
	text-decoration: none;
}

ul.MenuBarHorizontal ul ul ul a.MenuBarItemHover, ul.MenuBarHorizontal ul ul ul a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal ul ul ul a.MenuBarSubmenuVisible
{	
	color: #333333; 
	text-decoration: none;
}

/* Submenus background color */

ul.MenuBarHorizontal ul a {
	background-color: #DADDDD;
	font-size: 11px;
	text-transform: none; 
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #979A98;
	height: auto;
	margin: 0px;
	color: #727473;
}

ul.MenuBarHorizontal ul a:hover {
	background-color: #DADDDD;
	text-decoration: none;
}

ul.MenuBarHorizontal ul ul a:hover {
	background-color: #DADDDD;
	text-decoration: none;
}

ul.MenuBarHorizontal ul ul ul a:hover {
	background-color: #DADDDD;
	text-decoration: none;
}



/*******************************************************************************

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu 
{
	background-image: url(../../../images/SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul ul a.MenuBarItemSubmenu 
{
	background-image: url(../../../images/SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu 
{
	background-image: url(../../../images/SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul ul a.MenuBarItemSubmenu 
{
	background-image: url(../../../images/SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a \"hover\" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover 
{
	background-image: url(../../../images/SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a \"hover\" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul ul a.MenuBarItemSubmenuHover 
{
	background-image: url(../../../images/SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a \"hover\" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover 
{
	background-image: url(../../../images/SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a \"hover\" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul ul a.MenuBarItemSubmenuHover 
{
	background-image: url(../../../images/SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/*******************************************************************************/

/* Note that these below will be used only IE */
*ul.MenuBarHorizontal ul
{
	margin: 0px;
	position: absolute;
}

*ul.MenuBarHorizontal ul ul
{
	position: absolute;
	text-align: center;
	background-color: #CBCCCB;
	margin: -1px 0 0 100%;
}
*ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
     color: #333333; 
}

*ul.MenuBarHorizontal ul li a
{
	text-align: left;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}

/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		position: static;
		filter:alpha(opacity:0.1);
	}
}


.img-left {float:left; margin:0 15px 5px 0}
.img-right {float:right; margin:0 0 5px 15px}
.img-left, .img-right, .shadow {border:2px solid #fff; box-shadow:0 1px 8px #a0a1a4}
span.img-left, span.img-right {display:block}


.bodytext-14pt {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color : #727272;
	font-size : 14pt;
}

.bodytext-12pt {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color : #727272;
	font-size : 12pt;
}

.bodytext-10pt {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color : #727272;
	font-size : 10pt;
}

.bodytext-10pt-italic-white {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color : #FFFFFF;
	font-size : 10pt;
	font-style : italic;
	line-height: 24px;
}

.bodytext-9pt {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #727272;
    font-size : 9pt; }

.title {
     font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	 font-size: 24px;
	 color: #173E54;
     font-weight : bold;
     font-style : italic;
     border-style : solid;
     border-color : #3366cc;
     border-bottom-width : 1px;
     border-top-width : 0px;
     border-left-width : 0px;
     border-right-width : 0px; }

.2ndline {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 12px;
	color : #727272;
	font-weight: bold;
	text-transform: none;
	font-variant: normal;
}

.headline {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #4DB4B3;
	font-size: 24px;
}

.Subhead-black {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; 
    color : #000000;
    font-size : 13px;
    font-weight : bold; }

.Subhead-26px-Blue {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #4DB4B3;
	font-size: 26px;
}

.Subhead-24px-White {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #FFFFFF;
    font-size: 24px;
}

.Subhead-18px-Blue {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #4DB4B3;
    font-size: 18px;
}
	
.Subhead-18px-italic-Blue {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #4DB4B3;
    font-size: 18px;
    font-style : italic; }	
	
.Subhead-16px-Blue {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #4DB4B3;
    font-size: 16px; }
	
.Subhead-15px-Blue {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #4DB4B3;
    font-size: 15px; }

h2.Subhead-15px-Blue {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #4DB4B3;
    font-size: 15px;
    border-bottom: 1px solid #8CC53F;
    margin: 0px;
    padding-bottom: 5px;
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
}

.Subhead-14px-italic-Blue {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #4DB4B3;
    font-size: 14px;
    font-style : italic; }
	
.Subhead-12px-CAPS-Blue {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #4DB4B3;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.Blue {
	color: #4DB4B3;
}

.Green {
	color: #8AB82B;
}

.DigestTitle {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #727272;
    font-size : 14px;
	line-height: 120%; 
    font-weight : bold; }

.rsscredit {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    line-height: 120%; 
    font-size : 8pt; }

.rsslinks {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    line-height: 120%; 
    font-size : 8pt; }

.FeedTitle {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #727272;
    font-size : 14px;
	line-height: 120%; 
	font-weight: bold; }
	
a.FeedTitle {
    text-decoration : none; }

a.FeedLink:hover   {
    color : #555555;
	text-decoration : underline; }

a.FeedLink {
    color : #727272; }

.FeedDescription {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #727272;
    font-size : 13px;
    text-decoration : none;  }

.FeedLink {
    text-decoration : none;}
	
	
.devotionteaser {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #727272;
    font-size : 12px;
    text-decoration : none;  }

a.devotionteaser {
    text-decoration : none;  }

a.devotionteaser:hover {
    color : #555555;
    text-decoration : none;  }

.address {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #727272;
    font-size : 10pt; }

.body {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color: #727272;
	font-size : 12px;
}

.sitename {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; 
	font-size: 30px;
	line-height : 30px;
	color : #727272;
	text-transform: uppercase;
	font-weight: bold;
}

.sitename2 {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 12px;
	color : #727272;
	font-weight: bold;
	text-transform: none;
	font-variant: normal;
}

.caption {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #727272;
    font-size : 10px; }

.pullquote {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #727272;
    font-size : 14px;
    font-style : italic; }

.credit {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #727272;
    font-size : 14px;
    font-style : italic; }

.bottom_links {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size : 8pt; 
    text-align : center; 
    color : #FFFFFF; }

a.bottom_links {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size : 8pt; 
    text-align : center; 
    color : #FFFFFF;
	text-decoration : none; }

a.bottom_links:hover {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #FFFFFF;
    text-decoration : underline; }


.footer {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size : 8pt;
	text-decoration : none;
    color : #FFFFFF;
    text-align : center; }

a.footer {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #FFFFFF;
    text-decoration : none; }

a.footer:hover {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #FFFFFF;
    text-decoration : underline; }

.whatsnew-title { 
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #727272;
    font-size : 14px;
    font-weight : bold;
    text-decoration : none;
}

.whatsnew {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #727272;
    font-size : 14px;
    text-decoration : none;
}

.whatsnew:hover {
    color : #555555;
}

.whatsnew-description {
   color : #727272;
    font-size : 12px;
    text-decoration : none;
}

.eventsnew-title { 
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #727272;
    font-size : 10px;
    font-weight : bold;
    text-decoration : none; }

.eventsnew {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #727272;
    font-size : 10px;
    text-decoration : none; }

.ReadMore {
    color: #F09200;
    font-family: "Lucida Sans Unicode","Lucida Grande",sans-serif;
    text-decoration: underline;
}

.subpages-description {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #727272;
    font-size : 10px;
    text-decoration : none; }

.subpages-description:hover {
    color : #555555; }

.navcell {
	color: #FFFFFF
}

.navlinks {
	color : #FFFFFF;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 15px;
	text-decoration: none;
}

a.navlinks {
	color : #FFFFFF;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	text-decoration: none;
    padding: 3px; }

a.navlinks:hover {
	color: #FFFFFF;
	text-decoration: underline; }

.navcell2 {
	color: #999999;
}

.navlinks2 {
	color: #999999;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 10px;
    text-decoration: none; }

a.navlinks2 {
	color: #999999;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    text-decoration: none;
    padding: 0px; }

a.navlinks2:hover {
	color: #999999;
	text-decoration: underline; }

.vertical-links {
    color: #666666;
	font-weight : bold;
	text-decoration : none;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 9pt;
    line-height : 18px;
	max-height : 40px; }

.vertical-links:hover {
    color: #555555; }

a   {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color: #F09200;
	text-decoration : underline; }

a:hover { 
	color: #F09200;
	text-decoration : none;
	}

.printlink {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #999999;
    font-size : 8pt; }

a.printlink {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #999999;
    font-size : 8pt;
	text-decoration : none; }

a.printlink:hover {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color : #999999;
    font-size : 8pt;
	text-decoration : underline; }

.system {
	color : #000000;
    font-size : 10pt;
   	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; }

.syssmall {
	font-size : 8pt;
   	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
   	color : #000000; }

.bodysmall {
	font-size : 8pt;
    color : #999999;
   	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; }

.bodysmallgrey {
	font-size: 8pt;
   	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
   	color: #999999; }

table { 
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size: 10pt; }
	
.GalleryPopupTitle {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size : 11pt;
    font-weight: bold; 
    color : #555555; }

.GalleryPopupDescription {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size : 10pt;
	color : #555555; }

.GalleryPopupDetails {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size : 10pt;
	color : #555555; }

.GalleryExplainText {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size : 10pt;
	color : #555555; }

.GalleryThumbnailTitle {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size : 10pt;
    font-weight: bold;
	color : #555555; }

.GalleryThumbnailDescription {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size : 10pt;
	color : #555555; }

.GalleryHeadline {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size : 18px;
	font-weight: bold;
	color : #727272;; }

.GalleryIntro {
   font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size : 10pt;
	color : #727272; }

.GalleryEditorLink {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size : 10pt;
	color : #727272; }

.GalleryNavigation {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size : 20pt;
	color : #727272; }

.GalleryTitle {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size : 10pt;
    font-weight: bold;
	color : #727272; }

.GalleryDescription {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size : 10pt;
	color : #555555; }

.GalleryNoPhotos {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size : 10pt;
	color : #727272; }

.GalleryInactive {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size : 10pt;
	color : #727272; }	

a.forum:link {
        color : #727272;
        text-decoration : underline;
        font-size: 10pt; }

a.forum:visited {
        color : #727272;
        text-decoration : underline;
        font-size: 10pt; }

a.forum:hover {
        color : #727272;
        text-decoration : none;
        font-size: 10pt; }

a.forum:active {
        text-decoration : underline;
        color : #0a5593;
        font-size: 10pt; }

.forum_title {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color: #273872;
    font-size: 18px;
    font-weight: bold; }

.forum_intro {
	font-family: Verdana, Verdana, Arial, Helvetica, sans-serif;
	font-weight:normal;
	font-size: 11pt;
}

.forum_table {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size: 10pt; }

.forum_td {
     font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
     color:#666666;
     background-color:#ffffff; }

.flat {
     background-color:#CCCCCC; }

.table_header {
     background-color:#8DC63F;
     color:#ffffff; 
	 font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
     font-size: 10pt; }

.latest_post {
     font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
     font-size:8pt;
     color : #727272; }

.latest_post_link {
      background-color:#ff9966;
      color : #727272;
      font-size:9pt;
      font-family:arial;
      border: solid 1px #727272;
      text-decoration:none; }

.new {
      font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
      font-size:7pt;
      color:#ff0000;
      font-weight:bold; }

.notnew {
      font-family:verdana;
      font-size:7pt;
      color:#555555; }

.message {
      border-bottom:solid 1px #727272;
      background-color:#CCCCCC;
      font-size : 10pt }

.highlight {
      background-color:#CCCCCC; }

.quote {
      padding:5px;
      border:solid 1px #727272;
      background-color:#e6e6e6;
      color : #727272; }

.pollquestion {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size: 12px;
    font-weight: bold;
    color : #727272;
}

/* CUSTOM CSS */

body {
	margin: 0px;
	padding: 0px;
	border: 0px;
	background-image: url(../../../site/1/template/NAD_Ministerial_bckgdGradient.png);
	background-repeat: repeat-x;
	background-position: center top;
}

#bckgdRays {
	background-image: url(../../../site/1/template/NAD_Ministerial_bckgdRays.png);
	background-repeat: no-repeat;
	background-position: center top;
	width: 100%;
	height: 795px;
	position: absolute;
	top: 0px;
    left: 0px;
}

#mainWrapper {
	width: 950px;
	padding: 0px;
	border: 0px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	position: relative;
	z-index: 1;	
}

#mainWrapperWhite {
	width: 930px;
	*width: 950px;
	padding: 10px;
	border: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-color: #FFFFFF;
}

/* Header */

#header {
	height: 113px;
	width: 930px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 1px;
	border: 0px;
	position: relative;
	background-color: #4DB4B3;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

/* Logo */

#logo {
	height: 86px;
	width: 752px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	left: 21px;
	top: 16px;
	position: absolute;
	z-index: 1;
	background-image: url(../../../site/1/template/NAD_Ministerial_logo.png);
	background-repeat: no-repeat;
}

#logoLink {
	height: 86px;
	width: 450px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	left: 21px;
	top: 16px;
	position: absolute;
	z-index: 2;
}

#logoLink a {
	height: 86px;
	width: 450px;
	color: #FFFFFF;
	text-indent: -99999px;
	display: block;
	overflow: hidden;
}

/* Login */

#login {
	height: 15px;
	width: 44px;
	position: absolute;
	top: 13px;
	right: 165px;
	margin: 0px;
	padding: 0px;
	border: 0px;
	z-index: 3;
}

#login a {
	text-align: left;
	height: 15px;
	width: 44px;
	margin: 0px;
	padding: 0px;
	border: 0px;
	background-image: url(../../../site/1/template/NAD_Ministerial_login.png);
	background-repeat: no-repeat;
	color: #FFFFFF;
	text-indent: -99999px;
	display: block;
	overflow: hidden;
}

/* Search */

#search {
	text-align: left;
	height: 32px;
	width: 150px;
	position: absolute;
	top: 5px;
	right: 5px;
	margin: 0px;
	padding: 0px;
	border: 0px;
	background-image: url(../../../site/1/template/NAD_Ministerial_searchBckgd.png);
	background-repeat: no-repeat;
	z-index: 1;
}

.search_field {
	width: 105px;
	height: 15px;
	color: #979A98;
	padding: 0px;
	margin-top: 7px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 12px;
	border: 0px;
	font-size: 13px;
}

.clear {
  clear: both;
}

/* Main nav */

#mainNavWrapper {
	width: 930px;
	height: 30px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-color: #979A98;
	background-image: url(../../../site/1/template/NAD_Ministerial_navBcgkd.png);
	background-repeat: no-repeat;
	padding: 0px;
}

#mainNav {
	width: 910px;
	*width: 930px;
	height: 22px;
	*height: 30px;
	text-align: center;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	vertical-align: middle;
	display: table-cell;
}
/* Navigation */

ul.navigation {
	color : #FFFFFF;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	list-style: none;
	margin: 0px;
	border: 0px;
	padding: 0px;
	text-transform: uppercase;
}

ul.navigation li {
	list-style: none;
	display: inline;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 16px;
	margin: 0px;
	border: 0px;
	padding: 0px;
	text-transform: uppercase;
}
	
ul.navigation li a, ul.navigation li a:visited {
	color : #FFFFFF;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 16px;
	list-style: none;
	display: inline;
	margin: 0px;
	border: 0px;
	padding-right: 35px;
    padding-left: 35px;
    padding-top: 0px;
    padding-bottom: 0px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold; 
}

ul.navigation li a:hover {
	color: #333333; 
}	

ul.navigation li.navigation_current a {
	color: #333333;
}

ul.navigation li.navigation_separator {
	 display: none;
}

ul.navigation li.first, ul.navigation li.last {
	/* display: none; */
}

/* Child/Sibling articles nav */

ul.childpages, ul.siblingpages {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	border: 0px;
} 

ul.childpages li, ul.siblingpages li {
	display: block;
	list-style: none;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	border: 0px;
} 

ul.childpages li a, ul.siblingpages li a {
	width: 235px;
	*width: 250px;
	display: block;
	float: left;
	clear: left;
	color: #FFFFFF;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 10px;
	text-decoration: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 1px;
	margin-left: 0px;
	background-color: #4DB4B3; /*#94D2D1*/
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #0F9694; /*#4DB4B3*/
	font-weight: bold;
}

ul.childpages li a:hover, ul.siblingpages li a:hover {
	text-decoration: none;
	color: #FFFFFF;
	margin: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 1px;
	margin-left: 0px;
	background-color: #0F9694; /*#4DB4B3*/
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #9CCF31;
}

ul.childpages li.childpages_current a, ul.siblingpages li.siblingpages_current a {
	text-decoration: none;
	color: #FFFFFF;
	margin: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 1px;
	margin-left: 0px;
	background-color: #0F9694; /*#4DB4B3*/
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #9CCF31;
}

/* Feature area home */

#featureAreaHomeWrapper {
	width: 590px;
	*width: 622px;
	height: 331px;
	*height: 363px;
	padding: 15px;
	border: 1px solid #DBDED9;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}

#featureAreaHome {
	width: 590px;
	height: 331px;
	padding: 0px;
	border: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	overflow: hidden;
	background-color: #CCCCCC;
	position: relative;
}

#featureAreaHome_overlayTopLeftCorner {
	width: 15px;
	height: 15px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
	background-image: url(../../../site/1/template/NAD_Ministerial_featureAreaHomeOverlay.png);
	background-repeat: no-repeat;
	background-position: left top;
}

#featureAreaHome_overlayTopMiddle {
	width: 560px;
	height: 15px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	position: absolute;
	top: 0px;
	left: 15px;
	z-index: 2;
	background-image: url(../../../site/1/template/NAD_Ministerial_featureAreaHomeOverlay.png);
	background-repeat: repeat;
	background-position: -15px 0px;
}

#featureAreaHome_overlayTopRightCorner {
	width: 15px;
	height: 15px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 2;
	background-image: url(../../../site/1/template/NAD_Ministerial_featureAreaHomeOverlay.png);
	background-repeat: no-repeat;
	background-position: right top;
}

#featureAreaHome_overlayBottomLeftCorner {
	width: 15px;
	height: 15px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: 2;
	background-image: url(../../../site/1/template/NAD_Ministerial_featureAreaHomeOverlay.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}

#featureAreaHome_overlayBottomMiddle {
	width: 560px;
	height: 15px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	position: absolute;
	bottom: 0px;
	left: 15px;
	z-index: 2;
	background-image: url(../../../site/1/template/NAD_Ministerial_featureAreaHomeOverlay.png);
	background-repeat: repeat;
	background-position: -15px -316px;
}

#featureAreaHome_overlayBottomRightCorner {
	width: 15px;
	height: 15px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	position: absolute;
	bottom: 0px;
	right: 0px;
	z-index: 2;
	background-image: url(../../../site/1/template/NAD_Ministerial_featureAreaHomeOverlay.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}

#featureAreaHome_overlayLeft {
	width: 15px;
	height: 301px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	position: absolute;
	top: 15px;
	left: 0px;
	z-index: 2;
	background-image: url(../../../site/1/template/NAD_Ministerial_featureAreaHomeOverlay.png);
	background-repeat: repeat;
	background-position: 0px -15px;
}

#featureAreaHome_overlayRight {
	width: 15px;
	height: 301px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	position: absolute;
	top: 15px;
	right: 0px;
	z-index: 2;
	background-image: url(../../../site/1/template/NAD_Ministerial_featureAreaHomeOverlay.png);
	background-repeat: repeat;
	background-position: -575px -15px;
}

/* Feature area article */

#featureAreaArticleWrapper {
	width: 590px;
	*width: 622px;
	height: 170px;
	*height: 202px;
	padding: 15px;
	border: 1px solid #DBDED9;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}

#featureAreaArticle {
	width: 590px;
	height: 170px;
	padding: 0px;
	border: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	overflow: hidden;
	background-color: #CCCCCC;
	position: relative;
}

#featureAreaArticle_overlayTopLeftCorner {
	width: 15px;
	height: 15px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
	background-image: url(../../../site/1/template/NAD_Ministerial_featureAreaOverlay.png);
	background-repeat: no-repeat;
	background-position: left top;
}

#featureAreaArticle_overlayTopMiddle {
	width: 560px;
	height: 15px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	position: absolute;
	top: 0px;
	left: 15px;
	z-index: 2;
	background-image: url(../../../site/1/template/NAD_Ministerial_featureAreaOverlay.png);
	background-repeat: repeat;
	background-position: -15px 0px;
}

#featureAreaArticle_overlayTopRightCorner {
	width: 15px;
	height: 15px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 2;
	background-image: url(../../../site/1/template/NAD_Ministerial_featureAreaOverlay.png);
	background-repeat: no-repeat;
	background-position: right top;
}

#featureAreaArticle_overlayBottomLeftCorner {
	width: 15px;
	height: 15px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: 2;
	background-image: url(../../../site/1/template/NAD_Ministerial_featureAreaOverlay.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}

#featureAreaArticle_overlayBottomMiddle {
	width: 560px;
	height: 15px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	position: absolute;
	bottom: 0px;
	left: 15px;
	z-index: 2;
	background-image: url(../../../site/1/template/NAD_Ministerial_featureAreaOverlay.png);
	background-repeat: repeat;
	background-position: -15px -155px;
}

#featureAreaArticle_overlayBottomRightCorner {
	width: 15px;
	height: 15px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	position: absolute;
	bottom: 0px;
	right: 0px;
	z-index: 2;
	background-image: url(../../../site/1/template/NAD_Ministerial_featureAreaOverlay.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}

#featureAreaArticle_overlayLeft {
	width: 15px;
	height: 140px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	position: absolute;
	top: 15px;
	left: 0px;
	z-index: 2;
	background-image: url(../../../site/1/template/NAD_Ministerial_featureAreaOverlay.png);
	background-repeat: repeat;
	background-position: 0px -15px;
}

#featureAreaArticle_overlayRight {
	width: 15px;
	height: 140px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	position: absolute;
	top: 15px;
	right: 0px;
	z-index: 2;
	background-image: url(../../../site/1/template/NAD_Ministerial_featureAreaOverlay.png);
	background-repeat: repeat;
	background-position: -575px -15px;
}


/* Main content wrappers */

#mainContentWrapper {
	width: 918px;
	*width: 930px;
	border: 0px;
	text-align: left;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 6px;
	overflow: hidden;
	background-color: #F2F5EE;
}

#mainContentAdminWrapper {
	width: 918px;
	*width: 930px;
	border: 0px;
	text-align: left;
	margin: 0px;
	padding: 6px;
	background-color: #F2F5EE;
}

#mainWrapperHomeRightColBckgd, #mainWrapperArticleRightColBckgd {
	width: 918px;
	border: 0px;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
	float: left;
	background-color: #FFFFFF;
	position: relative;
}

#mainWrapperMiddleColBckgd {
	width: 918px;
	border: 0px;
	margin: 0px;
	padding: 0px;
	position: relative;
	right: 260px; 
	float: left;
	background-color: #F2F5EE;
}

#mainWrapperLeftColBckgd {
	width: 918px;
	border: 0px;
	margin: 0px;
	padding: 0px;
	position: relative;
	right: 6px; 
	float: left;
	background-color: #FFFFFF;
}

/* Main content left column */

#mainContentLeftCol {
	width: 622px;
	*width: 652px;
	border: 0px;
	text-align: left;
	margin-right: 0px;
	margin-left: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	float: left;
	padding: 15px;
	position: relative;
	left: 266px;
}

/* Main content middle column */

#mainContentMiddleCol {
	width: 6px;
	border: 0px;
	text-align: left;
	margin-right: 0px;
	margin-left: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	float: left;
	padding: 0px;
	position: relative;
	left: 266px;
}

/* Main content right column */

#mainContentRightCol, #mainContentArticleRightCol {
	width: 250px;
	*width: 260px;
	border: 0px;
	text-align: left;
	float: left;
	position: relative;
	left: 266px;
	margin: 0px;
	padding-top: 15px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}

#homeArticles {
	width: 622px;
	font-size: 13px;
	line-height: 120%; 	
}

#homeArticles img {
	border: 0px;	
}

#homeArticles .articleTitle {
	font-size: 14px;
	line-height: 120%; 
	font-weight: bold;
}

/* RSS */

td.rss {
	font-size: 11px;
	text-transform: uppercase;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #DBDED9;
	padding-top: 10px;
}

td.rss img {
	border: 0px;
}

/* Main admin content */

#mainAdminContent {
	width: 888px;
	*width: 918px;
	border: 0px;
	text-align: left;
	margin-right: 0px;
	margin-left: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 15px;
	background-color: #FFFFFF;
}

/* tables with colored headers/white border */


/* Red table */

.table_BorderRed {
	border: 1px solid #B80028;
	margin-bottom: 10px;
	line-height: 120%; 	
}

.table_headerRed {
	background-color: #B80028;
	color:#ffffff;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	text-align: center;
	padding: 2px;
	line-height: 130%;
}

.table_headerRedTxtLeft {
	background-color: #B80028;
	color:#ffffff;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	text-align: left;
	padding: 2px;
	line-height: 130%;
}

/* Orange table */

.table_BorderOrange {
	border: 1px solid #F09500;
	margin-bottom: 10px;
	line-height: 120%; 	
}

.table_headerOrange {
	background-color: #F09500;
	color:#ffffff;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	text-align: center;
	padding: 2px;
	line-height: 130%;
}

.table_headerOrangeTxtLeft {
	background-color: #F09500;
	color:#ffffff;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	text-align: left;
	padding: 2px;
	line-height: 130%;
}

/* Blue table */

.table_BorderBlue {
	border: 1px solid #4DB4B3;
	margin-bottom: 10px;
	line-height: 120%; 	
}

.table_headerBlue {
	background-color: #4DB4B3;
	color:#ffffff;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	text-align: center;
	padding: 2px;
	line-height: 130%;
}

.table_headerBlueTxtLeft {
	background-color: #4DB4B3;
	color:#ffffff;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	text-align: left;
	padding: 2px;
	line-height: 130%;
}

/* Dark blue table */

.table_BorderDkBlue {
	border: 1px solid #008684;
	margin-bottom: 10px;
	line-height: 120%; 	
}

.table_headerDkBlue {
	background-color: #008684;
	color:#ffffff;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	text-align: center;
	padding: 2px;
	line-height: 130%;
}

.table_headerDkBlueTxtLeft {
	background-color: #008684;
	color:#ffffff;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	text-align: left;
	padding: 2px;
	line-height: 130%;
}

/* Font size in colored tables */

.txt10px {
	font-size: 10px;
}


/* Table header border white */

.table_headerBorderWhite {
	padding: 6px;
	border: 1px solid #FFFFFF;
	display: block;
}

/* Table td padding */

.td_Padding {
	padding: 10px;
}

.td_Padding img {
	float: left;
	margin-right: 10px;
}

/* Calendar link */

#viewCalendar {
	float: left;
	height: 22px;
	text-decoration: none;
	background-image: url(../../../site/1/photos/NAD_Ministerial_calendar_thm.png);
	background-repeat: no-repeat;
	background-position: left center;
	margin: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 23px;
}

/* Newsletter sign up */

#newsletterSignUp {
	height: 66px;
	width: 250px;
	margin: 0px;
	padding: 0px;
	border: 0px;
	position: relative;
	background-image: url(../../../site/1/photos/NAD_Ministerial_newsletterSignup.png);
	background-repeat: no-repeat;
	background-position: left top;
}

#newsletterSignUp #mainNewsletterSignUp {
	height: 36px;
	width: 250px;
	margin: 0px;
	padding: 0px;
	border: 0px;
	position: absolute;
	top: 0px;
	left: 0px;
}

#newsletterSignUp #mainNewsletterSignUp a {
	height: 36px;
	width: 250px;
	color : #000000;
	text-indent: -99999px;
	display: block;
	overflow: hidden;
	
}

#newsletterSignUp #newsletterSignUp_BestPractices {
	height: 20px;
	width: 110px;
	margin: 0px;
	padding: 0px;
	border: 0px;
	position: absolute;
	bottom: 0px;
	left: 0px;
}

#newsletterSignUp #newsletterSignUp_BestPractices a {
	height: 20px;
	width: 110px;
	color : #000000;
	text-indent: -99999px;
	display: block;
	overflow: hidden;
	
}

#newsletterSignUp #newsletterSignUp_MinisterialDept {
	height: 20px;
	width: 130px;
	margin: 0px;
	padding: 0px;
	border: 0px;
	position: absolute;
	bottom: 0px;
	right: 0px;
}

#newsletterSignUp #newsletterSignUp_MinisterialDept a {
	height: 20px;
	width: 130px;
	color : #000000;
	text-indent: -99999px;
	display: block;
	overflow: hidden;
	
}

/* Sponsoring organizations logos */

#ministryPartnersWrapper {
	text-align: left;
	width: 930px;
	*width: 950px;
	margin-top: 0px;
	margin-bottom: 20px;
	margin-right: auto;
	margin-left: auto;
	padding: 10px;
	background-color: #959896;
	position: relative;
	background-image: url(../../../site/1/template/NAD_Ministerial_footerBckgd.png);
	background-repeat: repeat-x;
	background-position: left top;
	color: #FFFFFF;
	border-bottom-width: 8px;
	border-bottom-style: solid;
	border-bottom-color: #727473;
	overflow: hidden;
}

#ministryPartnersWrapper #partnersTitle {
	color: #FFFFFF;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: bold;
	float: left;
	width: 675px;
}

#ministryPartnersLogosWrapper1 {
	border: 0px;
	margin: 0px;
	width: 565px;
	float: left;
	clear: left;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

#ministryPartnersLogosWrapper2 {
	border: 0px;
	margin: 0px;
	width: 565px;
	float: left;
	clear: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

.ministryPartnersLogos {
	border: 0px;
	margin: 0px;
	width: 565px;
	padding: 0px;
	vertical-align: middle;
	display: table-cell;
	overflow: hidden;
	text-align: center;
}

.ministryPartnersLogos img {
	border: 0px;
	margin-right: 15px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	vertical-align: middle;
}

.ministryPartners .noMargin {
	border: 0px;
	margin: 0px;
}

/* Other links */

#otherLinks {
	float: right;
	width: 250px;
	padding: 0px;
	border: 0px;
	margin: 0px;
}

#otherLinks ul {
	padding: 0px;
	border: none;
	margin: 0px;
}

#otherLinks li {
	display: block;
	list-style: none;
	font-size: 11px;
	padding: 0px;
	border: 0px;
	margin: 0px;
}

#otherLinks li a {
	display: block;
	float: left;
	clear: left;
	font-weight: bold;
	color: #BDBEBD;
	text-decoration: none;
	line-height: 100%;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 7px;
	padding-left: 0px;
}

#otherLinks li a:hover {
	text-decoration: none;
	color: #FFFFFF;
}

/* Admin links */

#footerLinksWrapper {
	width: 950px;
	margin-top: 0px;
	margin-bottom: 10px;
	margin-right: 0px;
	margin-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	overflow: hidden;
}

#footerLinks {
	text-align: right;
	width: 750px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-right: 0px;
	margin-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	float: right;
}

/* Social media links */

#socialMediaLinks {
	width: 175px;
	height: 24px;
	margin: 0px;
	padding: 0px;
	border: 0px;
	float: left;
}

#socialMediaLinks #facebook {
	width: 88px;
	height: 24px;
	padding: 0px;
	border: 0px;
	float: left;
	margin-top: 0px;
	margin-right: 11px;
	margin-bottom: 0px;
	margin-left: 0px;
}

#socialMediaLinks #facebook a {
	width: 88px;
	height: 24px;
	padding: 0px;
	border: 0px;
	margin: 0px;
	color: #FFFFFF;
	text-indent: -99999px;
	display: block;
	overflow: hidden;
	background-image: url(../../../site/1/template/NAD_Ministerial_facebook.png);
	background-repeat: no-repeat;
}

#socialMediaLinks #twitter {
	width: 76px;
	height: 24px;
	margin: 0px;
	padding: 0px;
	border: 0px;
	float: left;
}

#socialMediaLinks #twitter a {
	width: 76px;
	height: 24px;
	margin: 0px;
	padding: 0px;
	border: 0px;
	color: #FFFFFF;
	text-indent: -99999px;
	display: block;
	overflow: hidden;
	background-image: url(../../../site/1/template/NAD_Ministerial_twitter.png);
	background-repeat: no-repeat;
}

/* Media image links */

td.normal {
  background-color: #ffffff;
}

td.over {
  background-color: #8FF6FE;
}

.MediaTitle {
    color : #4DB4B3;
    font-size : 20px;
    line-height : 30px;
    font-weight : bold; 
}

.MediaTitle a:hover {
    color : #FFFFFF;
}
