/* Start of CMSMS style sheet 'Layout: Top menu + 2 columns' */
/* 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, Arial, Geneva,  sans-serif;
	font-size: 12px;
	line-height: 1em;
}
/*set font size for all divs, this overrides some body rules*/
div {
	font-size: 12px;
}
/*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: 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: #2F6DA7;
}
a:visited {
	text-decoration: underline;
	background-color: inherit;
	color: #6699cc;
/* a different color can be used for visited links */
}
/* remove underline on hover and change color */
a:hover {
	text-decoration: none;
	background-color: inherit;
	color: #99cc00;
}
/*****************basic layout *****************/
body {
	margin: 0;
	padding: 0;
/* default text color for entire site*/
	color: #333;
/* you can set your own image and background color here */
	background: #f4f4f4 url(uploads/images/slike/pozadina.jpg) repeat-x -5px -72px;
}
div#pagewrapper {
/* min max width, IE wont understand these, so we will use java script magic in the <head> */
	width: 962px;
/* now that width is set this centers wrapper */
	margin: 0 auto;
	background-color: none;
	color: #666;
}
div#nav-gore {height:62px;background:url(uploads/images/slike/pozadina.jpg) repeat-x left top;text-align:center; width:100%;}
/* header, we will hide h1 a text and replace it with an image, we assign a height for it so the image wont cut off */
div#header {
/* adjust according your image size */
	height: 97px;
	margin: 0;
	padding: 0;
	/* you can set your own image here, will go behind h1 a image 
	background: #f4f4f4 url(/uploads/ngrey/bg_banner.png) repeat-x left top;*/
/* border just the bottom 
	border-bottom: 1px solid #D9E2E6;*/
}
div#header h1 a {
/* you can set your own image here */
	background: url(uploads/images/slike/zaglavlje.jpg) no-repeat left top;
/* this will make the "a" link a solid shape */
	display: block;
/* adjust according your image size */
	height: 97px;
/* this hides the text */
	text-indent: -999em;
/* old firefox would have shown underline for the link, this explicitly hides it */
	text-decoration: none;
}
div#header h1 {
	margin: 0;
	padding: 0;
/*these keep IE6 from pushing the header to more than the set size*/
	line-height: 0;
	font-size: 0;
/* this will keep IE6 from flickering on hover */
	background: url(uploads/images/slike/zaglavlje.jpg) no-repeat left top;
}
div#header h2 {
/* this is where the site name is */
	float: right;
	line-height: 1.2em;
/* this keeps IE6 from not showing the whole text */
	font-size: 1.5em;
/* keeps the size uniform */
	margin: 35px 65px 0px 0px;
/* adjust according your text size */
	color: #f4f4f4;
}
div.crbk {
/* sets all to 0 */
	margin: 0;
	padding: 0;
/* you can set your own image here 
	background: url(uploads/ngrey/mainrtup.gif) no-repeat right bottom;*/
}
div.breadcrumbs {
      width:891px;
/* CSS short hand rule first value is top then right, bottom and left */
	padding: 1em 0em 1em 1.5em;
/* its good to set font sizes to be relative, this way viewer can change his/her font size */
	font-size: 90%;
/* css shorthand rule will be opened to be "0px 0px 0px 0px" */
	margin: 0 20px 0 15px;
/* you can set your own image here 
	background: url(uploads/ngrey/mainleftup.gif) no-repeat left bottom;*/
        border:1px solid #fff;
        border-width: 1px 0 1px 0;
        background:#f8f8f8;
}
div.breadcrumbs span.lastitem {
	font-weight: bold;
}
div#search {
/* position for the search box */
/* enough width for the search input box */
	width: 230px;;
	text-align: right;
	padding:10px; /*0.5em 0 0.2em 0*/;
	margin-right:20px;
        margin-top:15px;
        border:1px solid #ccc;
       background:#f1f1f1;
}
/* a class for Submit button for the search input box */

.search-input {color:#999; font-family:Verdana; font-size:12px; font-weight:bold;height:18px;border:1px solid #ccc;width:165px; background:#fff;text-indent:3px;padding-top:4px;}
input.search-button {
	border: none;
	height: 22px;
	width: 53px;
	margin-left: 5px;
        margin-top:-2px;
	padding: 0 2px 2px 0;
/* makes the hover cursor show, you can set your own cursor here */
	cursor: pointer;
/* you can set your own image here */
	background: url(uploads/ngrey/search.gif) no-repeat center center;
        vertical-align:middle;
        font-family:verdana;
        font-size:10px;
        font-weight:bold;
        color:#666;
}
div#content {
/* some air above and under menu and content */
	margin: 0 auto;
	padding: 0;
        background:#fff;
        border-top:0;
        border-left:1px solid #666;
        border-right:1px solid #666;   
        width:938px;

}
* html div#content {margin-left:11px;width:933px;}
/* this gets all the outside calls that were used on the div#main before  
div.back1 {
/* this will give room for sidebar to be on the left side, make sure this number is bigger than sidebar width */
	margin-left: 262px /*29%*/;
