/* 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 {
   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 'LHM Layout' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/

* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 70.01%;
   line-height: 1.4em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 11px;
   line-height: 1.4em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
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: #006699; 

}

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

}

/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: transparent;
   color: #0066CC;

}

.photo-left  {
   float: left;
   margin: 0 10px 5px 0;
}

.photo-right  {
   float: right;
   margin: 0 0 5px 10px;
}

/*****************
basic layout 
*****************/
body {
   background-color: #FFF;
   color: #333;
   margin:1em;    /* gives some air for the pagewrapper */
}

div.expand {
   background-color: #FFF;
}


/* center wrapper, min max width */
div#pagewrapper {
   border: 0px solid black;
   margin: 10px auto;       /* this centers wrapper */
   /*max-width: 80em;    IE wont understand these, so we will use javascript magick */
   /*min-width: 60em; */
   width: 788px;
   color: black;
}

#menu_top {
  position: absolute;
  z-index: 21;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
   behavior: url(iepngfix.htc);
   height: 184px;    /* adjust according your image size */
   background: url(uploads/images/header.png) no-repeat; 
   margin: 0;          
}

/* position for the search box */
div#search {
   position: absolute;
   top: 0;
   left: 562px;
   float: left;
   width: 180px;    /* enough width for the search input box */
   padding: 19px 0;
   background: url(uploads/images/search_bck.gif) no-repeat;
}


div#search input {
   width: 125px;    /* enough width for the search input box */
   padding: 3px 5px 3px 20px;
   margin-top: 0px;
   border-top: 0px #000 solid;
   border-left: 0px #000 solid;
   border-right: 0px #999 solid;
   border-bottom: 0px #666 solid;
   color: #333;
   font-size: 90%;
   background: none;
}

div#search input#go { 
   position: relative;
   width: 27px;    /* enough width for the search input box */
   height: 27px;
   padding:  0;
   border: 0;
   margin-left: 25px;
   background: url(uploads/images/search.png) no-repeat;
   cursor: pointer;
}

div.breadcrumbs {
   position: relative;
   float: left;
   padding: 10px 0 10px 0px; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;        /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   color: #333;
   margin: 0 0 10px 0;        /* css shorthand rule will be opened to be "0 1em 0 1em" */
  vertical-align: middle;
  border-bottom: 1px #333 solid;
  width: 100%;
}

div.breadcrumbs a, div.breadcrumbs a:link, div.breadcrumbs a:visited {
   text-decoration: none;
   color: #333; 
}


div.breadcrumbs a:hover {
   text-decoration: none;
   color: #0066CC; 
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold;
   color: #333; 
 } 

 div#content {
   margin: -6px 0 0 5px;   /* some air above and under menu and content */
   width: 788px;
}

div#main {
   z-index: 0;
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   display: inline;  /* FIX IE double margin bug */
   margin-left: -1px; /* and some air on the right */
   margin-bottom: 10px;
   width: 515px;
   padding: 15px 0 0 20px;
   border-left: 1px #999 solid;
   behavior: url(iepngfix.htc);
   background: url(uploads/images/shadow-right.png) no-repeat;
   background-position: left top;
}

div#sidebar {

   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 249px;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin: 0;
   padding-top: 15px;
   padding-bottom: 50px;
   border-right: 1px #999 solid;
}

div#footer {
   position: relative;
   display: block;
   clear: both;       /* keep footer below content and menu */
   color: #333;
   background-color: transparent; /* same bg color as in header */
   padding: 0;       /* some air for footer */  
   margin: 25px 0px 30px 0px;
   height: 50px;
   border-top: 1px solid #999;
   width: 788px;
}

div#footer p, div#footer td {
   padding: 10px 0px 15px 0px;
   font-size: 0.8em;
   margin: 0;
}

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

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

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   padding: 0px;
   border-bottom: 0px;
   margin: 0px;
}

div.left49 {
  display: none;
  width: 69%; /* 50% for both left and right might lead to rounding error on some browser */
  margin: 0
}

div.right49 {
  display: none;
  float: right;
  width: 29%;
  text-align: right;
  margin: 0;
}


/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 1.4em; /* font size for h1 */
   line-height: 1.6em;
   margin: 0;
}
div#content h2 {
	color: #333; 
	font-size: 1.2em; 
	text-align: left; 
/* some air around the text */
	padding-left: 0em;
	padding-bottom: 1px;
/* set borders around header */
	border-bottom: 0px solid #e7ab0b; 
	border-left: 0em solid #e7ab0b; 
        line-height: 1.4em;
