@charset "utf-8";

/* Normalisation Adapted from HTML5 Boilerplate 2 (20111003 JX) */   
/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */
html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
body { margin: 0; font-size: 13px; line-height: 1.231; }
body, button, input, select, textarea { font-family: sans-serif; color: #222; }
/* 
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 * Customize the background color to match your design
 */
::-moz-selection { background: #666; /*grey*/ color: #fff; text-shadow: none; }
::selection { background: #666; /*grey*/ color: #fff; text-shadow: none; }
/* =============================================================================
   Links
   ========================================================================== */
a { color: #0062a7; /*blue*/ } 
a:visited { color: #0062a7; /*blue*/ }
a:hover { color: #01406c; /*dark blue*/ }
a:focus { outline: thin dotted; }
/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
a:hover, a:active { outline: 0; }
/* CSS3 transitions on links */
a {
	/* Firefox 4 */
	-moz-transition-property:color, background-color, border-color;
	-moz-transition-duration:0.2s;
	-moz-transition-timing-function:ease-in-out;
	-moz-transition-delay:0s;
	/* Safari and Chrome */
	-webkit-transition-property:color, background-color, border-color;
	-webkit-transition-duration:0.2s;
	-webkit-transition-timing-function:ease-in-out;
	-webkit-transition-delay:0s;
	/*native CSS3*/
	transition-property: color, background-color, border-color;
	transition-duration: 0.2s;
	transition-timing-function: ease-in-out;
	transition-delay: 0s;
}
/* =============================================================================
   Typography
   ========================================================================== */
abbr[title] { border-bottom: 1px dotted; }
b, strong { font-weight: bold; }
blockquote { margin: 1em 40px; }
dfn { font-style: italic; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
ins { background: #ff9; color: #000; text-decoration: none; }
mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
/* Redeclare monospace font family: h5bp.com/j */
pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }
/* Improve readability of pre-formatted text in all browsers */
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
q { quotes: none; }
q:before, q:after { content: ""; content: none; }
small { font-size: 85%; }
/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
/* =============================================================================
   Lists
   ========================================================================== */
ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }
/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Improve image quality when scaled in IE7: h5bp.com/d
 * 2. Remove the gap between images and borders on image containers: h5bp.com/e 
 */
img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }
/*
 * Correct overflow not hidden in IE9 
 */
svg:not(:root) { overflow: hidden; }
/* =============================================================================
   Forms
   ========================================================================== */
form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }
/* Indicate that 'label' will shift focus to the associated form element */
label { cursor: pointer; }
/* 
 * 1. Correct color not inheriting in IE6/7/8/9 
 * 2. Correct alignment displayed oddly in IE6/7 
 */
legend { border: 0; *margin-left: -7px; padding: 0; }
/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 * 4. Remove default iOS styling (JX20111006)
 * 5. Remove default focus outline styling in webkit browsers (JX20111004)
 */
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; -webkit-appearance:none; -webkit-border-radius:0px; }
button:focus, input:focus, select:focus, textarea:focus { outline: none; }
/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 * 2. Correct inner spacing displayed oddly in IE6/7
 */
button, input { line-height: normal; *overflow: visible; }
/*
 * Reintroduce inner spacing in 'table' to avoid overlap and whitespace issues in IE6/7
 */
table button, table input { *overflow: auto; }
/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 */
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }
/*
 * Consistent box sizing and appearance
 */
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
/* 
 * Remove inner padding and border in FF3/4: h5bp.com/l 
 */
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
/* 
 * 1. Remove default vertical scrollbar in IE6/7/8/9 
 * 2. Allow only vertical resizing
 */
textarea { overflow: auto; vertical-align: top; resize: vertical; }
/* Colors for form validity */
input:valid, textarea:valid {  }
input:invalid, textarea:invalid {  }
/* =============================================================================
   Tables
   ========================================================================== */
table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }


/* ==|== primary styles =====================================================
   Author: JX 20111026
   ========================================================================== */
   
/* ------------------------------------------------------------------------------ */
/* global */
/* ------------------------------------------------------------------------------ */
body { 
	color:#232323;
	background:#002b4e;
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight:normal;
	line-height:20px;/*1.5x of font-size*/
	background-image: url(../img/bg-body.png);
	background-repeat: repeat-x;
}

/*Specific for homepage*/
body#home {background: url(../img/bg-home-body.png) repeat-x #002b4e;}

	/* container (can be used as a page background container) */
	body#home #container { 
		position:relative;
		width:100%;
		min-width:960px;
		margin:0;
		padding:0;
		background-image: url(../img/bg-container.jpg);
		background-repeat: no-repeat;
		background-position: center top;
	}
	
/* ------------------------------------------------------------------------------ */
/* header */
/* ------------------------------------------------------------------------------ */
#header {
	width:960px;
	height:220px;
	margin:0 auto;
	padding:0;
	overflow:hidden;
	position:relative
}

body#home div#header {
	background-image: url(../img/home-header.jpg);
	background-repeat: no-repeat;
	
}

	#header h1 {
		color:#f2f2f2;
		font-family:'StMarieThin',serif;
		font-size:42px;
		font-weight:normal;
		line-height:42px;
		margin:35px 0 0 17px;
		/*text-shadow*/
		text-shadow: 0px 2px 2px #333;
	}
	#header p {
		font-size:12px;
		font-weight:normal;
		color:#c2c2c2;
		margin:10px 0 0 20px;
	}

	/*nav*/ 
	#nav {
		background:url(../img/sprite-nav.png) 0 0 no-repeat;
		margin:0;
		padding:0;
		width:100%;
		height:74px;
		overflow:hidden;
		position:absolute;
		bottom:0;
		border-top:1px solid #2f576c;
		border-bottom:1px solid #09141e;
	}
		/*nav items*/
		#nav li, #nav a {
			display:block;
			position:absolute;
			top:0;
			margin:0;
			padding:0;
			height:74px;		
		}	
		#nav00 { width: 61px; left:  0px; }
		#nav01 { width:137px; left: 61px; }
		#nav02 { width:138px; left:198px; }
		#nav03 { width:139px; left:336px; }
		#nav04 { width:218px; left:475px; }
		#nav05 { width:153px; left:693px; }
		#nav06 { width:114px; left:846px; }

		
			/*nav links*/
			#nav a { width:100%; left:0; }
			#nav a:hover, #nav a.selected { background: url(../img/sprite-nav.png) no-repeat; }
			#nav a.selected { cursor:default!important; }
			
			#nav00 a:hover { background-position:    0px -74px; }
			#nav01 a:hover { background-position:  -61px -74px; }
			#nav02 a:hover { background-position: -198px -74px; }
			#nav03 a:hover { background-position: -336px -74px; }
			#nav04 a:hover { background-position: -475px -74px; }
			#nav05 a:hover { background-position: -693px -74px; }
			#nav06 a:hover { background-position: -846px -74px; }

				
			#nav00 a.selected,#nav00 a.selected:hover { background-position:   -0px -148px; }
			#nav01 a.selected,#nav01 a.selected:hover { background-position:  -61px -148px; }
			#nav02 a.selected,#nav02 a.selected:hover { background-position: -198px -148px; }
			#nav03 a.selected,#nav03 a.selected:hover { background-position: -336px -148px; }
			#nav04 a.selected,#nav04 a.selected:hover { background-position: -475px -148px; }
			#nav05 a.selected,#nav05 a.selected:hover { background-position: -693px -148px; }
			#nav06 a.selected,#nav06 a.selected:hover { background-position: -846px -148px; }


