/* Start of CMSMS style sheet 'Accessibility and cross-browser tools' */
/* accessibility */

/* 
menu links accesskeys 
*/
span.accesskey {
   text-decoration:none;
}

/* 
accessibility divs are hidden by default 
text, screenreaders and such will show these 
*/
.accessibility, hr.accessibility {
   position: absolute;
   top: -999em;
   left: -999em;
}

/* 
definition tags are also hidden 
these are also used for menu links    
*/
dfn {
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}
/* end accessibility */


/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
  position: absolute;
  left: -5000px;
  width: 4000px;
}

/* make some room for the image */
a.external {
/* css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
  padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
  color: #18507C;
/* background image for the link to show wiki style arrow */
  background: url(images/cms/external.gif) no-repeat 100% 0;
}
a.external:visited {
  color: #18507C; /* a different color can be used for visited external links */

/* 
Set the last 0 to -100px to use that part of the external.gif image for different color for active links 
external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.
*/
  background: url(images/cms/external.gif) no-repeat 100% 0; 
}

a.external:hover {
  color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
  background: url(images/cms/external.gif) no-repeat 100% 0; 
  background-color: #C3D4DF;
}
/* end wiki style external links */


/* clearing */
/* 
clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item.
We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience.
Do not edit if you dont know what you are doing
*/
	.clearfix:after {
		content: "."; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	* html>body .clearfix {
		display: inline-block; 
		width: 100%;
	}
	
	* html .clearfix {
		/* Hides from IE-mac \*/
		height: 1%;
		/* End hide from IE-mac */
	}

/* end clearing */
/* End of 'Accessibility and cross-browser tools' */

/* Start of CMSMS style sheet 'VersaForm Layout' */
VersaForm Layout

@charset "utf-8";
/* CSS Document */

<!--

body {
  background: inherit;
}

body.oneColFixCtrHdr {
	background: #CCCCCC;
	margin: 0; 
	padding: 0;
	text-align: center;
	color: #000000;
}

/* center wrapper, min max width */
div#container{
   margin: 15px auto;     /* this centers wrapper */
   max-width:80em;  /* IE wont understand these, so we will use javascript magick */
   /*min-width: 60em;*/
   background-color: #fff;;
   color: #333;
   width: 850px;
   text-align: left;
   border:1px solid #999;

}


div#header {
   height: 110px; /* adjust according your image size */
   background: #FFFFFF;   
   position:relative;      
}

div#header h1 {
   width: 150px;       
}


div#header h1 a {
/* you can set your own image here */
   background: #FFFFFF url(uploads/images/versaform-logo.gif) no-repeat; 
   display:block;
   margin-top: 15px;
   height: 110px;             /* adjust according your image size */
   width: 150px;              /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#header div.logo {
   width: 150px;       
}


div#header div.logo a {
/* you can set your own image here */
   background: #FFFFFF url(uploads/images/versaform-logo.gif) no-repeat; 
   display:block;
   margin-top: 15px;
   height: 110px;             /* adjust according your image size */
   width: 150px;              /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

/* MAIN */


div#main {
   margin-left: 23%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 5%; /* and some air on the right */
}

/* MAIN CONTENT */

div#mainContent {
  margin: 2em 3.8em 4em 3.8em;
}

div#mainContentTabs {
  margin: .2em .5em 1em;
}

/* MAIN PRODUCTS */

div#mainProducts {
   margin-left: 23%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 26%; /* and some air on the right */
}

div#mainProducts p {
   color:#333333;
   font-size:12px;
   line-height:20px;
}

div#mainProducts ul {
  list-style: square;
  margin: .7em .5em 0 1.1em;
  padding-left: 0;
}

div#mainProducts ul li {
  margin-left: 0;
  padding-left: 0;     /* distance between marker and text */
  margin-bottom: .6em; /* a little spacing between list items */
  line-height: 18px;
  color: #333;
}

div#mainProducts div.demoWindow {
  width: 160px;
  float: right;
  margin: 12px;
  padding: 10px;
  border: 1px dashed #CCCCCC;
}