/* and some air on the right */
	margin-right: 10px;
/* you can set your own image here 
	background: url(uploads/ngrey/mainrt1.gif) no-repeat right top;*/
}
/* this is an IE6 hack, you may see these through out the CSS */
* html div.back1 {
/* unlike other browser IE6 needs float:right and a width */
	float: right;
	width: 650px /*69%*/;
/* and we take this out or it will stop at the bottom  */
	margin-left: 0%;
/* and some air on the right */
	margin-right: 10px;
/* you can set your own image here 
	background: url(uploads/ngrey/mainrt1.gif) no-repeat right top;*/
}
div.back2 {
/* you can set your own image here 
	background: url(uploads/ngrey/mainleft1.gif) no-repeat left top;*/
}
div.back3 {
/* you can set your own image here 
	background: url(uploads/ngrey/wbtmleft.gif) no-repeat left bottom;*/
}*/

div#ram {width:920px; float:left;}
div#main {margin-left:290px;margin-right:20px;	padding: 10px 15px;}
* html div#main {

width:580px;
margin-left:0%;
 margin-right:10px;
     float:right;
/* this is the last inside div so we set the space inside it to keep all content away from the edges of images/box */
	padding: 10px 15px;
/* you can set your own image here 
	background: url(uploads/ngrey/rtup.gif) no-repeat right bottom;*/
        overflow:hidden;
        height:100%;
}


div#sidebar {
/* set sidebar left. Change to right, float: right; instead, but you will need to change the margins. */
	float: left;
/* sidebar width, if you change this change div.back and/or div.back1 margins */
	width: 270px/*29%*/;
/* FIX IE double margin bug */
	display: inline;
/* the 20px is on the bottom, insures space above footer if longer than content */
	margin: 0px 0px 20px 0;
	padding: 0px;
/* you can set your own image here 
	background: url(uploads/ngrey/mainrt.gif) no-repeat right top;*/
}

div#sidebarb {
	padding: 10px 0px 10px 20px;
/* this one is for sidebar with content and no menu 
	background: url(uploads/images/slike/blokbg.jpg) no-repeat top right;*/
}
div#sidebarb div#news {
/* less margin surrounding the news, sidebarb has enough */
	margin: 0em 0 1em 0em;
}
div#sidebara {
	padding: 10px 0px 15px 20px;
/* this one is for sidebar with menu and no content */
	background: url(uploads/ngrey/mainrtup.gif) no-repeat right bottom;
}

div.footback {
/* keep footer below content and menu */
	clear: both;
/* this sets 10px on right to let the right image show, the balance 10px left on next div */
	padding: 0px 10px 0px 0px;
/* you can set your own image here */
	background: url(uploads/ngrey/wfootrt.gif) no-repeat right top;
}
div#footer {
/* this sets 10px on left to balance 10px right on last div */
	padding: 0px 0px 0px 10px;
/* color of text, the link color is set below */
	color: #595959;
/* you can set your own image here */
	background: url(uploads/ngrey/wtopleft.gif) no-repeat left top;
        position:relative;
        bottom:0;
}
div.leftfoot {
	float: left;
	width: 30%;
	margin-left: 20px
}
div#fooleft li {font-size:10px;}
div#footer p {
/* sets different font size from default */
	font-size: 10px;
/* some air for footer */
	padding: 1.5em;
/* centered text */
	text-align: center;
	margin: 0;
}
div#footer p a {
/* footer link would be same color as default we want it same as footer text */
	color: #595959;
	font-size: 9px;
}
/* as we hid all hr for accessibility we create new hr with div class="hr" element */
div.hr {
        clear:both;
	height: 1px;
	padding: 1em;
	border-bottom: 1px dotted #ccc;
	margin: 1em;
        width:95%;
}
/* relational links under content */
div.left49 {
/* combined percentages of left+right equaling 100%  might lead to rounding error on some browser */
	width: 70%;
}
div.right49 {
	float: right;
        position:relative;
        bottom:10px;
	width: 29%;
/* set right to keep text on right */
	text-align: right;
        background:url(uploads/images/slike/top.jpg) no-repeat top right;
               clear:both;
        margin-top:5px;
}
div.right49 a {
 
        position:relative;
        top:7px;
       right:8px;
        font-size:11px;
        color:#666;
        font-weight:bold;
        text-decoration:none;
       }