a.btnTop {
	background: url(../img/btn-top.png) no-repeat top center;
	display: block;
	width: 39px;
	height: 16px;
	margin: 20px 0px 10px 0px;
	float: left;
	clear: both;
	border: none!important;
}

a.btnTop:hover { background-position: 0px -16px;}

/* ------------------------------------------------------------------------------ */
/* main */
/* ------------------------------------------------------------------------------ */
#main {
	margin:0 auto;
	width:960px;
	height:auto;
	overflow:hidden;
	position:relative;
	background:#ffffff;
}

#logo {
	background: url(../img/logo.png) no-repeat left center;
	display: block;
	width: 419px;
	height: 110px;
	position: absolute;
	left: 21px;
	top: 18px;
}

body#home #main {
	
}
	/*banners - standard */
	#banner { 
		margin: 0px;
		padding: 0px;
	} 
	
	
	/*banners - home*/
	body#home #banner {width: 960px; height: 486px;} 
	
	body#sec01 #banner {background: url(../img/sprite-bg-content.jpg) no-repeat 0 0; height: 180px; display: block;}
	body#sec02 #banner {background: url(../img/sprite-bg-content.jpg) no-repeat 0 -180px; height: 180px; display: block;}
	body#sec03 #banner {background: url(../img/sprite-bg-content.jpg) no-repeat 0 -360px; height: 180px; display: block;}
	body#sec04 #banner {background: url(../img/sprite-bg-content.jpg) no-repeat 0 -540px; height: 180px; display: block;}
	body#sec05 #banner {background: url(../img/sprite-bg-content.jpg) no-repeat 0 -720px; height: 180px; display: block;}
	body#sec06 #banner {background: url(../img/sprite-bg-content.jpg) no-repeat 0 -900px; height: 180px; display: block;}
	body#sec08 #banner {background: url(../img/sprite-bg-content.jpg) no-repeat 0 -1080px; height: 180px; display: block;}
	body#sec11 #banner {background: url(../img/sprite-bg-content.jpg) no-repeat 0 -1260px; height: 180px; display: block;} 


/* ------------------------------------------------------------------------------ */
/* content */
/* ------------------------------------------------------------------------------ */
#content {
	width:100%;
	margin:0;
	padding:0 0 0 0;
	overflow:hidden;
	position:relative;
	z-index:9;

}

#container {background: url(../img/bg-content-container.jpg) no-repeat center top; }

body#home #content { background:none; padding:0px 11px 5px 11px; width: 938px;}
body#home #columns { width: 938px; }

	/*columns*/
	#columns {
		width:960px;
		height:auto;
		margin:0 auto;
		padding:0; 
		position:relative;
	}
	
	
	
	body#home #top-bar {height: 20px; background: url(../img/bg-home-content-top.jpg) no-repeat center center;}			
	body#home #columns { background-color: #ecf3f8; background-image: url(../img/bg-home-content.jpg); background-repeat: no-repeat; background-position: bottom; }
	.ie6 body#home #columns { height:260px; overflow:visible; }
		
		/*columns - common*/
		.columnLeft,
		.columnRight,
		.columnFull {
			min-height:460px;
			margin:0;
			height:auto;
			overflow:hidden;
			position:relative;
		}
		
		/*column left*/
		.columnLeft {
			width:240px;
			padding:0;
			float:left!important;	
			clear:left!important;
			background:#ffffff;
		}
			/*column left - section title*/
			.columnLeft h2 {
				width:240px;
				margin:0;
				padding:20px;
				/*style*/
				color:#fff;
				background:#777;
				font-family:'StMarieThin',Arial,sans-serif;
				font-weight:bold;
				font-size:36px;
				line-height:43px;
				text-transform:uppercase;
				/*text-shadow*/
				text-shadow: 0px 0px 4px #333;				
			}
		
		/*column right*/
		.columnRight {
			float:right!important;
			clear:right!important;
			background: url(../img/bg-content-rightcolumn.png) no-repeat top center;
			background-color: #ffffff;
		}			
		/*column right - contentViewport*/
		.contentViewport {
			width:640px;
			padding:4px 40px 20px 40px;
		}
			
		/*column - full*/
		.columnFull {
			position:relative;
			width:900px; 
			padding:20px 40px;
			float:none;
			clear:both;
			overflow:hidden;
		}
		/*column - full contentViewport*/
		.columnFull .contentViewport { /*customisation*/ }
				

/* ------------------------------------------------------------------------------ */
/* side nav */ 
/* ------------------------------------------------------------------------------ */
#sideNav {
	list-style:none;
	margin: 0;
	padding: 0;
	width:240px;
	overflow-x:hidden;
	overflow-y: hidden;
	/*
	background: url(../img/bg-sidenav.png) repeat-y top right;
	*/
}