/* RIGHT COLUMN */

div#rightColumn{
   float: right;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 20%;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin: 4.2em 1.4em 0 0;
   background-color: #EDEDED;
   padding: .8em;
}

div#rightColumn p {
   color:#333333;
   font-size:12px;
   line-height:20px;
}


div#rightColumn ul {
  list-style: square;
  margin: .7em .5em 0 1.8em;
  padding-left: 0;
}

div#rightColumn ul li {
  margin-left: 0;
  padding-left: 0;     /* distance between marker and text */
  margin-bottom: .6em; /* a little spacing between list items */
  line-height: 18px;
  color: #333;
}


/* SIDEBAR */

div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 20%;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 0;
}

/* BREADCRUMBS */

div.breadcrumbs {
   padding: 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 7pt;        /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   color: #666666;
   margin: 1em 1em 1em 23%;        /* css shorthand rule will be opened to be "0 1em 0 1em" */
}

div.breadcrumbs a { 
   text-decoration: none; 
   color: #666666;
 } 

div.breadcrumbs span.lastitem { 
  color: #CC0000;
 } 

/* SEARCH */

div.searchBox {
   float:right;
   margin: .8em 1.2em;
}


/* PANELS */

.panel {
	border: 1px solid #CCCCCC;
	background-color: #FFFFFF;
	padding: 0;
	margin: 0;
}

.panel>div.stripe {
	height: 5px;
	background-color:#CC0000;
	margin-bottom:2px;
}

.panel div.panelContents {
	clear:both;
	margin: 0;
	padding: .8em;
}

.panel div.panelContents div.panelIcon {
	float: left;
	margin: 1px;
	width: 60px;
	height: 275px;
}

.panel div.panelContents div.panelText {
	margin-left: 65px;
	width: auto;
}

.homeLeftPanel {
	float: left;
	width: 38%;
}

.homeRightPanel {
	float: left;
	width: 60%;
	margin-left:10px;
}
.homePanel1 {
	float: left;
	width: 32%;
}

.homePanel2 {
	float: left;
	width: 32%;
	margin-left:10px;
}
.homePanel3 {
	float: left;
	width: 32%;
	margin-left:10px;
}

-->


/* End of 'VersaForm Layout' */

/* Start of CMSMS style sheet 'VersaForm Leftnav' */
/********************
MENU
*********************/
#menu_vert {
   padding-left: 0;
   margin-left: 1em;
   font-size: 12px;
}

#menu_vert ul {
   margin: 0;
   padding: 0;
}

/* third level has some padding to have it stand out */
div#menu_vert ul ul ul {
   padding-bottom: 0.5em;
}

/* menu li block */
#menu_vert li {
   list-style: none;
   margin: 0;
   border-bottom: 1px solid #EDEDED;
   display: block;
}

#menu_vert ul ul li {
   border: none;
}

/** fix stupid ie bug with display:block; **/
* html #menu_vert li a { height: 1%; } 
* html #menu_vert li hr { height: 1%; }
/** end fix **/

/* first level links */
div#menu_vert a {
   text-decoration:none; /* no underline for links */
   display: block; /* IE has problems with this, fixed above */
   padding: 0.5em 0.5em 0.5em 0.6em; /* some air for it */
   color: #333333; /* this will be link color for all levels */
   /*background: url(images/cms/arrow-right.gif) no-repeat 0.5em center; */
   min-height:1em; /* Fixes IE7 whitespace bug */ 
}

/* next level links, more padding and smaller font */
div#menu_vert ul ul a {
   padding: 0.5em 0.5em 0.5em 1.4em;
   border-top: 1px solid #EDEDED;
}

/* third level links, more padding */
div#menu_vert ul ul ul a {
   padding: 0.8em 0.5em 0.8em 2.5em;
   background: url(images/cms/dash.gif) no-repeat 2.8em center; 
}