/********************CONTENT STYLING*********************/
/* HEADINGS */
div#content h1 {
/* font size for h1 */
	font-size:17px;
font-family:Verdana;
border-bottom:1px dotted #2F6DA7;
padding:2px;
color:#2F6DA7;
line-height:25px;
margin-bottom:5px;
}
div#content h2 {
	font-size:17px;
font-family:Verdana;
border-bottom:1px dotted #2F6DA7;
padding:2px;
color:#2F6DA7;
line-height:20px;
}
div#content h3 {
	color: #294B5F;
	font-size: 14px;
	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 {
/* default p font size, this is set different in some other divs */
	font-size: 1em;
/* some air around p elements */
	margin: 0 0 1.5em 0;
	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 {
/* css-3 */
	white-space: pre-wrap;
/* Mozilla, since 1999 */
	white-space: -moz-pre-wrap;
/* Opera 4-6 */
	white-space: -pre-wrap;
/* Opera 7 */
	white-space: -o-pre-wrap;
/* Internet Explorer 5.5+ */
	word-wrap: break-word;
	font-family: "Courier New", Courier, monospace;
	font-size: 1em;
}
pre {
/* black border for pre blocks */
	border: 1px solid #000;
/* set different from surroundings to stand out */
	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 */
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;
}
div#main ol li {
	margin: 0 0 0.25em 3em;}
div#main ul li {
	margin-bottom: 20px;
        margin-left:10px;
        padding-left:25px;
        padding-top:1px;
	list-style-position: outside;
	background: url(uploads/images/slike/bullet.gif) no-repeat 0 0;
	list-style-type: none;
        vertical-alignment:bottom;
}
div#main ul ul li {
	margin-bottom: 20px;
        margin-left:10px;
        padding-left:30px;
        padding-top:1px;
	list-style-position: outside;
	background: url(uploads/images/slike/bullet.gif) no-repeat 10px 0;
	list-style-type: none;
}
/* definition lists topics on bold */
div#main dl {
	margin-bottom: 2em;
	padding-bottom: 1em;
	border-bottom: 1px solid #c0c0c0;
}
div#main dl dt {
	font-weight: bold;
	margin: 0 0 0 1em;
}
div#main dl dd {
	margin: 0 0 1em 1em;
}
#visor {
	position:relative;
	width:1000px;
	height:250px;
	background: url(/img/back1.jpg) no-repeat;
}

/*TIKER*/

.tiker .tabla {width:250px;font-size:10px;font-family:arial;}

.tiker .tabla tr {margin:0;padding:2px;}

.tiker .tabla  tr {margin:0;padding:2px;}

.tiker .tabla  td th{padding:2px;padding-right:5px;margin:0;font-size:10px;font-family:arial;line-height:14px;}

.tiker .tabla  td span {font-size:9px;color:#000;}
.tiker  .tabla tr th {font-weight:600;width:110px;font-size:10px;padding:2px;text-align:left;}

.tiker .tabla .updn {width:20px;font-size:11px;font-family:courier new;padding:2px;text-align:right;}

.tiker .tabla  .dnpr {width:30px;font-size:11px;font-family:courier new;padding:2px;text-align:right;}

.tiker .tabla  .vred {width:120px;text-align:right;font-size:11px;font-family:courier new;padding:2px;}

.tiker .tabla  .stockName {

font-weight:bold;

width:80px;

display:inline;

}



.tiker .tabla  .stockLast {

position:absolute;

text-align:right;

left:85px;

width:70px;

display:inline;

font-family:courier new;

font-size:12px;

}



.tiker .tabla  .stockIcon {

padding-top:3px;

position:absolute;

left:163px;

display:inline;

}



.tiker .tabla  .stockChange {

position:absolute;

left:185px;

display:inline;

}

.tiker .tabla  .stockChangep {

position:absolute;

font-family:courier new;

font-size:12px;

left:227px;

text-align:right;

display:inline;

}

.tiker .tabla  .valueUp {

color:#00c000;

}



.tiker .tabla  .valueDn {

color:#e00000;

}

.tiker .tabla  .pdv {

color:#e00000;
font-size:11px;
font-family:courier new;
padding:2px;
text-align:right;

}

.tiker .tabla  .valueEq {

color:#2F6DA7;

}



.tiker .tabla .watchlist {

width:270px;

}



.blk .tiker .light {

padding:1px;

background-color:#FFFFFF;

}



.blk .tiker .dark {

padding:2px;

background-color:#D5DFF8;

}
.blk .tiker .mild {

padding:2px;

background-color:#f1f1f1;

}





/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menu/one_page.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/* set up the overall width of the menu div, the font and the margins with a relative position*/

#menu2 {
font-family: verdana, arial, sans-serif; 
width:620px;
height:510px;
margin:0; 
position:relative;
left:-50px;
z-index:90;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
#menu2 ul {
padding:0; 
margin:0;
list-style-type: none;
border:0;
}
#menu2 ul table {border-collapse:collapse; margin:-1px -10px; font-size:1em;}
/* float the list so that the items are in a line */
#menu2 ul li {
float:left; 
}
/* style the links to be 249px wide by 30px high with a top and right border 1px solid white. Set the background color and the font size. */
#menu2 ul li a, .menu2 ul li a:visited {
display:block; 
text-align:center; 
text-decoration:none; 
width:149px; 
height:30px; 
color:#000; 
border-bottom:1px solid #666;
border-width:0px 0px 0 0;
background:#fff; 
line-height:30px; 
font-size:11px;
}
/* make the dropdown ul invisible */
#menu2 ul li ul {
position:absolute; left:-9999px; height:0;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
#menu2 ul li#current a {color:#2F6DA7; background:#fff;}