#sideNavEnding {
	background: url(../img/bg-sidenav-ending.png) repeat-y top right;
	width: 240px;
	height: 143px;
	display: block;
}

	/*level 1 nav items*/
	#sideNav li {
		color:#505050;
		font-size:15px;
		font-weight:bold;
		line-height:16px;
		margin-top: 0px;
		margin-bottom: 0px;
		margin-left: 0px;
		margin-right: 0px;
		padding-top: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
		padding-right: 0px;
		width:240px;
		overflow:hidden;
		border-bottom:1px solid #e4e4e4;	
		background: url(../img/bg-sidenav.png) repeat-y top right;
	}	
	
	#sideNav li.selected {
		background: none;
		background: url(../img/bg-sidenav-item-selected.png) left top no-repeat #bedb5c;
		border-bottom:1px solid #bfd672;	
		margin-top: -1px;
	}
	
	#sideNav li.selected a {background: url(../img/bg-sidenav.png) right top repeat-y;}
	#sideNav li.selected ul li a {background: none; display: inline-block; border: none; width: 157px;}
	#sideNav li.selected ul {background: url(../img/bg-sidenav.png) right top repeat-y;}
	
	#sideNav li.last-child { border-bottom:none; }
	#sideNav li:last-child { border-bottom:none; }
	
	/*level 1 links*/
	#sideNav li a,
	#sideNav li a:link,
	#sideNav li a:active,
	#sideNav li a:visited {
		color: #505050;
		text-decoration: none; 
		display: inline-block; 
		margin:0;
		padding:15px 30px 15px 30px;
	}
	
	#sideNav li a:hover { color:#000; }
	#sideNav li.selected a { padding-right: 45px; width: 165px; }
	.ie6 #sideNav li.selected a {width: 185px;}
	
		/*level 2 nav items*/
		#sideNav li ul {
			
			list-style: none;
			margin:0;
			padding:0px 0px 10px 30px;
			display: none;
			
		}
		
		#sideNav li.selected ul { display: block; }
		#sideNav li li {
			color:#505050;
			font-size:12px;
			font-weight:bold;
			line-height:14px;
			margin:0;
			padding:0;
			width:170px;
			background: none;			
		}		
		#sideNav li li { border:none; background: url(../img/blt-sidenav-lv2.png) no-repeat 0px 9px; }
		#sideNav li li.last-child {  }
	
		
		/*level 2 links*/
		#sideNav li li a,
		#sideNav li li a:link,
		#sideNav li li a:active,
		#sideNav li li a:visited { color: #2b7200; padding:5px 0 5px 15px; margin:0; text-shadow: 0px 1px 1px #e8e8e8;}
		#sideNav li li a:hover { color: #000 !important;}
	
	/*selected*/
	#sideNav li .selected,
	#sideNav li li.selected a { color: #505050 !important; text-shadow: 0px 1px 1px #e8e8e8; border: none; background: none;}
	
	#sideNav li ul li.selected {background: url(../img/blt-sidenav-lv2.png) no-repeat 0px 8px;}
	
	#sideNav li a.selected:hover,  	
	#sideNav li li.selected a:hover { color: #505050 !important; cursor: default !important;  } 	
	

/* ------------------------------------------------------------------------------ */
/* footer */
/* ------------------------------------------------------------------------------ */
#footer {
	margin:0 auto;
	width:960px;
	height:50px;
	position:relative;
	background: url(../img/bg-footer-round.png) no-repeat top center;
}
	/*copyright links*/
	#footer ul {
		color:#4279ad;
		font-size:11px;
		line-height:11px;
		width:960px;
		padding:20px 20px 20px 20px;
		margin:0;
	}	
	
	#footer ul li {
		border-color: #4279ad;	
		line-height: 16px;
	}
	
	#footer a,
	#footer a:link,
	#footer a:visited,
	#footer a:active { color:#4279ad; text-decoration:none; }
	#footer a:hover  { color:#8f989d; text-decoration:none; }
	/*FW logo*/
	#FWenabled, #FWenabled a { position: absolute; right: 15px; width:126px; height:16px; margin:0; padding:0; border:none!important; }
	#FWenabled a { float:none; background:url(../img/btn-fw.png) 0px 0px no-repeat; margin:10px 0 0;}
	#FWenabled a:hover { background-position:0px -16px; }

	 

/* ------------------------------------------------------------------------------ */
/* Buttons */
/* ------------------------------------------------------------------------------ */


/* ------------------------------------------------------------------------------ */
/* sections - HOME */ 
/* ------------------------------------------------------------------------------ */

body#home {
}

/*content specific*/
body#home #mercyaction {
	margin:0;
	padding:9px 20px 25px 40px;
	width:405px;
	overflow:hidden;
	position:relative;
	overflow:hidden;
	float:left;
}

	/*linksListing*/	
	body#home ul.linksListing {
	    display: block;
    	list-style-type: none;
    	margin: 20px 0px 36px 1px;
		padding: 0px;
		float: left;
		clear: both;
	}
	
		/*linksListing item*/
		body#home ul.linksListing li {
			float: left;
    		width: 189px;
			font-size: 14px;
			color: #0062a7;
			padding-bottom: 3px;
			padding-left: 13px;
			background: url(../img/bullet-links.png) no-repeat 0px 8px transparent;
			
		}
		
		body#home ul.linksListing li a {
			text-decoration: none;
		}
	
		body#home ul.linksListing li a:hover {
			text-decoration: underline;
		}	
		
/*news*/
#news {
	margin: 0 0 30px;
	padding: 0px;
	background: none;
	width: 640px;	
	overflow:hidden;
	position:relative;
	overflow:hidden;
	float:left;
}


body#home #news {
	background: url(../img/border-home-content.png) no-repeat right center;
	width:405px;
	padding:9px 30px 25px 30px;
}

/*RSS feed*/
a#rssFeed {
	display:block;
	position:absolute;
	top:0px; right:30px;	
	background:url(../img/rss.png) no-repeat;
	width:35px; height:35px;
}