/* and some air under the border */
        margin: 0 0 10px 0;
}

div#content-title h3 {
   color: #333; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin-bottom: 5px;
}
div#content h3 {
   color: #333; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin-bottom: 4px;
}
div#content h4 {
   color: #333; 
   font-size: 1em;
   line-height: 1.2em;
   margin-bottom: 1px;
}
div#content h5 {
   color: #333 
   font-size: 0.9em;
   line-height: 1.1em;
    margin: 0 0 1px 0;
}
h6 {
   color: #333; 
   font-size: 0.8em;
   line-height: 1em;
   margin: 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 11px;
   margin: 0 0 15px 0; /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
}

blockquote {
   border-left: 0px solid #fff;
   margin-left: 20px;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 11px;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;


}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0.5em 0 1em 0;
}

div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
   text-align: left;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}


/* END LISTS */

.lit {
   font-family: Times New Roman, Times, Arial, Helvetica, sans-serif;
   font-style: italic;
}

.maincategory {
   border-collapse: collapse; 
   border: 1px #999999 dotted;
   padding: 5px; 
   text-align:center; 
   margin: 0;
}

.subcategory {
   border-collapse: collapse; 
   border: 0;
   padding: 0px; 
   text-align:center; 
   margin-bottom: 5px;
}


div.itemcat td {
   padding: 5px;
   border-top: 1px #999999 dotted;
   border-bottom: 1px #999999 dotted;
   border-right: 1px #999999 dotted;
   border-collapse: collapse;
   text-align: left;
}

.itemheading  {
   border-collapse: collapse;
   color: #333;
}

.itemspec  {
   padding: 5px 2px 2px 5px;
   border-collapse: collapse;
   background: #F8F8F8;
   color: #000;
   width: 25%;
}

.itemspec a {
   padding: 5px;
   border-collapse: collapse;
   background: #CC0000;
   color: #fff;
   text-align: left;
}

.cat {
   margin-bottom: 5px;
}

.categorytitle a:link, .categorytitle a:hover, .categorytitle a:visited {
   line-height: 1.2em;
   font-weight: bold;
   text-align: center;
}
   

/* MY STUFF */

div#container {
   position: relative;
   border: 0;
   margin: 0;
   padding: 0;
   background: url(uploads/images/background.gif) no-repeat;
   background-position: bottom right;
}

/* CONTACT FORM */
label  {
display: block;
}

legend  {
display: none;
}

fieldset  {
  border: none;
}

#name, #email, #subject  {
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  display: block;
  border: 1px solid #999; 
  margin-bottom: 5px; 
  margin-top: 2px;
  margin-right: 0px;
  width: 240px;
  background: transparent;
  padding: 3px;
}

#name label, #email label, #subject label {
  display: block;
  margin-bottom: 2px; 
}

.catalog_item label {
  display: block;
  margin-bottom: 2px; 
}

#index {
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  display: block;
  border: 1px solid #999; 
  margin-bottom: 5px; 
  margin-top: 3px;
  margin-right: 0px;
  width: 240px;
  background: #fff;
  padding: 3px;
}

.catalog_item #message {
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  display: block;
  border: 1px solid #999; 
  margin-bottom: 10px;
  margin-top: 3px; 
  margin-right: 0px;
  width: 240px;
  height: 50px;
  background: transparent;
  padding: 3px;
}

#message {
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  display: block;
  border: 1px solid #999; 
  margin-bottom: 10px;
  margin-top: 3px; 
  margin-right: 0px;
  width: 240px;
  height: 50px;
  background: transparent;
  padding: 3px;
}

.button  {
  font-size: 90%;
  display: inline;
  padding: 2px;
  border: 1px solid #999;
  width: 80px;
  color: #fff;
  background: #0066CC;
}

#imagefloat {
  z-index: 10;
  position: absolute;
  width: 200px;
  height: 147px;
  bottom: 5px;
  left: 130px;
}

.pic-left {
  float: left;
  display: inline;
  margin-right: 10px;
  margin-bottom: 15px;
  border: 1px #999 solid;
}

.catalog_thumb {
  float: left;
  position: relative;
  display: inline;
  margin: 0;
  padding: 0;
}

.catalog-title {
  border-collapse: collapse;
  border: 1px #999 solid;
  padding: 3px;
  line-height: 1.2em;
}

.management-title {
  border-collapse: collapse;
  border: 1px #999 solid;
  padding: 3px;
  line-height: 1.2em;
  height: 70px;
  text-align: center;
}

