/*@charset "utf-8";*/
/* CSS Document */


/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */

/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
/*body {
	background-color: #fff;
	color: #2d2e2e;
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 0 0;*/ /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	/*padding: 0 0 0 0;*/ /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	/*text-align: center;*/ /* Centers the page content container in IE 5 browsers. */
/*}
*/
/* Commonly used to style page titles. */
h1 {
	color: #7bb54d;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
	color: #7bb54d;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
}
/* Commonly used to style section titles. */
h3 {
	color: #7bb54d;
	font-size: 11px;
	font-weight: bold;
}

h4 {
	color: #000;
	font-size: 11px;
	font-weight: normal;
}

h5 {
	color: #ffffff;
	font-size: 11px;
	font-weight: bold;
	padding: 3px 0 0 12px; /*20px; (top, right, bottom, left)*/
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #7bb54d;
	font-size: 11px;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #7bb54d;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #06357a;
	text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #06357a;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #06357a;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 950px;
	border-bottom: 1px solid #d4d6d7;
}
#outerWrapper #header {
	background-color: #7bb54d;
	font-size: 18px;
	font-weight: bold;
	line-height: 15px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #contentWrapper {
	margin-top:0px;
	height: auto;
}
#outerWrapper #contentWrapper #leftColumn1 {
	background-color: #fff;
	float: left;
	padding: 0px 0px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 150px;
	min-height: 500px;
}
#outerWrapper #contentWrapper #rightColumn1 {
	background-color: #fff;
	float: right;
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 160px;
	min-height: 500px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin-left: 170px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	/*margin-right: 170px;*/
	padding: 25px 25px 25px 25px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	border:solid 1px #cccccc;
	min-height: 500px;
	font-size:11px;
	width: 560px;
	float: inherit;
	margin-top: 0px;
	/*position: static;*/
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
	clear: both;
	display: block;
}

#outerWrapper #footer {
	background-color: #fff;
	background-image: url(../images/down.gif);
	padding: 25px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	/*text-align: right;*/
	vertical-align: text-bottom;
	font-size: 9px;
	color:#999;
	height:50px;
	background-repeat: no-repeat;
	margin-bottom:0px;
	clear:both;
}
#content span
{
	color: Black;
	font-size: 11px;
}
/*
#content span b
{
	font-weight 
}
*/
.menu_top
{
	background: url(../images/MenuTop7.gif) top no-repeat;
	height:20px;
}

.menu_content
{
    background: url(../images/menucontent7.gif) repeat-y;
    padding: 5px 5px 5px 5px;
}

.menu_bottom
{
	background: url(../images/menubottom7.gif) top no-repeat;
	height:10px;
}

.LeftMenu {
	padding: 0px 0px 0px 0px;/*(top, right, bottom, left) */
	font-size: 9px;
	}
	
/* da se vnimava na redosledot na pseudo klasite inaku se pojavuva problem so hover */	
.LeftMenu a {
	color: #000;
	text-decoration: none;
	font-weight:bold;
	font-size: 10px;
}
.LeftMenu a:focus {
	color: #7bb54d;
	text-decoration:underline;
	font-weight:bold;
}

.LeftMenu a:visited {
	color: #000000;
	text-decoration:none;
	font-weight:bold;
}

.LeftMenu a:hover {
	color: #7bb54d;
	text-decoration: none;
	font-weight:bold;
}

.LeftMenu a:active {
	color: #7bb54d;
	font-weight:bold;
}

.LeftMenuLists a:Link {
	color: #000;
	text-decoration: none;
	font-weight:normal;
}
.LeftMenuLists a:focus {
	color: #7bb54d;
	text-decoration:none;
	font-weight:normal;
}
.LeftMenuLists a:hover {
	color: #7bb54d;
	text-decoration: none;
	font-weight:normal;
}
.LeftMenuLists a:visited {
	color: #7bb54d;
	text-decoration:underline;
	font-weight:normal;
}
.LeftMenuLists a:active {
	color: #7bb54d;
	font-weight:normal;
}
.LeftMenuLists {
  margin: 0px 0px 0px 5px;
  padding: 0px;
  color: #BBB;
  list-style-type: disc;
  list-style-position: inside;
}