a#rssFeed:hover { background-position:0 -35px; }

	/*general*/	
	
	.searchItem a, .eventSummary a, #news a, a:hover {text-decoration:none; color: #01406c; border: none!important;}
	/*title*/
	body#home #news h2, body#home h2 {
		font-family:'MyriadProSemibold', Arial, sans-serif;
		font-size:21px;
		line-height:16px;
		margin:0;
		padding:0;
		font-weight: normal;
		text-transform: uppercase;
		color: #15c0cd;
		text-shadow: 0px 1px 1px #ffffff;
	}
	
	/*title - second line */
	body#home #news h2 em, body#home h2 em  {
		font-family:'MyriadProSemibold', Arial, sans-serif;
		font-size:21px;
		line-height:22px;
		margin:0;
		padding:0;
		color: red;
		display: block;
		font-style: normal;
		font-weight: normal;
		text-transform: uppercase;
		color: #288ec3;
		text-shadow: 0px 1px 1px #ffffff;
	}	
	/*newsListing*/	
	body#home .newsListing {
		margin:0;
		padding:0 0 0 0;
	}
		/*newsListing item content*/
		body#home .newsItem, .newsItem {
			display:block;
			position:relative;
			margin:20px 0 0 0;
			padding:0 0 20px 0;
			width:90%;
			min-height:90px;
			color:#fff;
			text-decoration:none;
			border: none;
			
		}
	
		.newsItem, .eventItem {
			border-bottom: 1px solid #d1e4ed;	
		}
		
		.ie6 body#home .newsItem  {
			height:90px;
			overflow:visible;
		}
		body#home .newsItem.last-child, .newsItem.last-child, .resourceItem.last-child { border-bottom:none; padding-bottom: 20px; }
							
			/*imgThumb*/
			.newsItem .imgThumb {
				/*layout*/
				position:absolute; 
				top:0;
				left:0; 
				width:88px;
				height:88px; 
				background-color: #888888;
			}
				.newsItem .imgThumb img { 
					width:88px; 
					height:88px;
					display:block;
				}
				
				body#home .newsItem .imgThumb img {
					border:1px solid #b2b6b5;
				}
			
			/*newsContent*/
			.newsItem .newsContent { 
				margin:0 0 0 117px;
			}
				.eventItem .content p, .newsItem .newsContent p, .resourceItem .resourceContent p { 
					color:#323232;
					font-size:13px; 
					font-weight:normal;
					line-height:18px; 
					margin:10px 0;
					padding:0;
					text-decoration:none;
				}
				.eventItem .title, .newsItem .newsContent .title, .resourceItem .resourceContent .title { 
					color:#01406C;
					font-size:16px;
					font-weight:bold; 
					padding:0 0 5px;
					margin:0;
				}
				
				.eventItem .title a, .eventItem .eventSummary .title a:hover{color:#01406C; text-decoration:none;}
				
				#events .eventItem .eventDate, .newsItem .newsContent .date { 
					color:#797979;
					font-size:10px;
					font-weight:normal;
					text-transform:uppercase; 
					margin:0;
					padding:0 0;
				}
				
				.newsItem .newsContent .btnMore {
					background-attachment: scroll;
    				background-clip: border-box;
    				background-color: transparent;
    				background-image: url("../img/btn-more.png");
    				background-origin: padding-box;
    				background-position: 0 0;
    				background-repeat: no-repeat;
   					background-size: auto auto;
    				display: block;
    				height: 16px;
    				width: 49px;
					margin-top: 13px;
				}
				
	
				
				
			/*newsListing item hover*/
			.newsItem:hover p { text-decoration:none; }
			.newsItem:hover .title {color: #01406c;  }
			.newsItem:hover .btnMore {
					background-attachment: scroll;
    				background-clip: border-box;
    				background-color: transparent;
    				background-image: url("../img/btn-more.png");
    				background-origin: padding-box;
    				background-position: 0 -16px;
    				background-repeat: no-repeat;
    				background-size: auto auto;
			}
				

a.memberlogin {
	background-attachment: scroll;
    background-clip: border-box;
    background-color: transparent;
    background-image: url("../img/btn-sprite.png");
    background-origin: padding-box;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: auto auto;
    display: block;
    height: 71px;
    width: 198px;
	cursor: pointer;
	float:left;
}

a.memberlogin:hover {  
    background-position: 0 -71px; 
}

a.fbButton {
	background-attachment: scroll;
    background-clip: border-box;
    background-color: transparent;
    background-image: url("../img/btn-sprite.png");
    background-origin: padding-box;
    background-position: -212px 0;
    background-repeat: no-repeat;
    background-size: auto auto;
    display: block;
    height: 71px;
    width: 152px;
	cursor: pointer;
	margin:0 0 0 15px;
	float:left;
}

a.fbButton:hover {  
    background-position: -212px -71px; 
}



/* ------------------------------------------------------------------------------ */
/* PAGING CONTROL */
/* ------------------------------------------------------------------------------ */
div#pagingController {
    float: left;
    height: 29px;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 25px;
    padding-bottom: 0;
    padding-left: 16px;
    padding-right: 0;
    padding-top: 12px;
    position: relative;
    width: 621px;
	background-color: #eeeeee;
	border: 1px solid #a4caea;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

	div#pagingController #results {
		color: #0062a7 !important;
    	font-size: 12px;
    	font-style: normal;
    	line-height: 18px;
    	margin-bottom: 0;
    	margin-left: 0;
    	margin-right: 0;
    	margin-top: 0;
	}
	
	div#pagingController ul#pageLinks {
		display: inline;
    	float: left;
    	list-style-type: none;
    	margin-bottom: 0;
    	margin-left: 0;
    	margin-right: 0;
    	margin-top: 0;
    	padding-bottom: 0;
    	padding-left: 0;
    	padding-right: 0;
    	padding-top: 0;
    	position: absolute;
    	right: 15px;
    	top: 12px;	
	}
	
	div#pagingController ul#pageLinks li {
		background-attachment: scroll;
    	background-clip: border-box;
    	background-color: transparent;
    	background-image: none;
    	background-origin: padding-box;
    	background-position: 0 0;
    	background-repeat: repeat;
    	background-size: auto auto;
    	color: #999797;
    	display: inline;
    	float: left;
    	font-size: 12px;
    	line-height: 13px;
    	margin: 0 0;
    	padding: 0 5px 0 0;
		font-weight: bold;
	}
	
	div#pagingController ul#pageLinks li.pagingControlPageSelector a {
    	color: #7e7e7e;
    	display: block;
    	margin: 0 0;
    	overflow-x: hidden;
    	overflow-y: hidden;
    	padding-bottom: 4px;
    	padding-left: 7px;
    	padding-right: 7px;
    	padding-top: 3px;
		text-decoration: none;
		-moz-border-radius: 2px;
		border-radius: 2px;
		border-bottom-style: none;
	}
	
	div#pagingController ul#pageLinks li.pagingControlPageSelector a:hover {color: #ffffff; background-color: #b8b8b8;}

	div#pagingController ul#pageLinks li.pagingControlPageSelector a.selected {
    	background-attachment: scroll;
    	background-clip: border-box;
    	background-color: #002a4e;
    	background-image: none;
    	background-origin: padding-box;
    	background-position: 0 0;
    	background-repeat: repeat;
    	background-size: auto auto;
    	color: #ffffff;
	}
	
	
	div#pagingController ul#pageLinks li.pagingControlPreviousPage a, div#pagingController ul#pageLinks li.pagingControlPreviousPage a {
    	background-position: left top;
    	background-repeat: no-repeat;
    	display: block;
    	height: 20px;
    	margin-bottom: 0;
    	margin-left: 0;
    	margin-right: 0;
    	margin-top: 0;
    	padding-bottom: 0;
   		padding-left: 0;
    	padding-right: 0;
    	padding-top: 0;
    	width: 15px;
	}


