/* Start of CMSMS style sheet 'Module: News' */
div#news {
  margin: 2em 0 1em 1em;  /* margin for the entire div surrounding the news list */
  background: #FBFFDF; 
}

div#newsBlock {
  border: 1px solid #E7EEBA; 
}

div#news h2 {
   background: #fff;
font-family : verdana;
font-size: 10px;
font-style : normal;
color : #d90b7a;
}

.NewsSummary {
    padding: 0.5em 0.5em 1em; /* padding for the news article summary */
    margin: 0 0.5em 1em 0.5em; /* margin to the bottom of the news article summary */
}

.NewsSummaryPostdate {
  font-size: 90%;
  font-weight: bold;
 }

.NewsSummaryLink {
    font-weight: bold;
    padding-top: 0.2em;
}

.NewsSummaryCategory {
  font-style: italic;
  margin: 5px 0;
 }

.NewsSummaryAuthor {
  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;
  }

#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 {}
*/
/* End of 'Module: News' */

/* Start of CMSMS style sheet 'zLayout' */
/*****************
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: 75.01%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
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: #d90b7a; 
}

/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: none;
}

/*****************
basic layout 
*****************/
body {
   background-color: #e7eeba;
   color: #333;
   margin:1em;    /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 1px solid #aebd60;
   margin: 0 auto;       /* this centers wrapper */
   max-width: 760px;   /* IE wont understand these, so we will use javascript magick */
   min-width: 60em;
   background-color: #fff;
   color: black;
}


/*** 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 {
   height: 130px;    /* adjust according your image size */
   background: #fff;     
}

div#header h1 a {
/* you can set your own image here */
   background: #fff url(/images/banniere2.jpg) no-repeat 0 0px; 
   display: block;
   height: 130px;             /* 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 */
   text-align : center;
}

/* position for the search box */
div#search {
   float: right;
   width: 23em;    /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
   font-size : 10px;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* 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 */
   margin: 0 1em;        /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px dotted #000;
}

div#content {
   margin: 1.5em auto 2em 0;   /* some air above and under menu and content */
}


div#main {
   margin-left: 29%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 2%; /* and some air on the right */
}

div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 26%;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 0;
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #fff;
   background-color: #fff; /* same bg color as in header */
}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em;       /* some air for footer */
   text-align: center;  /* centered text */
   margin: 0;
   color: #99999f
}

div#footer p a {
   color: #99999f; /* 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: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}

/* relational links under content */
div.left49 {
  width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div.menusection h2,div#content h2 {
	color: #d90b7a; 
	font-size: 1em; 
	text-align: left; 
/* some air around the text */
	padding-left: 0.5em;
	padding-bottom: 1px;
/* set borders around header */
	border-bottom: 1px solid #ef88b5; 
	border-left: 1.1em solid #ef88b5; 
        line-height: 1.5em;
/* and some air under the border */
        margin: 0 0 0.5em 0;
}

div.menusection {
	width: 400px;
	text-align:justify;
}

div#content h3 {
   color: #d90b7a; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: #294B5F; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #294B5F; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
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: 1em;
}

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 0 1.5em 0;
#   list-style-type: none;
}

div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