/* hover state for all links */
div#menu_vert a:hover {
   /*background-color: #edf6fa;*/
   color: #cc0000;
}
div#menu_vert a.activeparent:hover {
   /*background-color: #edf6fa;*/
   color: #cc0000;
}

/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/
div#menu_vert li a.activeparent {
   /*background: #EDEDED url(images/cms/arrow-down.gif) no-repeat 0.4em center; 
   color: #0069aa;*/
   border-bottom: 1px solid #EDEDED;
}

div#menu_vert li.activeparent {
   border-bottom: none;
}

div#menu_vert li.activeparent ul li{
   border-bottom: 1px solid #EDEDED; 
   color: #cc0000;
}

div#menu_vert ul ul li a.activeparent {
   background-position: 1.5em center; 
   background-color: transparent;
   color: #18507C;
}


/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/
div#menu_vert ul h3 {
   background: url(images/cms/b-arrow-right.gif) no-repeat right center;
   display: block; 
   padding: 0.5em 0.5em 0.5em 0.6em;  /* some air for it */
   color: #cc0000;                                 /* this will be link color for all levels */
   font-size: 1em;                           /* instead of the normal font size for <h3> */
   margin: 0;                                  /* as <h3> normally has some margin by default */
}

/* 
next level current pages, more padding, 
smaller font and no background color or bottom border
*/
div#menu_vert ul ul h3 {
   padding: 0.5em 0.5em 0.5em 1.4em;
   background: url(images/cms/b-arrow-right.gif) no-repeat right center;
   border-bottom: none;
   color: #cc0000;     
}

div#menu_vert ul ul li {

}

/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
   padding: 0.5em 0.5em 0.5em 2.2em;
   background: url(images/cms/b-arrow-right.gif) no-repeat right center;
}

/* section header */
div#menu_vert li.sectionheader {
   border-right: none;
   font-size: 130%;
   font-weight: bold;
   padding: 1.5em 0 0.8em 0;
   background-color: #fff;
   line-height: 1em;
   margin: 0;
   text-align:center;
}



/* separator */
div#menu_vert li.separator {
   height: 1px !important;
   margin-top: -1px;
   margin-bottom: 0;
   padding:2px 0 2px 0;
   background-color: #000;
   overflow:hidden !important;
   line-height:1px !important;
   font-size:1px; /* for ie */
}

div#menu_vert li.separator hr {
   display: none; /* this is for accessibility */
}
/* End of 'VersaForm Leftnav' */

/* Start of CMSMS style sheet 'VersaForm Primary Navigation' */
/* Horizontal menu for the CMS CSS Menu Module */
/* by Alexander Endresen */

/* The wrapper clears the floating elements of the menu */

/* Fix for Opera 8 */
.clearb { clear: both; }
#menuwrapper { 
   /* Fix for Opera 8 */ 
   /*   overflow: hidden;  */ 
   background-color: #FFFFFF;
   position: absolute;
   top: 5px;
   right: 20px;
   width: 630px;
/* this is the width of the top menu items */
   text-align:right;
}

#primary-nav {
   position: relative; 
   float: right;
   text-align:left;
}

/* Set the width of the menu elements at second level. Leaving first level flexible. */
#primary-nav li li { 
   width: 160px; 
}


/* Unless you know what you do, do not touch this */ 
#primary-nav, #primary-nav ul { 
   list-style: none; 
   margin: 0px; 
   padding: 0px; 
}

#primary-nav ul { 
   position: absolute; 
   top: auto; 
   display: none;
}
#primary-nav ul ul { 
   margin-top: 1px;
   margin-left: -1px;
   left: 100%; 
   top: 2px; 
}
	
#primary-nav li { 
   float: left;
}

#primary-nav li li { 
   margin-left: 0px;
   margin-top: 0px;
   float: none; 
   position: relative; 
}

/* Styling the basic apperance of the menu elements */

#primary-nav a { 
   display: block;
   text-decoration: none; 
   color: #000000;
}

#primary-nav li.menuTop1,
#primary-nav li.menuTop1h { 
   padding-bottom: 3px; 
   margin: 10px 0px 3px 25px; 
}