div#pagingController ul#pageLinks li.pagingControlNextPage a, div#pagingController ul#pageLinks li.pagingControlNextPage a {
    	background-position: left top;
    	background-repeat: no-repeat;
    	display: block;
    	height: 20px;
    	margin-bottom: 0;
    	margin-left: 0;
    	margin-right: 0;
    	margin-top: 0;
    	padding-bottom: 0;
   		padding-left: 0;
    	padding-right: 0;
    	padding-top: 0;
    	width: 15px;
	}

	div#pagingController ul#pageLinks li.pagingControlPreviousPage {
    	margin-right: 3px;
	}
	
	div#pagingController ul#pageLinks li.pagingControlNextPage {
   		margin-left: 3px;
	}
	
	div#pagingController ul#pageLinks li.pagingControlPreviousPage a,
	div#pagingController ul#pageLinks li.pagingControlNextPage a {
		background-position: 0px 5px;

	}
	div#pagingController ul#pageLinks li.pagingControlPreviousPage a {
    	background-image: url("../img/icon-prev-page-d.png");
    	border-bottom-style: none;
	}
	
	div#pagingController ul#pageLinks li.pagingControlPreviousPage a.enabled {
    	background-image: url("../img/icon-prev-page.png");
    	border-bottom-style: none;
	}
	
	div#pagingController ul#pageLinks li.pagingControlNextPage a {
   		background-image: url("../img/icon-next-page-d.png");
    	border-bottom-style: none;
	}
	
	div#pagingController ul#pageLinks li.pagingControlNextPage a.enabled {
	    background-image: url("../img/icon-next-page.png");
	   	border-bottom-style: none;
	}

/* ------------------------------------------------------------------------------ */
/* sections - NEWS / EVENTS */ 
/* ------------------------------------------------------------------------------ */
/*container and common*/

 .resourceItem.last-child , .eventItem.last-child , .newsItem.last-child{border-bottom: none;}
 .eventItem{
	position:relative;
	width:100%;
	height:auto;
	overflow:hidden;
	padding:0;
	margin:20px 0 20px;
	min-height: 88px;

}

.searchListing .searchItem  .btnMore, .eventItem .btnMore {
    background: url("../img/btn-more.png") no-repeat scroll 0 0 transparent;
    display: block;
    height: 16px;
    margin-top: 13px;
    width: 49px;
	margin-bottom: 20px;
}	

.searchListing .searchItem  .btnMore:hover, .eventItem:hover  .btnMore {
					background-attachment: scroll;
    				background-clip: border-box;
    				background-color: transparent;
    				background-image: url("../img/btn-more.png");
    				background-origin: padding-box;
    				background-position: 0 -16px;
    				background-repeat: no-repeat;
    				background-size: auto auto;
					margin-bottom: 20px;
			}

/* ------------------------------------------------------------------------------ */
/* Events */
/* ------------------------------------------------------------------------------ */

* html #events .eventItem {
    height: 80px;
}
#events .eventItem .eventDate {
    background-attachment: scroll;
    background-clip: border-box;
    background-color: transparent;
    background-image: url("../img/bg-evt.png");
    background-origin: padding-box;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: auto auto;
    display: block;
    height: 90px;
    left: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    position: absolute;
    text-align: left;
    width: 75px;
}
#events .eventItem .eventDate .d {
	font-family:Arial, serif;
    color: #FFFFFF;
    display: block;
    font-size: 28px;
    font-weight: bold;
    height: 30px;
    line-height: 30px;
    padding-bottom: 0;
    padding-left: 7px;
    padding-right: 0;
    padding-top: 17px;
}
#events .eventItem .eventDate .m {
	font-family:Arial, serif;
    color: #797979;
    display: block;
    font-size: 12px;
    line-height: 16px;
    padding-top: 4px;
    text-transform: uppercase;

}
#events .eventItem .eventDate .y {
	font-family:Arial, serif;
    color: #797979;
    display: block;
    font-size: 12px;
    font-weight: normal;
    line-height: 13px;

}
#events .eventItem .title, #events .eventItem .title a {
	color: #01406C!important;
	font-family: Arial,sans-serif;
	font-size: 18px;
    padding-bottom: 8px;
}


#events .eventItem .title {padding-bottom: 8px;}
#events .eventItem .title a:hover {text-decoration: none!important; color: #0066AB; }
#events .eventItem .title, #events .eventItem .content, #events .eventItem .btnMore {
    line-height: 20px;
    margin-left: 100px;
}
#events .eventItem .btnMore {
    margin-top: 0!important;

}
#events .eventItem .content p {
    padding-bottom: 10px;
}

#events .eventItem  a.btnText {
	padding-left: 5px;
	color: #6b6b6b;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 12px;
	font-family: 'MyriadProRegular',Arial,sans-serif;
}

#events .eventItem  a.btnText:hover {color: #0077bb;}

#events .eventItem .btnText span.icon {
	background:url(../img/blt-arrow.png) 0px 0px no-repeat; 
	width: 6px;
	height: 10px;
	position: relative;
	float: left;
	margin-top: 4px;
	    margin-left: 65px;
	
}	

#events  .eventItem .btnText:hover span.icon {
	background:url(../img/blt-arrow.png) 0px -10px no-repeat; 

}



/* ------------------------------------------------------------------------------ */
/* sections - RESOURCE */ 
/* ------------------------------------------------------------------------------ */ 

.resourceItem {
    color: #FFFFFF;
    display: block;
    margin: 20px 0 0;
    padding: 0 0 20px;
    position: relative;
    text-decoration: none;
    width: 100%;
    border-bottom: 1px solid #D1E4ED;
}
.resourceItem.bibliography { min-height:149px; }

.resourceItem .imgThumb {
    background-color: #888888;
    height: 88px;
    left: 0;
    position: absolute;
    top: 0;
    width: 88px;
    background: url("../img/mercy-news.jpg") no-repeat scroll 0 0 transparent;
}
.resourceItem .bibliographyThumb {
    background-color: #888888;
    height: 150px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100px;
}

.resourceItem .resourceContent {
    margin: 0 0 0 117px;
}

.resourceItem .resourceContent.withOutThumb {margin: 0 0;} 

.resourceItem.bibliography .resourceContent {
    margin: 0 0 0 129px;
}

.resourceItem .resourceContent .btnMore {
    background: url("../img/btn-more.png") no-repeat scroll 0 0 transparent;
    display: block;
    height: 16px;
    margin-top: 13px;
    width: 49px;
}

