/* Start of CMSMS style sheet 'stil site' */
/*****************
FORMATARE PAGINA
******************/

/*****************
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 styles
*/
body {
   text-align: left;
   font-family:Arial, Helvetica, sans-serif;  /* font text */
	margin-top: 10px;
	background-image: url(uploads/img/bg_site.jpg);
   font-size: 10pt;  /* marime font text */ 
   color: #fff;  /* culoare text */

         }



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

/*
default link styles
*/

/*******************
pentru link-exchange
*******************/

a.tilink:link, a.tilink:active, a.tilink:visited {
   color: #fff;
   font-size: 12px;
   text-decoration: none;
   font-family:Verdana, Arial, Helvetica, sans-serif; 
}



/*****************
basic layout 
*****************/

div#search {
   float: right;
   width: 23em;     /* enough width for the search input box */
   text-align: right;
   padding: 0em 0 0em 0;
   margin: 0 1em;
}

div.breadcrumbs {
   padding: 0em 0 0em 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.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 


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

/* relational links under content */
div.left49 {
  float: left;
  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;
}

/********************
TITLU
*********************/

div#titlu h1 {
   font-family:Arial, Helvetica, sans-serif;  /* font titlu */

   font-size: 16pt;  /* marime font titlu */ 

   color: #fff;  /* culoare titlu */

         }



/********************
CONTENT STYLING
*********************/
div#content {
   font-family:Arial, Helvetica, sans-serif;  /* font text */
   
   background-color:#016eb1;

   font-size: 10pt;  /* marime font text */ 

   color: #fff;  /* culoare text */

         }

/* HEADINGS */
div#content h1 {
   font-family:Arial, Helvetica, sans-serif;  /* font h1 */

   font-size: 17pt;  /* marime font h1 */ 

   color: #fff;  /* culoare h1 */

         }
div#content h2 {
   font-family:Arial, Helvetica, sans-serif;  /* font h2 */

   font-size: 15pt;  /* marime font h2 */ 

   color: #fff;  /* culoare h2 */

         }
div#content h3 {
   font-family:Arial, Helvetica, sans-serif;  /* font h3 */

   font-size: 12pt;  /* marime font h3 */ 

   color: #fff;  /* culoare h3 */

         }
div#content h4 {
   font-family:Arial, Helvetica, sans-serif;  /* font h4 */

   font-size: 10pt;  /* marime font h4 */ 

   color: #fff;  /* culoare h4 */

         }
div#content h5 {
   font-family:Arial, Helvetica, sans-serif;  /* font h5 */

   font-size: 8pt;  /* marime font h5 */ 

   color: #fff;  /* culoare h5 */

         }
div#content h6 {
   font-family:Arial, Helvetica, sans-serif;  /* font h6 */

   font-size: 7pt;  /* marime font h6 */ 

   color: #fff;  /* culoare h6 */

         }
/* END HEADINGS */

div#content ul{
list-style-position: inside;
}

/* TEXT */
p {
   font-family:Arial, Helvetica, sans-serif;  /* font titlu */

   font-size: 10pt;  /* marime font titlu */ 

   color: #fff;  /* culoare titlu */

         }
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}

pre {
   font-family: monospace;
   font-size: 1.0em;
}
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: 0em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link {
   color: #fff; 
   }
a:active {
   text-decoration: underline;
/* 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: #fff; 
}

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


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


/* END TEXT */


/* End of 'stil site' */