.LeftMenuLists li {
  margin: 0px 0px 0px 0px;
  font-weight: normal;
}

#subcontent ul {
	min-height: 100px;
}

#subcontent ul li {
  margin-left: 25px;
  padding-top: 5px;
  list-style-position: inside;
  list-style:disc;
  font-weight: normal;
  font-size: 11px;
  color: #7bb54d;
  line-height:inherit;
}
#subcontent ul li b {
    color: #000000;
	font-size: 11px;
	font-weight: normal;
}

.numeration
{
/*background: url(../images/Bullet.gif) no-repeat;*/
background-position:left;
font-size: 11px;
padding: 0px 0px 0px 0px;
list-style-type: decimal;
list-style-position: inside;
list-style-image:url(../images/Bullet.gif);
}

.num
{
	margin-bottom:100px;
}

.num1
{
list-style-image: url(../images/Bullet_1.gif);
list-style-position: inside;
font-size: 11px;
padding: 0px 0px 0px 0px;
margin-top: 10px;
margin-bottom: 0px;
}

.num2
{
list-style-image: url(../images/Bullet_2.gif);
list-style-position: inside;
font-size: 11px;
margin-top: 10px;
margin-bottom: 0px;
vertical-align: middle;
}

.num3
{
list-style-image: url(../images/Bullet_3.gif);
list-style-position: inside;
font-size: 11px;
margin-top: 10px;
margin-bottom: 0px;
}

#bullet
{
	min-height:30px;
	padding-bottom:10px;
	padding-top: 10px;
}

#bullet #bullettxt 
{
	color:#000;
	font:11px;
	font-weight:normal;
	margin-top: 0px;
	text-align: left;
	float:right;
	width:90%;
	min-height:50px;
}

#bullet #bulletnum
{
  width:35px;
  height:35px;
  float:left;
  font-size:20px;
  font-weight:bold;
  color:#fff;
  padding-top: 7px;
  padding-left: 7px;
  background:url(../images/Bullet.gif) no-repeat;
  
}

#outerWrapper #contentWrapper #contentlink
{
	/*margin-left: 170px;*/ /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	font-size:11px;
	padding: 5px 0px 5px 195px;
	width: 755px;
}
#outerWrapper #povrzanilinkovi
{
	margin-left: 170px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	font-size:11px;
	padding-left: 25px;
	padding-top: 15px;
    padding-bottom: 15px;
	width: 560px;
}
/*
#povrzanilinkovi .ContentLists {
	margin-bottom:10px;
}

 #povrzanilinkovi .ContentLists li {
  margin: 5px 0px;
  padding: 0px;
  list-style-type: disc;
  list-style-position: outside;
  font-weight: normal;
  font-size: 11px;
  color: #7bb54d;
}
#povrzanilinkovi .ContentLists li b {
    color: #000000;
	font-size: 11px;
	font-weight: normal;
}
*/
.ContentLists {
  margin: 0px 20px;
  padding: 0px;
  list-style-type: disc;
  list-style-position: inside;
}
.ContentLists li {
  margin: 3px 0px 0px;
  font-weight: normal;
  font-size: 11px;
  color: #7bb54d;
}
.ContentLists li a, b {
    color: #000000;
	font-size: 11px;
	font-weight: normal;
}

#tools ul li
{
width: 145px;
/*margin-left:0px;
margin-right:0px;*/
}

.right_top
{
	background: url(../images/MenuTop7.gif) top no-repeat;
	height:20px;
	margin-left: -10px;
	padding-left: 15px;
}

.right_content
{
	background: url(../images/menucontent7.gif) repeat-y;
	padding: 10px 0px 5px 17px;
	font-size: 11px;
	font-weight:bold;
}

.right_bottom
{
	background: url(../images/menubottom7.gif) top no-repeat;
	height: 10px;
	margin-left: -10px;
}

.RightMenu {
	padding: 0px 0px 0px 0px;/*(top, right, bottom, left) */
	font-size: 11px;
	font-weight:bold;
	}
	
.RightMenu a {
text-decoration: none;
font-weight:bold;
font-size: 11px;
}