/* ------------------------------------------------------------------------------ */
/* sections MEMBERS - DASHBOARD */ 
/* ------------------------------------------------------------------------------ */
#membersWrapper{
	width:640px;
	height:auto;
	padding:0; margin:0;
	position:relative;	
}

	#membersWrapper .mainPod{
		width:100%;	
		min-height:350px;
		padding:0; margin:0;
		position:relative;	
		background:url(../img/mainPod-back.png) 0 86px no-repeat #2f80ac;
	}
	
	#membersWrapper .memPodTitle{
		width:100%;	
		height:auto;
		padding:0; margin:0;
		position:relative;	
		background:url(../img/member-titles.jpg) 0 0 #FFF;
	}
	
	#membersWrapper .mainPod #colLeft{
		width:260px;
		height:auto;
		margin:30px 16px 0 0; padding:0 25px 0; 
		display:inline-block;
		position:relative;
	}
	
	.ie7 body #membersWrapper .mainPod #colRight,
	.ie7 body #membersWrapper .mainPod #colLeft{ *display:inline; }
	
	#membersWrapper .mainPod #colRight{
		width:270px;
		height:auto;
		margin:30px 0 0; padding:0 20px 0;
		vertical-align:top;
		display:inline-block;
		position:relative;
		font-family:Arial, Helvetica, sans-serif;
		font-weight:normal;
		color:#FFF; font-size:14px; line-height:18px;
		text-shadow: 0 1px 0 #1d516c;
	}
	
	#membersWrapper .mainPod #colLeft ul,
	#membersWrapper .mainPod #colRight ul{
		margin:0; padding:0;
	}
	
	#membersWrapper .mainPod #colLeft ul li,
	#membersWrapper .mainPod #colRight ul li{
		font-family:Arial, Helvetica, sans-serif;
		font-weight:bold;
		color:#FFF; font-size:14px; line-height:15px;
		background:url(../img/mem-li-arrow.png) left 5px no-repeat;
		text-shadow: 0 1px 0 #1d516c;
	}
	
	#membersWrapper .mainPod #colRight a,
	#membersWrapper .mainPod #colLeft ul li a{ color:#FFF }
	#membersWrapper .mainPod #colRight a:hover,
	#membersWrapper .mainPod #colLeft ul li a:hover{ text-decoration:underline; color:#a1edfd;}
	
	#membersWrapper .mainPod #colRight a#convBtn { 
		width:269px;
		height:62px;
		display:block; 
		margin:30px 0 0 ;
		background:url(../img/conversations-btn.png) 0 0 no-repeat transparent;
	 }
	 
	#membersWrapper .mainPod #colRight a#convBtn:hover { background-position:0 -62px }
	
	#mainPodBase{ background:url(../img/main-pod-base.png) 0 0 no-repeat; width:640px; height:20px; margin: 0 0 20px;}
	
	#membersWrapper #mainPodTitle{ background-position:0 0; height:86px; }
	
	#membersWrapper .simplePod{
		width:278px;
		height:auto;
		min-height:416px;
		padding:0 15px 15px;	
		margin:0 20px 20px 0;
		vertical-align:top;
		display:inline-block;
		background-color:#edf4f8;
		position:relative;
		overflow:hidden;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
		border-bottom:5px solid #52c1d8;
	}
	
	#membersWrapper #memEvents,
	#membersWrapper #memDir{ margin-right:0 !important; }
	
	.ie7 body #membersWrapper .simplePod{ *display:inline; }
	
	
	#membersWrapper .simplePod .memPodTitle{
		width:100%;	
		height:75px;
		padding:0; margin:0;
		position:absolute;
		top:0; left:0;	 
	}
	
	#membersWrapper .simplePod ul { padding:0; margin:80px 0 20px;}
	#membersWrapper .simplePod ul li{ 
		position:relative;
		padding:15px 0; margin:0;
		display:block;
		width:100%;
		height:66px;
		background:url(../img/mem-pod-bgrp.png) 0 bottom repeat-x;
	}
	
	#membersWrapper .simplePod ul li img{ 
		width:65px; height:65px;
		display:block;
		position:absolute;
	}
	
	#membersWrapper .simplePod ul li p.date{
		font-size:10px;
		font-weight:normal;
		color:#797979; 
		margin-left:80px;
		padding-bottom:0;
	}
	#membersWrapper .simplePod ul li a.title{
		display:block;
		font-size:14px;
		color:#0062a7; 
		font-weight:bold;
		width:196px;
		margin-left:80px;
		line-height:17px;
	}
	#membersWrapper .simplePod ul li a.title:hover{
		color:#000; 
	}
	
	#membersWrapper .simplePod a.moreBtn{
		display:block;
		width:90px; height:	18px;
		background:url(../img/more-arrow.png) 0 0 no-repeat;
		padding:0 0 0 25px;
		margin-bottom:10px;
		font-weight:bold;
		color:#2e383c;
	}
	#membersWrapper .simplePod a.moreBtn:hover{ background-position:0 -18px; }
	
	#membersWrapper .simplePod .datePod{ 
		width:65px; height:65px;
		display:block;
		position:absolute;
		background:url(../img/date-back.jpg) 0 0 no-repeat;
	} 
	#membersWrapper .simplePod .datePod p{
		font-weight:bold;
		display:block;
		width:65px;
		color:#fff;
		font-size:34px;
		text-align:center;
		padding:0;
		margin:17px 0 0;
		text-shadow: 0 1px 0 #148fb3;
	}  
	#membersWrapper .simplePod .datePod span{ 
		font-weight:normal;
		display:block;
		width:65px;
		color:#fff;
		font-size:10px;
		text-transform:uppercase;
		text-align:center;
		text-shadow: 0 1px 0 #148fb3;
	} 
	
	
	#membersWrapper .simplePod#memDir .search{ padding:0; margin:95px 0 20px;}
	
	/*search*/
		.simplePod#memDir input[type="text"] {
			-moz-border-bottom-colors: none;
			-moz-border-left-colors: none;
			-moz-border-right-colors: none;
			-moz-border-top-colors: none;
			border-color: #D2D2D2 #D2D2D2 #ECECEC;
			border-image: none;
			border-radius: 3px 3px 3px 3px;
			border-style: solid;
			border-width: 1px;
			box-shadow: 0 1px 0 #ECECEC inset;
			color: #727272;
			float: left;
			font-family: Arial;
			font-size: 12px;
			height: 38px;
			line-height: 35px;
			margin: 0;
			padding: 0 12px;
			position: absolute; 
			width: 222px;
		}
		.ie6 .simplePod#memDir input.searchtext {
			height: 28px;
			padding-top: 12px;
		}
		.ie7 .simplePod#memDir input[type="text"], .ie8 #topBar #search input[type="text"] {
			height: 27px;
			padding-top: 12px;
			line-height: 17px;
		}
		 .simplePod#memDir input[type="submit"] {
			background: url("../img/button-search.png") no-repeat scroll 0 0 transparent;
			border: 0 none; 
			height: 41px;
			margin: 0 0 0 240px;
			padding: 0;   
			width: 40px;
			position:relative;
		}
		.ie7 .simplePod#memDir input[type="submit"] { position:absolute; right:11px; }
		.ie6 .simplePod#memDir input.searchbutton {
			background: url("../img/button-search.png") no-repeat scroll 0 0 transparent;
			border: 0 none;
			float: left;
			height: 36px;
			margin: 0;
			padding: 0;
			width: 39px;
		}
		.simplePod#memDir input:hover input[type="submit"] {
			background-position: 0 -37px;
		}
		.simplePod#memDir input:focus input[type="submit"] {
			background-position: 0 -73px;
		}
		.ie6 .simplePod#memDir input:hover {
			background-position: 0 -36px;
		}
	/*search ends*/
	
	.simplePod#memDir .reports{
		display:block;
		width:100%;
		height:auto; 
		background:url(../img/mem-pod-bgrp.png) 0 top repeat-x;
	}
	.ie7 .simplePod#memDir .reports{margin-top:60px;}
	.simplePod#memDir .reports h1{  font-family: 'MyriadProSemibold'; font-size:21px; font-weight:normal; color:#288ec3; text-transform:uppercase; padding-top:17px; padding-bottom:8px; }
	.simplePod#memDir .reports ul{ padding:0; margin:0;} 
	.simplePod#memDir .reports ul li{  height:auto !important; padding:0 0 0 13px !important; margin:0 !important; line-height:24px; font-size:14px; background-image:url(../img/bullet-links.png); background-position: left 10px; background-repeat:no-repeat !important;} 
	
	.simplePod#memDir .reports ul li a:hover{ text-decoration:underline; } 
	
	#membersWrapper .simplePod #memNewsTitle	{ background-position:0 -87px !important; }
	#membersWrapper .simplePod #memEventsTitle	{ background-position:-310px -87px !important; }
	#membersWrapper .simplePod #memLettersTitle	{ background-position:0 -163px !important; }
	#membersWrapper .simplePod #memDirTitle		{ background-position:-310px -163px !important; }
	
	