#primary-nav li.menuTop1>a,
#primary-nav li.menuTop1h a { 
   font-size: 12px;
   letter-spacing: .1pt;
   text-transform: uppercase;
   padding: 0 1px 1px 1px;
   color: #000000;
   background-color: #FFFFFF; 
}
	
#primary-nav li, #primary-nav li.menuparent { 
   background-color: #FFFFFF; 
   color: #000000;
}

#primary-nav li.menuactive { 
   background-color: #FFFFFF; 
   color: #CC0000;
   border-bottom: 2px solid #CC0000;
}

#primary-nav li.menuactive a.menuactive { 
   color: #CC0000;
}


/* Styling the basic apperance of the menuparents - here styled the same on hover (fixes IE bug) */
#primary-nav ul li.menuparent, 
#primary-nav ul li.menuparent:hover, 
#primary-nav ul li.menuparenth { 
/* arrow for menuparents 
   background-image: url(images/cms/arrow.gif); 
   background-position: center right; 
   background-repeat: no-repeat; */
}

#primary-nav li.menuparent ul li a{
   width: 93%;
   height: 100%;
   padding: 4px;
}

#primary-nav li.menuparent ul li {
   padding: 1px; 
   border-bottom: 1px solid #EDEDED;
   line-height: 18px;
}

#primary-nav li.menuparent ul {
   margin-top: 5px;
}

#primary-nav li.menuparent ul li:hover { 
   text-decoration: none;
   background-color: #EDEDED;
}

/* Styling the apperance of menu items on hover */

#primary-nav li.menuTop1 li:hover, 
#primary-nav li.menuTop1h li:hover, 
#primary-nav li.menuTop1 li.menuh,
#primary-nav li.menuTop1 li.menuparenth,  
#primary-nav li.menuTop1 li.menuactiveh { 
   background-color: #EDEDED;
}

#primary-nav li.menuTop1 a:hover,
#primary-nav li.menuTop1h a:hover {
   color: #CC0000;
}

#primary-nav li.menuTop1h a:hover {
  /* color: #CC0000;
   border-bottom: 2px solid #CC0000;*/
}

#primary-nav li.menuTop1:hover,
#primary-nav li.menuTop1h:hover {
   border-bottom: 2px solid #CC0000;
}

#primary-nav li.menuTop1:hover a,
#primary-nav li.menuTop1h:hover a {
   color: #CC0000;
   letter-spacing: .1pt;
}

#primary-nav li.menuTop1:hover li.menuTop2 a,
#primary-nav li.menuTop1h:hover li.menuTop2 a {
   color: #000;
}

#primary-nav li.menuTop2 {
   color: #000;
}

#primary-nav li.menuTop2 a {
   color: #000;
}

#primary-nav li.menuTop2:hover {
   background-color: #EDEDED;
}

#primary-nav li.menuTop2:hover a {
   background-color: #EDEDED;
   letter-spacing: .1pt;
}



/* The magic - set to work for up to a 3 level menu, but can be increased unlimited */

/* 
just add 
#primary-nav li:hover ul ul, 
#primary-nav li.menuparenth ul ul ul,
for fourth level 
*/
#primary-nav ul, 
#primary-nav li:hover ul, 
#primary-nav li:hover ul ul, 
#primary-nav li.menuparenth ul, 
#primary-nav li.menuparenth ul ul { 
   display: none;
}

/* add 
#primary-nav ul ul ul li:hover ul, 
#primary-nav ul ul ul li.menuparenth ul,
for fourth level
*/
#primary-nav li:hover ul, 
#primary-nav ul li:hover ul, 
#primary-nav ul ul li:hover ul, 
#primary-nav li.menuTop1h ul,
#primary-nav li.menuparenth ul, 
#primary-nav ul li.menuparenth ul, 
#primary-nav ul ul li.menuparenth ul { 
   display: block;
}

#primary-nav li.menuTop1h ul {
   margin-top: 3px;
}