.contact-name {
  border-collapse: collapse;
  border-bottom: 1px #999 solid;
  padding: 3px;
  line-height: 1.2em;
}

.contact-details {
  border-collapse: collapse;
  border-left: 1px #999 solid;
  border-bottom: 1px #999 solid;
  padding: 3px 0 3px 10px;
  line-height: 1.4em;
}

.catalog-img {
  border-collapse: collapse;
  border: 1px #999 solid;
  margin: 0;
}

.catalog_item {
  float: left;
  display: inline;
  position: relative;
  margin-bottom: 10px;
  padding: 0;
  line-height: 1.1em;
  width: 515px;
}

.item_thumbnails {
  position: relative;
  float: left;
  display: inline;
  margin: 0 10px 2px 5px;
  padding: 0;
  width: 90px;
  border: 1px #999 solid;
}

.item_attribute_name {
  margin-top: 10px;
  position: relative;
  float: left;
  display: inline;
  width: 100%;
}

.management_thumbnails {
  position: relative;
  float: left;
  display: inline;
  margin: 0 10px 2px 5px;
  padding: 0;
  width: 90px;
  border: 1px #999 solid;
}

div.item_management {
  margin: 0px;
  float: left;
  display: inline;
  position: relative;
  padding: 0;
}

.category_item h3, .catalog_item h3 {
   color: #333; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 5px 0;
}

.category_item h4 {
   color: #0066CC; 
   font-size: 1em;
   line-height: 1.2em;
   margin: 0 0 5px 0;
}

.national-contact {
  display: inline;
  float: left;
  border: 1px #000 solid;
  background: #EEEEEE;
  margin: 0 30px 10px 0;
  width: 240px;
  height: 170px;
}

.national-contact p {
  margin: 10px;
}

#contact_menu {
  display: block;
  width: 250px;
  height: 16px; 
  margin-bottom: 5px;
  background: transparent;
} 

#contact_name {
  float: left;
  display: inline;
  height: 16px; 
  margin-bottom: 5px;
  background: transparent; 
}

#contact_email {
  z-index: 100;
  text-align: left;
  margin: 0px;
  padding: 10px;
  display: block;
  position: absolute;
  top: -15%;
  left: 25%;
  width: 250px;
  background: #FFF;
  border: 1px #333 solid;
}


.contact-expand {
  padding: 2px;
  height: 16px;
}

#products_email {
  z-index: 100;
  text-align: left;
  margin: 0px;
  padding: 10px;
  display: block;
  position: absolute;
  top: -295px;
  left: 25%;
  width: 250px;
  background: #FFF;
  border: 1px #333 solid; 
}

.products {
   margin-bottom: 0px;
   width: 515px;
}

div.expand {
  z-index: 100;
  text-align: left;
  margin: 0px;
  padding: 10px;
  display: block;
  position: absolute;
  top: 25%;
  left: 50%;
  width: 250px;
  border: 1px #333 solid;
  filter:alpha(opacity=95);
  -moz-opacity:.95;
  opacity:.95;
}

div#close-email {
  float: right;
  display: inline;
  cursor: pointer;
  width: 16px; 
  height: 16px; 
  margin-bottom: 5px;
  background: transparent; 
}

.item {
  margin: 0;
  padding: 0;
  z-index: 0;
}

#item {
  position:relative;
  float: left;
  display: inline;
  padding: 0;
  z-index: 0;
}

.h4 {
   color: #006699; 
   font-size: 1em;
   line-height: 1.2em;
   margin: 0 0 1px 0;
}

.contact {
   float: right;
   display: inline;
   clear: both;       /* keep footer below content and menu */
   position: relative;
   width: 100%;
   margin-top: 10px;
}

.formError {
  font-size: 90%;
  margin-left: 0;
  color: #0066CC;
}

.formError ul li {
  font-size: 90%;
  margin-left: 0;
}


.links td {padding: 10px 0 10px; border-bottom: 1px #CCC solid;}
/* End of 'LHM Layout' */

/* Start of CMSMS style sheet 'Navigation: Simple - Vertical' */
/********************
MENU
*********************/
#menu_vert {
   padding: 0;
   margin: 0;
}


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

/* menu li block */
#menu_vert li {
   list-style: none;
   margin: 0;
   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.8em 0.5em 0.8em 1.5em; /* some air for it */
   color: #333; /* 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 */ 
   text-transform: uppercase;

}