/* ------------------------------------------------------------------------------ */
/* sections MEMEBRS - SEARCH */ 
/* ------------------------------------------------------------------------------ */ 
#directorySearchForm{
	padding:20px 0 40px 20px;
	width:612px;
	height:138px;
	background-image:url(../img/search_base.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
 
.searchItem{ 
	float:left;
	width:320px;  
	padding:0; 
}

.searchListing .devider{  
	clear:both;  
	height: 5px;
    margin: 10px 0 30px;
	border-bottom: 1px solid #D1E4ED;
	}

 .searchItem .title,  .searchItem .content{  
	padding:0 !important;
	margin:0 0 20px 0; 
}

 .searchItem .btnText{     
}

.searchItem .btnText .btnDrillDown{   
}

.searchItem .imgThumb{ 
	width:120px;
	height:90px;
	margin-bottom:5px !important;
}

.formControlLabel{ padding:0 0 10px}




/* ------------------------------------------------------------------------------ */
/* sections MEMEBRS - MEMBER DETAILS */ 
/* ------------------------------------------------------------------------------ */ 
#directoryDetails{
	float:left;
	padding:0;
	width:635px;   
	background-repeat: no-repeat;
	background-position: center bottom; 
	background-image:url(../img/news-divider.png);
	 border-collapse: separate !important;
}

#directoryDetails .imgThumb{
		margin-top:10px !important;
	}
#directoryDetails #c1{right:0; text-align:right;}

#directoryDetails #c1,#directoryDetails #c2{
	padding:10px; 	
	
}
 
/* ------------------------------------------------------------------------------ */
/* sections MEMEBRS - CHANGE PASSWORD */ 
/* ------------------------------------------------------------------------------ */ 
#changePasswordForm{
	padding:30px 40px 0 40px;
	width:555px;
	height:540px; 
	background-image:url(../img/password_base.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}




/* ------------------------------------------------------------------------------ */
/* OBITUARIES AND DIRECTORY */
/* ------------------------------------------------------------------------------ */

div.two_column_pod_wrapper {
    float: left;
    margin-bottom: 10px;
    width: 640px;
}

div.searchListing div.two_column_pod, 
div.searchListing div.two_column_lastpod,
div.two_column_pod_wrapper div.two_column_pod, 
div.two_column_pod_wrapper div.two_column_lastpod {
    float: left;
    height: 105px;
    margin-right: 15px;
	margin-bottom:10px;
    margin-top: auto !important;
    overflow: hidden;
    position: relative;
    width: 305px;
} 

div.searchListing div.two_column_pod, 
div.searchListing div.two_column_lastpod{
	margin-bottom:10px;	
}

div.two_column_pod_wrapper div.two_column_lastpod { 
 	/*margin-left:20px;*/
    margin-right: 0 !important;
}

div.searchListing  div.two_column_lastpod{ 
 	margin-left:13px;
    margin-right: 0 !important;
}

div.two_column_pod_wrapper div.cappingTop {
    border-top:solid 1px #e5e8ed;
    height: 2px;
    left: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 305px;
}

div.two_column_pod_wrapper div.cappingBottom {
    border-bottom:solid 1px #e5e8ed;
    bottom: 0;
    height: 2px;
    left: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 305px;
}
/*----------------------OBITUARIES------------------------*/
a.podBody {
    background: url(../img/exchange/bg-pod.png) 0 0 no-repeat #f8fbfc;
    border: 1px solid #dff5f9; 
    height: 80px;
	width:180px;
    padding: 10px 8px 10px 115px;
	display:block; 
}

a.podBody:hover{
    background: url(../img/exchange/bg-pod.png) -180px 0px no-repeat #edf5f8;
    border: 1px solid #dff5f9!important; 
}

contentViewport a.podBody:hover,
contentViewport a.podBody:focus{
	text-decoration:none !important;
	
}
 
a.podBody .pod_image{
    background-color: #FFFFFF;
    height: 120px;
    left: 3px;
    margin: 4px;
    padding: 0;
    position: absolute;
    top: 6px;
    width: 90px;
	border: 1px solid #d9eaea;
	background:url(../img/thumb_obituaries.jpg)  no-repeat;
}

body#sec11 a.podBody .pod_image{ width:88px; height:87px; background-position:center 0; }
 
#directoryDetails .imgThumb{ 
    height: 120px; 
    margin: 4px;
    padding: 0; 
    width: 90px;
	border: 1px solid #d9eaea;
	background:url(../img/thumb_directories.jpg)  no-repeat;
}
 