#primary-nav li.menuTop2h,
#primary-nav li.menuTop2h a,
#primary-nav li.menuTop2h a:hover,
#primary-nav li.menuTop2h ul li {
   background-color: #EDEDED;
   text-decoration: none;
   color: #000;
   border-bottom: 1px solid #EDEDED;
}


/* IE Hacks */
#primary-nav li li { 
   float: left; 
   clear: both; 
}
#primary-nav li li a { 
   height: 1%; 
}
/* End of 'VersaForm Primary Navigation' */

/* Start of CMSMS style sheet 'VersaForm Style' */
@charset "utf-8";
/* CSS Document */

html,body,div,span {
	font-family: inherit;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	}

body {
	font: 12px Arial, Helvetica, sans-serif;
	color: #333333;
	}

:focus {
	outline: 0;
	}

	
img {
   border: 0;
}

font,basefont {
    color:inherit; /* Standard browsers */
    color:expression(this.parentNode.currentStyle['color']); /* IE */
    font:inherit; /* Standard browsers. Font instead of font-size for Opera */
    font-family:expression(this.parentNode.currentStyle['fontFamily']); /* IE */
    font-size:100%; /* All browsers. Sizes are inherited */
}

hr.black {
	background-color:#000000;
	color:#000000;
	height:1px;
	border: none;
}

/*
LINKS
*/
a,
a:link 
a:active {
   text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #CC0000; 
}

a:visited {
   text-decoration: none;
   background-color: inherit;
   color: #CC0000;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   color: #666666;
}	

a.currPage {
   text-decoration: none;
   color: #666666;
}	


/* LISTS */

div#main ul {
  list-style: square;
  margin: .7em .5em 0 1.8em;
  padding-left: 0;
}

div#main ul li {
  margin-left: 0;
  padding-left: 0;     /* distance between marker and text */
  margin-bottom: .6em; /* a little spacing between list items */
  line-height: 18px;
  color: #333;
}	

div#main ol {
  margin: .7em .5em 0 1.8em;
  padding-left: 0;
}

div#main ol li {
  margin-left: 0;
  padding-left: 0;     /* distance between marker and text */
  margin-bottom: .6em; /* a little spacing between list items */
  line-height: 18px;
  color: #333;
}	


p {
  padding: 0.6em 0 0.6em 0;
  margin: 0;
  line-height: 1.6em;
}


div.hr {
   height: 1px;
   border-bottom: 1px dashed #666666;
   margin-bottom: 15px;
}


/* HEADERS */

#main h1, #mainProducts h1, h2 {
	color:#CC0000;
	font-size: 1.5em;
	padding: 0.5em 0 0.5em 0;
	margin: 0;	
}

#main h2 {
  font-size: 1.4em;
  font-weight: normal;
}

h3 {
	color:#000000;
	font-size: 1.4em;
	padding: 0.5em 0 0.5em 0;
	margin: 0;	
        font-weight: normal;
}

h4 {
	color:#666;
	font-size: 1.2em;
	padding: 0.5em 0 0.5em 0;
	margin: 0;	
}

/* FOOTER */

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #000;
   background-color: #FFFFFF; /* same bg color as in header */
   margin: 1.5em;
}

div#footer p {
   font-size: 11px;
   padding: 0.5em 0 1.5em 0;      /* some air for footer */
   text-align: left; /* centered text */
   margin:0;
}

div#footer p a {
   color: #000; /* needed because footer link would be same color as background otherwise */
}

div#footer div.footerLinks {
   margin-bottom: 1em;
}

div#footer .footerLinks ul {
   list-style-type: none;
   margin: 0;
   padding: 0;
}

div#footer .footerLinks ul li {
   font-size: 9px;
   display: inline;
   border-left: 1px solid #999999;
}

div#footer .footerLinks ul li a {
   font-size: 12px;
   line-height: 16px;
   text-decoration: none;
   padding: 0;
   margin-left: .8em;
   margin-right: .6em;
   color: #000;
}

div#footer .footerLinks ul li.footerFirst {
   border-left: none;
   margin-left: 0;
}