/* 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;
}

li {
line-height: 20px;
padding-left: 15px;
padding-top: 0px;
}

div#main li {
list-style-image: url(/images/bullet.png) ;
padding-left: 5px;
}

div#menuhelp {
padding-left: 20px;
padding-bottom: 15px;
}
div#menuhelp li {
list-style-image: url(/images/bullet.png) ;
padding-left: 5px;
}

#confId.myButtonClass { padding:3px; font-size:10px; width:100px; } 
#confId.ok_button { color:#2F2; } 
#confId.cancel_button { color:#F88; }

div#actions {
margin: 2px;
padding-bottom: 5px;
border-bottom: solid 1px #e7eeba;
text-align: right;
}

a.tab:hover {
background-color: #aebd60;
}
a.tab:active {
background-color: #aebd60;
}
a.priv{
background : url(/icones/silky/add.png) #e7eeba no-repeat;
}
 a.user{
background : url(/icones/silky/add.png) #e7eeba no-repeat;
}
a.addr{
background : url(/icones/silky/add.png) #e7eeba no-repeat;
}

a.command {
text-decoration : none;
color : #aebd60;
padding-left : 20px;
font-weight : bold;
margin-right: 20px;
font-family: Arial;
font-size: 12px;
text-transform: lowercase;
}

div.error {
font-size: 10px;
color: red;
}

div#tabbar {
border-bottom: solid 1px #aebd60;
padding: 2px;
}

a.tab {
text-decoration : none;
color : #000;
border : solid 1px #aebd60;
background-color: #e7eeba;
padding-top: 1px;
padding-bottom: 1px;
padding-right: 5px;
padding-left : 20px;
cursor: pointer;
margin-left: 3px;
margin-top: 5px;
font-family: verdana;
font-family: 10px;
}


a.command:hover {
color : #434F00;
}

a.cancel{
background : url(/icones/silky/cross.png) no-repeat;
}
a.ok{
background : url(/icones/silky/accept.png) no-repeat;
}
a.save{
background : url(/icones/silky/database_save.png) no-repeat;
}
a.add{
background : url(/icones/silky/add.png) no-repeat;
}
a.adduser{
background : url(/icones/silky/user_add.png) no-repeat;
}
a.del{
background : url(/icones/silky/delete.png) no-repeat;
}
a.deluser{
background : url(/icones/silky/user_delete.png) no-repeat;
}
a.susp{
background : url(/icones/silky/stop.png) no-repeat;
}
a.addloc{
background : url(/icones/silky/world_add.png) no-repeat;
}
a.delloc{
background : url(/icones/silky/world_delete.png) no-repeat;
}
a.selAll{
background : url(/icones/silky/layers.png) no-repeat;
}
a.addreport{
background : url(/icones/silky/page_add.png) no-repeat;
}
a.delreport{
background : url(/icones/silky/page_delete.png) no-repeat;
}
a.upload{
background : url(/icones/silky/page_go.png) no-repeat;
}
a.publish{
background : url(/icones/silky/link.png) no-repeat;
}
a.unpublish{
background : url(/icones/silky/link_break.png) no-repeat;
}
a.webdesc {
background : url(/icones/silky/user_comment.png) no-repeat;
}
a.addr{
background : url(/icones/silky/email_edit.png) no-repeat;
}
a.user{
background : url(/icones/silky/user.png) no-repeat;
}
a.priv{
background : url(/icones/silky/lock_edit.png) no-repeat;
}
a.reqv{
background : url(/icones/silky/disconnect.png) no-repeat;
}
a.suspend{
background : url(/icones/silky/emoticon_unhappy.png) no-repeat;
}
a.unsuspend{
background : url(/icones/silky/emoticon_smile.png) no-repeat;
}
a.mailing{
background : url(/icones/silky/email_edit.png) no-repeat;
}

a.report{
padding-left: 20px;
text-decoration: none;
color: #000;
font-size: 12px;
background : url(/icones/silky/page.png) no-repeat;
}

a.doc{
background : url(/icones/silky/page_word.png) no-repeat;
}
a.au, a.wav{
background : url(/icones/silky/sound_low.png) no-repeat;
}
a.pdf {
background : url(/icones/silky/page_white_acrobat.png) no-repeat;
}
a.warn{
background : url(/icones/silky/bullet_error.png) no-repeat;
padding-left: 20px;
color: red;
}


input#del{
background : url(/images/fr-fr/trash-green.gif) no-repeat;
width: 19px;
height: 19px;
border: none;
cursor: pointer;
margin-left: 10px;
}

input#report {
border: solid 1px #aebd60;
font-size: x-small;
}

a.data {
text-decoration: none;
color:#000;
}

tr.dataM {
background-color:#e7eeba;
}
tr.dataW {
background-color:#FFCFE5;
}
tr.dataC {
background-color:#f9ffcf;
}
td.dataM {
background : url(/icones/silky/user.png) #e7eeba no-repeat;
width:16px;
}
td.dataW {
background : url(/icones/silky/user_female.png) #FFCFE5 no-repeat;
width:16px;
}
td.dataC {
background : url(/icones/silky/user_green.png) #f9ffcf no-repeat;
width:16px;
}
th {
background-color:#fbffdf;
border: solid 1px #e7eeba;
color: #000;
}

table.grid td {
padding:2px;
}

td.userdata {
font-weight: bold;
font-size: 12px;
font-family : Verdana;
}

td.datavalue {
font-size: 12px;
font-family : Verdana;
}

input.txt, select {
border : solid 1px #aebd60;
background-color: #fbffdf;
}

input.checkbox {
border :solid 1px #aebd60;
background-color: #fbffdf;
}

checkbox {
border :solid 1px #aebd60;
}

.mandatory {
color: red;
}


select{
font-weight: bold;
font-size: 10px;
}

div#report_list {
border : solid 1px #d90b7a;
background-color: #ffeff8;
margin: 10px;
padding: 5px;
font-size:x-small;
}

body.result {
font : verdana 12px bold;
text-align: center;
}
body.card {
margin: 0px;
}

/* END LISTS */
/* End of 'zLayout' */

/* Start of CMSMS style sheet 'zNavig' */
/********************
MENU
*********************/
#menu_vert {
   padding-left: 0;
   margin-left: 1em;
}


/* 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;
   display: block;
   background : url('/images/arrow.png') no-repeat;
}

#menu_vert ul ul li {
   border: none;
}

/** fix stupid ie bug with display:block; **/
#menu_vert li a { height: 1%; } 
#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 */
   color: #aebd60; /* this will be link color for all levels */
   min-height:1em; /* Fixes IE7 whitespace bug */ 
}