.podBodyDir .pod_image{ 
	background:url(../img/thumb_directories.jpg)  no-repeat;
}

.podBodyDir h3,
a.podBody h3{
	padding:0 0 11px 0 !important;
	margin:0 !important; 
	color: #01406C;
}
 

a.podBody p span.podHeading { 
    font-size: 13px;
    font-weight: bold;
}

a.podBody  p { 
    font-size: 13px; 
	line-height:9px;
}
a.podBody:hover h3,
a.podBody:hover p,
a.podBody:hover p span.podHeading{ 
	text-decoration:none !important;
}

.contentViewport div#dirView img.thumbImg,
.contentViewport div#obituariesView img.thumbImg{
    left: 0;
    position: absolute;
    top: 5px;
	border: 1px solid #d9eaea;
	margin: 0 0 20px;
} 

.contentViewport div#dirView,
.contentViewport div#obituariesView { 
    position: relative;
}

.contentViewport div#dirView .dirIntro,
.contentViewport div#obituariesView .obituariesIntro{
    padding-left: 110px;
    position: relative;
	height: 150px;
}

.contentViewport div#dirView .dirBiograpghy,
.contentViewport div#obituariesView .obituariesBiograpghy{ 
    position: relative;
}



.two_column_pod_wrapper h2{
	padding:0 0 20px 0 !important;
	margin:0 !important;	
}


.contentViewport div#dirView p ,
.contentViewport div#obituariesView p {
    font-size: 1em;
    margin: 6px 0 5px;
	padding: 0 !important;
}

/* ------------------------------------------------------------------------------ */
/* Common elements */
/* ------------------------------------------------------------------------------ */
.podBodyDir a.btnMore,
a.podBody .btnMore {
    background: url("../img/exchange/img_sprite.png") no-repeat scroll -1296px -71px transparent;
    bottom: 9px;
    display: block;
    float: right;
    height: 25px;
    position: absolute;
    right: 9px;
    width: 24px;
	cursor:pointer;
}
a.btnMore:hover,
a.podBody:hover .btnMore{
    background-position: -1320px -71px;
}

 
a.btnDown {
 background: url("../img/btn-download.png") no-repeat scroll 0 0 transparent;
    display: block;
    height: 16px;
    margin-top: 13px;
    width: 75px;
}
a.btnDown:hover {
    background-position: 0 -16px;
}
 
 
/* ------------------------------------------------------------------------------ */
/* Common elements TOBEDONE */
/* ------------------------------------------------------------------------------ */
/*pagination*/
.pagination { 
	margin:0 0 20px 0;
	padding:10px 15px;
	height:18px;
	border-top:2px solid #333; 
	overflow:hidden;  
}
	.pagination .msg,
	.pagination .pages { line-height:20px; height:20px; margin:0; padding:0; width:auto; overflow:visible; }
	.pagination .msg   { color:#232323; font-size:12px; float:left; }
	.pagination .pages { text-align:right; float:right; }
	
		/*buttons global*/
		.pagination .pages .btnPrev,
		.pagination .pages .btnNext,
		.pagination .pages .btnPage {
			font-size:12px;
			font-weight:bold;
			line-height:20px;
			text-decoration: none;
			display:block; 
			float:left; 
			margin:0 2px;
			padding:0;  
			width:20px; 
			height:20px; 
			overflow:hidden;
		}
		
		/*navigation buttons*/
		.pagination .pages .btnPrev,
		.pagination .pages .btnNext {
			background-image:url(../img/sprite-contentviewport-pagination.png);
			background-repeat:0 0 no-repeat;	
			font-size:0px;
			line-height:0px;
			text-indent:-9999em;
			width:20px; 
		}
		.pagination .pages .btnPrev { margin-right:6px; }
		.pagination .pages .btnNext { margin-left:6px; }
		
		.pagination .pages .btnPrev       { background-position:   0px   0px; }
		.pagination .pages .btnPrev:hover { background-position: -20px   0px; }
		.pagination .pages .btnNext       { background-position:  -0px -20px; }
		.pagination .pages .btnNext:hover { background-position: -20px -20px; }
		
		/*page buttons*/
		.pagination .pages .btnPage,
		.pagination .pages .btnPage:link,
		.pagination .pages .btnPage:visited,
		.pagination .pages .btnPage:active { 
			color:#4d494b;
			text-align:center;
			background:#e2e2e2; 
			/*border-radius*/
			-webkit-border-radius:2px;
			-moz-border-radius:2px;
			border-radius:2px;
		}
		.pagination .pages .btnPage:hover,
		.pagination .pages .btnPage:focus { 
			background:#fff; 
			text-decoration:none;
		}
		.pagination .pages .btnPage.selected { 
			color:#fff!important;
			background:#999;
			cursor:default!important;
		}


/* ==|== non-semantic helper classes ========================================
   Please define your styles before this section.
   ========================================================================== */
/* For image replacement */
.ir { display:block; border:0; text-indent:-999em; overflow:hidden; background-color:transparent; background-repeat:no-repeat; text-align:left; direction:ltr; line-height:1px; }
.ir br { display: none; }
/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden { display: none !important; visibility: hidden; }
/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }
/* Contain floats: h5bp.com/q */ 
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }
.clear { clear:both; }
.clearer { float: none;	clear: both; height: 0;	line-height: 0;	overflow: hidden; visibility: hidden; }
/* convert a list of links to a horizontal line of links with pipe seps (JX 20111004) */
.listLinks { list-style:none; overflow:visible; }
	.listLinks li { float:left; padding-right:8px; margin-right:8px; border-right: 1px solid; background: none; }
	/*.listLinks li:last-child { border-right:none; padding-right:0; }*/
	.listLinks li.last-child { border-right:none; padding-right:0; }
	
/* common text styles */
.txtLowerCase { text-transform:lowercase; }
code { /*for style notes*/
	display:inline-block; margin:0 0 20px 0; padding:0 10px; clear:both;
	font-size:11px; font-weight:bold; line-height:20px; 
	color:#fff; background:#CC9; border-radius:10px;
	box-shadow:inset 0 1px 1px rgba(0,0,0,0.2);
	text-shadow:0 1px 0px rgba(0,0,0,0.2);
}

/*debug styles 
p 	{ background-color:rgba(255,255,0,0.1); }
li 	{ background-color:rgba(255,0,0,0.1); }
a	{ background-color:rgba(0,0,255,0.1); }
h1,h2,h3,h4,h5 { background-color:rgba(0,255,0,0.1); } */