/* next level links, more padding and smaller font */
div#menu_vert ul ul a {
   font-size: 90%;
   padding: 0.5em 0.5em 0.5em 0em;
   background-position: 0em center;
   border-bottom: 1px #999 solid;
   font-weight: bold;
}

/* third level links, more padding */
div#menu_vert ul ul ul a {
   padding: 0.3em 0.5em 0.3em 1.5em;
   /* background: url(images/cms/dash.gif) no-repeat 0em center;  */
   border-bottom: 1px #CCC solid;
   text-transform: none;
   font-weight: normal;
}

/* third level links, more padding */
div#menu_vert ul ul ul ul a {
   padding: 0.3em 0.5em 0.3em 3.5em;
   /* background: url(images/cms/dash.gif) no-repeat 0em center;  */
   border-bottom: 1px #CCC solid;
   text-transform: none;
   font-weight: normal;
}



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

/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/
div#menu_vert li a.activeparent {
   /* background: url(images/cms/arrow-down.gif) no-repeat 0.4em center; */
   background-color: transparent;
   color: #006699;
   font-weight: bold;
}

div#menu_vert ul ul li a.activeparent {
   background-position: 0em; 
   background-color: transparent;
   color: #0066CC;
   font-weight: bold;
   padding: 0.5em 0.5em 0.3em 0em;  /* some air for it */
}

div#menu_vert ul ul ul li a.activeparent {
   background-position: 0em; 
   background-color: transparent;
   color: #0066CC;
   font-weight: bold;
   padding: 0.5em 0.5em 0.3em 1.5em;  /* some air for it */
}

div#menu_vert ul ul ul ul li a.activeparent {
   background-position: 0em; 
   background-color: transparent;
   color: #0066CC;
   font-weight: bold;
   padding: 0.5em 0.5em 0.3em 3.5em;  /* some air for it */
}


/* 
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/arrow-right-active.gif) no-repeat 0.4em center; */
   background-color: tranparent;
   display: block; 
   padding: 0.8em 0.5em 0.8em 0em;  /* some air for it */
   color: #0066CC;                                 /* 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 */
   text-transform: uppercase;
}

/* 
next level current pages, more padding, 
smaller font and no background color or bottom border 
*/
div#menu_vert ul ul h3 {
   font-size: 90%;
   padding: 0.3em 0.5em 0.3em 0em;
   background-position: 1.4em center;
   background-color: transparent;
   border-bottom: 1px #999 solid;
   color: #0066CC;  
   text-transform: uppercase;   
}

/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
   padding: 0.3em 0.5em 0.3em 1.5em;
   /* background: url(images/cms/arrow-right-active.gif) no-repeat 2.7em center; */
   border-bottom: 1px #CCC solid;
   text-transform: none;
}

div#menu_vert ul ul ul ul h3 {
   padding: 0.3em 0.5em 0.3em 3.5em;
   /* background: url(images/cms/arrow-right-active.gif) no-repeat 2.7em center; */
   border-bottom: 1px #CCC solid;
   text-transform: none;
}

/* section header */
div#menu_vert li.sectionheader {
   border-right: none;
   font-size: 90%;
   font-weight: bold;
   padding: 0.8em 0.5em 0.8em 0em;
   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 'Navigation: Simple - Vertical' */

/* 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 20px 0.5em 0em; /* padding for the news article summary */
    margin: 0 0em 1em 0em; /* margin to the bottom of the news article summary */
    border-bottom: 1px solid #333; 
}

.NewsSummary img{
    width: 80px;
    height: auto;
}


.NewsSummaryPostdate {
  font-size: 90%;
  font-weight: bold;
  margin-bottom: 5px;
 }

.NewsSummaryLink {
    font-weight: bold;
    padding-top: 5px;
    padding-bottom: 5px;
}

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

.NewsSummaryAuthor {
  display: none;
  font-style: italic;
  padding-bottom: 0.5em;
}

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

.NewsSummaryMorelink {
  padding-top: 0px;
  padding-bottom: 15px;
}

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

#NewsPostDetailSummary {
   line-height: 150%;
   }

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

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

#NewsPostDetailAuthor {
  display: none;
  padding-bottom: 1.5em;
  font-style: italic;
}

#NewsPostDetailPrintLink {display: none;}


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

/* 
#NewsPostDetailTitle {}
#NewsPostDetailHorizRule {}
#NewsPostDetailPrintLink {}
#NewsPostDetailReturnLink {}
*/
/* End of 'Module: News' */