div#footer .footerLinks ul li.footerFirst a {
   margin-left: 0;
}

div#footer .footerLinks ul li a:hover {
   color: #CC0000;
}

/* PANELS */

.panel div.panelContents div.panelText p {
	line-height: 18px;
}

/*IMAGE CAPTIONS*/

.imgCaption {
  text-align: right;
  font-size: 7pt;
  margin-right: 15px;
}
/* End of 'VersaForm Style' */

/* Start of CMSMS style sheet 'VersaForm Tables and Forms' */
.error_message li {
   color: #FF0000 ! important;
}

.compTable th {
  text-align: center;
  padding: 3px;
}

.compTable td {
  padding: 5px;
  border-bottom: 1px solid #666;
}

/* Front End Users */

.feu textarea {
   width: 25em;
   height: 10em;
}

/* End Front End Users */

/* EMR Download */

div.contactform {
    margin: 10px 0 10px 0;
}

div.contactform label {
    display: block;
    width: 110px;
    float: left;
}

div.contactform div {
    margin-bottom: 10px;
}  

div.contactform span.errMsg {
    margin-left: 10px;
    color: #CC0000;
} 

div.contactform .fbsubmit {
    margin: 10px 0 0 0;
}

/* EMR Registration */

div.emrreg div {
   margin: 10px 0 10px 0;
   padding:0;
}

div.emrreg label {
	display: block;
	width: 180px;
	float: left;
}

div.emrreg br {
	clear: left;
}

div.emrreg div.instOpts label {
	display: inline;
	float:none;
	width:auto;
}

div.emrreg div.checkLabel label {
	display: inline;
	float:none;
	width:auto;
}

div.emrreg div.textbox label {
	display: block;
	float:none;
	width:auto;
}

div.emrreg div.textbox textarea {
        margin: 10px 0 10px 0;
}

/*div.emrreg .firstName {
    height: 25px;
}*/
/* End of 'VersaForm Tables and Forms' */

/* Start of CMSMS style sheet 'Module: News' */
div#news {
  margin: 2em 0 1em 1em;  /* margin for the entire div surrounding the news list */
  border: 1px solid #000; 
  background: #FFE9AF; 
}

div#news h2 {
   line-height: 2em;
   background: #fff;
}

.NewsSummary {
    padding: 0.5em 0.5em 1em; /* padding for the news article summary */
    margin: 0 0.5em 2em 0.5em; /* margin to the bottom of the news article summary */
    border-bottom: 1px solid #ccc; 
}

.NewsSummaryPostdate {
  font-size: 90%;
  font-weight: bold;
 }

.NewsSummaryLink {
    font-weight: bold;
    padding-top: 0.2em;
}

.NewsSummaryCategory {
  font-style: italic;
  margin: 5px 0;
 }

.NewsSummaryAuthor {
  font-size: 90%;
  font-style: italic;
  padding-bottom: 0.5em;
}

.NewsSummarySummary, .NewsSummaryContent {
  line-height: 140%;
 }

.NewsSummaryMorelink {
  padding-top: 0.5em;
}

#NewsPostDetailDate {
  font-size: 90%;
  margin-bottom: 5px;
  font-weight: bold;
  width: 200px;
  }

#NewsPostDetailSummary {
   line-height: 150%;
   }

#NewsPostDetailCategory {
  font-style: italic;
  border-top: 1px solid #ccc;
  margin-top: 0.5em;
  padding: 0.2em 0;
}

#NewsPostDetailContent {
  margin-bottom: 15px;
  line-height: 150%;
  }

#NewsPostDetailAuthor {

  padding-bottom: 1.5em;
  font-style: italic;
}


/* to add specific style to the below divs, uncomment them. */

/* 
#NewsPostDetailTitle {}
#NewsPostDetailHorizRule {}
#NewsPostDetailPrintLink {}
#NewsPostDetailReturnLink {}
*/

div.addThisBtn {
  width: 250px;
  float:right;
  text-align:right;
}
/* End of 'Module: News' */