/* next level links, more padding and smaller font */
div#menu_vert ul ul a {
   font-size: 90%;
   padding: 0.5em 0.5em 0.5em 2.8em;
   background-position: 1.5em center;
}

/* third level links, more padding */
div#menu_vert ul ul ul a {
   padding: 0.3em 0.5em 0.3em 4.3em;
   background: url(images/cms/dash.gif) no-repeat 2.8em center; 
}

/* hover state for all links  */
div#menu_vert a:hover {
   background-color: #FFEFF8;
}
div#menu_vert a.activeparent:hover {
   background-color: #FFEFF8;
   color: #d90b7a;
}

/* 
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; 
   color: #fff;
}

div#menu_vert ul ul li a.activeparent {
   background-position: 1.5em center; 
   background-color: transparent;
   color: #FFEFF8;
}


/* 
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: #385C72;
   display: block; 
   padding: 0.8em 0.5em 0.8em 1.5em;  /* some air for it */
   color: #fff;                                 /* 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 {
   font-size: 90%;
   padding: 0.3em 0.5em 0.3em 2.8em;
   background-position: 1.4em center;
   background-color: transparent;
   border-bottom: none;
   color: #000;     
}

/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
   padding: 0.3em 0.5em 0.3em 4.3em;
   background: url(images/cms/arrow-right-active.gif) no-repeat 2.7em center; 
}

/* section header */
div#menu_vert li.sectionheader {
   border-right: none;
   font-size: 10px;
   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 */
}

div#sectionheader h2 {
   color: #d90b7a; 
    background-color : #FFCFEB;
    padding-left: 10px;
	border : none;
        margin: 0 0 0.5em 0;
text-transform: uppercase;
font-family: MS Trebuchet, Verdana, Arial, Helvetica, Sans Serif;
font-size : 11px;
}

div#sectionheader {
border : solid 1px #FFCFEB;
margin: 0.8em;  /* some air for it */
}

div#subSpace {
border : solid 1px #e7eeba;
margin: 0.8em;  /* some air for it */
}

div#subSpace h2 {
   color: #aebd60; 
    padding-left: 20px;
	border : none;
        margin: 0 0 0.5em 0;
text-transform: uppercase;
font-family: MS Trebuchet, Verdana, Arial, Helvetica, Sans Serif;
font-size : 11px;
background : url(/icones/silky/lock.png) #e7eeba no-repeat;
}

div#zManager li {
font-size: 10px;
}

div#zManager li a {
text-decoration:none;
font-weight: bold;
}

a.helpitem, a.helpitem:visited {
color: #000;
}
a.helpitem:hover {
	font-weight: bold;
}

div#zManager ul {
list-style : none;
}

div#zManager a:hover {
   background-color: none;
}


div#zManager input {
border : solid 1px #aebd60;

font-size: 10px;
color : black;
}

div#zManager input.submit {
width:20px
}

span.msg {
font-size : 10px;
color : red;
}

span.msgprogress {
font-size : 10px;
color : red;
background : url(/images/indicator.gif) no-repeat;
padding-left : 20px;
}

ul#services a {
font-size : 10px;
color : black;
font-style : normal;
}

div#subSpace li {
padding-left : 20px;
margin-left : 5px;
}

li#mail {
background : url(/icones/silky/email.png) no-repeat;
}
li#search{
background : url(/icones/silky/magnifier.png) no-repeat;
}
li#subs{
background : url(/icones/silky/folder_user.png) no-repeat;
}
li#reports{
background : url(/icones/silky/page_word.png) no-repeat;
}
li#locations{
background : url(/icones/silky/world.png) no-repeat;
}
li#requests{
background : url(/icones/silky/disconnect.png) no-repeat;
}
li#patients{
background : url(/icones/silky/folder_user.png) no-repeat;
}
li#publish{
background : url(/icones/silky/exclamation.png) no-repeat;
}
li#prefs{
background : url(/icones/silky/script_edit.png) no-repeat;
}
li#help{
background : url(/icones/silky/help.png) no-repeat;
}
li#logout{
background : url(/icones/silky/door_open.png) no-repeat;
}
li#question{
background : url(/icones/silky/user_comment.png) no-repeat;
}
li#help a, li#question a {
cursor : help;
}
li#bug {
background : url(/icones/silky/exclamation.png) no-repeat;
}
li#signup {
background : url(/icones/silky/user_add.png) no-repeat;
}
li#lostpwd {
background : url(/icones/silky/key_go.png) no-repeat;
}

li#loginLabel {
background : url(/icones/silky/textfield_rename.png) no-repeat;
}

li#passwdLabel {
background : url(/icones/silky/textfield_key.png) no-repeat;
}


span#user {
font-size: 9px;
padding-left: 10px;
margin-bottom: 5px;
}
/* End of 'zNavig' */