#menu2 ul li a:hover,
#menu2 ul li:hover a {
color:#99cc00; 
background:#ccc;
border:1px solid #2F6DA7;
border-width:1px 1px 0 1px;
}
/* make the sub menu ul visible and position it beneath the first list item */
#menu2 ul li#current ul,
#menu2 ul :hover ul {
top:30px; 
left:0;
height:480px;
background:#fff;
text-align:left;
}
/* make the sub menu ul li the full width with padding and border. Add an auto scroll bar */
#menu2 ul li#current ul li,
#menu2 ul :hover ul li {
background:#fff; 
color:#000;
padding:10px;
width:620px;
height:auto;
border:1px solid #b3ab79;
}
#menu2 ul li#current ul li {border:1px solid #938b59;}
/*float the image left with padding and no border */
#menu2 ul li#current ul li img,
#menu2 ul :hover ul li img {
float:left; 
padding:10px 0px 10px 0; 
border:0;
}
/* style the paragraph font height */
#menu2 ul li#current ul li p,
#menu2 ul :hover ul li p {
font-size:0.9em;
line-height:1.8em;
}
/* style the background and foreground color of the submenu links */
#menu2 ul li#current ul li a,
#menu2 ul :hover ul li a {
display:inline;
background:#eee;
color:#c00;
text-decoration:underline;
border:0;
line-height:1.8em;
}
/* style the background and forground colors of the links on hover */
#menu2 ul li#current ul li a:hover,
#menu2 ul :hover ul li a:hover {
text-decoration:none; 
color:#000;
}

.imageleft {float:left; padding:2px; border:1px solid #ccc; background:#fff;margin: 0 10px 10px 0; text-align:center; color:#666;font-weight:bold; font-size:11px;}
.imageright {float:none; padding:2px; border:1px solid #ccc; background:#fff;margin: 0 0px 10px 10px; text-align:center; color:#666;font-weight:bold; font-size:11px;width:auto;}

/*Imagecaptions*/
div.captionborder, div.captionborderleft,div.captionborderright {
border: 1px solid #2F6DA7;
padding: 3px;
background-color: #ffffff;
}

div.captionborderright {
float: right;
margin-left: 1em;
}

div.captionborderleft {
float: left;
margin-right: 1em;
}

p.captiontext {
margin: 0;
padding: 3px;
font-size: 90%;
background-color: #2F6DA7;
color: white;
text-align: center;
}

div.captionborderright p.captiontext  {
text-align: center;
padding-right: 3px;
}

div.captionborderleft p.captiontext  {
text-align: center;
padding-left: 3px;
}

/*Glossary*/

.FAQ {width:100%}
.FAQ dl {width:100%;margin:0 auto;padding:0;}
.FAQ dt {background-color:#f1f1f1; padding:10px;font-weight:bold;border-top:5px solid #fff;margin:0;}
.FAQ .p {font-size:2.5em;color:#c0c0c0;float:left;margin-right:8px;margin-bottom:5px;font-weight:bold;}
.FAQ dd {padding:10px;background:#fff;font-weight:normal;border:10px solid #f1f1f1;}

/* END LISTS */
/* End of 'Layout: Top menu + 2 columns' */

