/**
* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
* http://cssreset.com
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {

    border: 0;
    font-size: 100%;
    font: inherit;

}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
    margin-top: 75px;
    background-color: #F2F2F2;
    font-family: Arial, Helvetica, sans-serif;
}

.btnpomos {
    height: 20px;
    font-weight: bold;
    font-size: 12px;
    color: #F5F5F5;
    cursor: pointer;
    background-color: #CCC;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    letter-spacing: 0.1em;
    border-top-width: 1px;
    border-right-width: 2px;
    border-bottom-width: 1px;
    border-left-width: 2px;
    width: 90px;
}

.btnpomos:hover {
    height: 20px;
    font-weight: bold;
    font-size: 12px;
    color: #666666;
    cursor: pointer;
    background-color: #CCC;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    letter-spacing: 0.1em;
    border-top-width: 1px;
    border-right-width: 2px;
    border-bottom-width: 1px;
    border-left-width: 2px;
    width: 90px;
}

.padding_input {
    padding-left: 3px;
    background-color: #FFF;
    color: #3E3E3E;
}

.padding_input:hover {
    padding-left: 3px;
    background-color: #FBFBFB;
    color: #000;
}

.btnstorno {
    height: 20px;
    font-weight: bold;
    font-size: 12px;
    color: #F5F5F5;
    cursor: pointer;
    background-color: #CCC;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    letter-spacing: 0.1em;
    border-top-width: 1px;
    border-right-width: 2px;
    border-bottom-width: 1px;
    border-left-width: 2px;
    width: 120px;
}

.btnstorno:hover {
    height: 20px;
    font-weight: bold;
    font-size: 12px;
    color: #666666;
    cursor: pointer;
    background-color: #CCC;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    letter-spacing: 0.1em;
    border-top-width: 1px;
    border-right-width: 2px;
    border-bottom-width: 1px;
    border-left-width: 2px;
    width: 120px;
}

.btnnormal {
    font-weight: normal;
    font-size: 12px;
    cursor: pointer;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Chrome hack */
input, select, textarea {
    outline: none;
}

/**
Simple PHP Login related CSS stuff

*/

body {
    background-image: url("../img/bg_black_metal_01.jpg");
    /*background-image: url("../img/bg_black_holes.jpg");*/
    /*background-repeat: no-repeat;*/
    background-size: 100%;
}

.login_wrapper {    
	position:absolute;
	top: 41%;
	left: 50%;
	width:500px;
	height:165px;
	margin-top: -82px; /*set to a negative number 1/2 of your height*/
	margin-left: -250px; /*set to a negative number 1/2 of your width*/
}

.login {
    width: 500px;
    height: 125px;
    display: inline-block;
    background-color: #fff;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

#login_input_password_label,
#login_input_password_new_label,
#login_input_password_repeat_label {
    display: none;
}

.login_submit {
    width: 124px;
    height: 125px;
    background-image: url('../img/icon_lock.png');
    background-position: center 20px;
    background-repeat: no-repeat;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 1s;
    -moz-transition: opacity 1s; /* Firefox 4 */
    -webkit-transition: opacity 1s; /* Safari and Chrome */
    -o-transition: opacity 1s; /* Opera */
}

.login_submit:hover {
    opacity: 1;
    cursor: pointer;
}

.login_img {
    width: 124px;
    height: 125px;
    -webkit-filter: contrast(90%);
    background-repeat: no-repeat;
    opacity: 0.5;
    transition: opacity 1s;
    -moz-transition: opacity 1s; /* Firefox 4 */
    -webkit-transition: opacity 1s; /* Safari and Chrome */
    -o-transition: opacity 1s; /* Opera */
}

.login_img:hover {
    opacity: 1;
}

.login_submit_register {
    width: 124px;
    height: 250px;
    background-image: url('../img/icon_register.png');
    background-position: center 90px;
    background-repeat: no-repeat;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 1s;
    -moz-transition: opacity 1s; /* Firefox 4 */
    -webkit-transition: opacity 1s; /* Safari and Chrome */
    -o-transition: opacity 1s; /* Opera */
}

.login_submit_register:hover {
    opacity: 1;
    cursor: pointer;
}

#logo_clock {

    height: 125px;
    margin: 0;
    float: left;

}

.login_logout {
    float: right;
    width: 49px;
    height: 50px;
    background-image: url('../img/icon_logout.png');
    background-position: center 7px;
    background-repeat: no-repeat;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 1s;
    -moz-transition: opacity 1s; /* Firefox 4 */
    -webkit-transition: opacity 1s; /* Safari and Chrome */
    -o-transition: opacity 1s; /* Opera */
    border-left-width: 1px;
    border-bottom-style: solid;
    border-left-style: solid;
    border-left-color: #e6e6e6;
    border-bottom-width: 2px;
    border-bottom-color: #999;
}

.login_logout:hover {
    opacity: 1;
    cursor: pointer;
}

.login_logout a,
.login_logout a:hover {
    text-decoration: none;
}

a.login_link {
    color: #fff;
    text-decoration: none;
}

a.login_link:hover {
    text-decoration: underline;
}

input.login_input {
    font-family: 'Droid Sans', sans-serif;
    color: #666666;
    font-size: 17px;
    border: 0;
    height: 100%;
    width: 209px;
    padding: 0;
    margin: 0;
    padding-left: 40px;
    text-transform: lowercase;
}

input.login_input.active {
    font-family: 'Droid Sans', sans-serif;
    color: #666666;
    font-size: 17px;
    border: 0;
    height: 100%;
    width: 203px;
    padding: 0;
    margin: 0;
    padding-left: 34px;
    border-left: 6px solid #666;
    text-transform: lowercase;
}

.login_message {
    width: 440px;
    padding: 20px 30px;
    font-size: 16px;
    font-family: 'Droid Sans', sans-serif;
    margin-bottom: 50px;
    line-height: 22px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.login_message.error {
    background-color: #f9d3d5;
    color: #d05b39;
}

.login_message.success {
    background-color: #d3f7cb;
    color: #409622;
}

.login_message.success a {
    color: #409622;
}

#login_avatar {
    width: 125px;
    height: 125px;
    float: left;
    margin: 0;
    /*background-image: url("../img/avatar_standard.jpg");*/
    background-image: url("../img/avatar_01.png");
    /*background-image: url("../img/avatar_default_woman_125x125.jpg");*/
    background-size: 100%;

}

#login_avatar.standard_avatar {
    background-image: url("../img/avatar_standard.jpg");
}

#login_avatar.add_avatar {
    background-image: url("../img/user.gif");
}

.btn-nav {
    height: 30px;
    font-weight: bold;
    font-size: 12px;
    color: #797979;
    cursor: pointer;
    background-color: #FFF;
    border: 1px solid #CCC;
    margin-top: 3px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding: 0px;
    width: 165px;
    text-align: left;
    opacity: 1;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
}

.btn-nav:hover {
    height: 30px;
    font-weight: bold;
    font-size: 12px;
    color: #4A4A4A;
    cursor: pointer;
    background-color: #CCC;
    border: 1px solid #CCC;
    margin-top: 3px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding: 0px;
    width: 165px;
    text-decoration: none;
    text-align: left;
    opacity: 0.8;
}

.btn-nav-tiny {
    height: 30px;
    font-weight: bold;
    font-size: 14px;
    color: #CCC;
    cursor: pointer;
    background-color: #FFF;
    border: 1px solid #CCC;
    margin-top: 3px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding: 0px;
    width: 35px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

.btn-nav-tiny:hover {
    height: 30px;
    font-weight: bold;
    font-size: 14px;
    color: #CC0000;
    cursor: pointer;
    background-color: #DDD;
    border: 1px solid #CCC;
    margin-top: 3px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding: 0px;
    width: 35px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

.btn-nav-post {
    height: 30px;
    font-weight: bold;
    font-size: 14px;
    color: #D8D8D8;
    cursor: pointer;
    background-color: #ACACAC;
    border: 1px solid #CCC;
    margin-top: 3px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding: 0px;
    width: 95px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

.btn-nav-post:hover {
    height: 30px;
    font-weight: bold;
    font-size: 14px;
    color: #666666;
    cursor: pointer;
    background-color: #FFF;
    border: 1px solid #CCC;
    margin-top: 3px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding: 0px;
    width: 95px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

.btn-search {
    height: 34;
    font-weight: normal;
    color: #FFF;
    cursor: pointer;
    background-color: #FFF;
    width: 35px;
    text-align: center;
    background-repeat: no-repeat;
    background-image: url(../img/search-n.png);
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    font-size: 15px;
}

.btn-search:hover {
    height: 34;
    background-repeat: no-repeat;
    background-image: url(../img/search.png);
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
}

.listmenu-width {
    width: 160px;
}

.menu_down {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #D4D0C8;
    font-size: 14px;
    font-weight: bold;
    padding-right: 4px;
    padding-left: 4px;
}

.text_bold_normal {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    cursor: default;
    color: #666;
}

#info1 {
    height: 10px;
    padding: 3px;
    width: 158px;
    position: fixed;
    top: 276px;
    left: 10%;
    font-weight: bold;
    background-color: #E3E3E3;
    margin-left: 151px;
    border: 1px solid #E2E2E2;
}

#info2 {
    height: 10px;
    width: 152px;
    padding: 6px;
    background-color: #FFF;
    top: 293px;
    left: 10%;
    position: fixed;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #E2E2E2;;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #E2E2E2;;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #E2E2E2;
    margin-left: 151px;
}

#info3 {
    height: 10px;
    width: 152px;
    padding: 6px;
    top: 316px;
    left: 10%;
    position: fixed;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #E2E2E2;;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #E2E2E2;;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #E2E2E2;
    background-color: #FFF;
    margin-left: 151px;
}

#info4 {
    height: 10px;
    width: 152px;
    padding: 6px;
    top: 339px;
    left: 10%;
    position: fixed;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #E2E2E2;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #E2E2E2;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #E2E2E2;
    margin-left: 151px;
    background-color: #FFF;
}

#info5 {
    width: 152px;
    padding: 6px;
    top: 362px;
    left: 10%;
    position: fixed;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #E2E2E2;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #E2E2E2;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #E2E2E2;
    text-decoration: none;
    background-color: #FFF;
    margin-left: 151px;

}

@media print {
    #info5 {
        display: none;
    }

    body {
        background-color: #FFFFFF;
        padding: 0px;
        margin-left: -150px;
    }

    #search {

        display: none;
    }

    #hideuser {

        display: none;
    }

    #paddingpodrska {

        display: none;
    }

    #hidebroj {
        display: none;
    }

    #hidepomos {
        display: none;
        height: 60px;
    }

    #info1 {
        left: -21%;
        top: 252px;
    }

    #info2 {
        left: -21%;
        top: 269px;
    }

    #info3 {
        left: -21%;
        top: 292px;
    }

    #info4 {
        left: -21%;
        top: 315px;
    }

}

#scriteria {
    height: 10px;
    padding: 3px;
    width: 540px;
/ / top : 274 px;
/ / left : 446 px;
    font-weight: bold;
    float: right;
    background-color: #E3E3E3;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #CCC;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #E3E3E3;
    text-align: right;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #E3E3E3;
}

#results {
    height: 10px;
    width: 533px;
    padding: 6px;
/ / top : 290 px;
/ / left : 446 px;
    float: right;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #E2E2E2;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #E2E2E2;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #E2E2E2;
    text-align: right;

}

#artikal2 {
    /*position: fixed;/*
     /*left: 446px;*/
    width: 276px;
    float: left;
    text-align: left;
}

#prodkol {
    width: 110px;
    text-align: left;
    float: left;

}

#saldo {
    width: 88px;
    float: left;
    text-align: left;
}

#iznos {

    width: 10px;
    float: left;
    text-align: left;
}

.center {
    text-align: center;
    width: 100%;
    background-color: #C00;
    color: #FFF;
}

.copyright_down {
    border-top-width: 2px;
    border-top-style: solid;
    border-top-color: #D4D0C8;
    font-size: 14px;
    font-weight: bold;
    color: #666;
    cursor: default;
}

.copyright_down:hover {
    border-top-width: 2px;
    border-top-style: solid;
    border-top-color: #D4D0C8;
    font-size: 14px;
    font-weight: bold;
    color: #666;
    cursor: default;
}

.pregled_stats {
    color: #888888;
    border: 1px solid #CCCCCC;
    cursor: default;
    font-size: 12px;
    font-weight: bold;
}

.font {
    color: #888888;

    cursor: default;
    font-size: 12px;
    font-weight: bold;
}

.pregled_stats:hover {
    color: #707070;
    border: 1px solid #CCCCCC;
    cursor: default;
}

.copyright_up {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #494949;
    font-weight: normal;
    cursor: default;
    opacity: 0.8;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;

}

.copyright_up:hover {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #494949;
    font-weight: normal;
    cursor: default;
    opacity: 1;
}

.copyright_ups {
    border-bottom-color: #CCC;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #494949;
    font-weight: normal;
    cursor: default;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.left-border {
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #CCC;
}

.up-border {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #CCC;
}

.table_style {
    < --border

:

2
px solid #D4D0C8

;
>
background-color: #FFF

    }

.baner {
    color: #FFF;
}

.logo {
    font-size: 14px;
    font-weight: bold;
    color: #8A8A8A;
    letter-spacing: 0.1em;
    cursor: default;
}

table_text {
    color: #000;
}

.padding10px {
    margin-left: 10px;
    padding-left: 10px;
    font-size: 12px;
}

.paddingpodrska {
    margin-left: 10px;
    padding-right: 10px;
    font-size: 11px;
    color: #999;
    text-decoration: none;
    opacity: 1;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
}

.paddingpodrska a:link {
    margin-left: 10px;
    padding-right: 10px;
    font-size: 11px;
    color: #999;
    text-decoration: none;
}

.paddingpodrska a:visited {
    margin-left: 10px;
    padding-right: 10px;
    font-size: 11px;
    color: #999;
    text-decoration: none;
}

.paddingpodrska a:hover {
    margin-left: 10px;
    font-size: 11px;
    color: #000;
    opacity: 0.8;
}

.main_menu {
    height: 30px;
    line-height: 30px;
    color: #FFF;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.main_menu ul {
    padding: 0px;
    margin: 0;
    list-style: none;
}

.main_menu ul li {
    margin: 0;
    float: left;
    background-color: #999999;
}

.main_menu ul li a {
    color: #FFF;
    display: block;
    text-decoration: none;
    padding: 0 25px;
}

.main_menu ul li a:hover {
    color: #FFF;
    background-color: #E80000;
}

.main_menu ul li ul {
    display: none;
    width: auto;
    position: absolute;
    top: 30px;
    padding: 0px;
    margin: 0px;
}

.main_menu ul li:hover ul {
    display: block;
    position: absolute;
    margin: 0;
    padding: 0;
}

.main_menu ul li:hover li {
    float: none;
    list-style: none;
    margin: 0px;
}

.main_menu ul li:hover li {
    background: #333;
    border-top: 1px solid #000000;
}

.main_menu ul li:hover li a {
    color: #fff;
    padding: 0 20px;
    display: block;
    width: 170px;
}

.main_menu ul li li a:hover {
    color: #FFF;
}

.pointer {
    cursor: default;
}

.hand {
    cursor: pointer;
}

.red {
    cursor: default;
    background-color: #C30;
    color: #FFFFFF;
    letter-spacing: 0.1em;
    font-weight: bold;
    opacity: 1;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
}

.red:hover {
    cursor: default;
    background-color: #C30;
    opacity: 0.7;
}

.green {
    cursor: default;
    background-color: #0F0;
}

.gray {
    cursor: default;
    background-color: #000000;
    color: #FFF;
    font-weight: bold;
    opacity: 0.7;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
}

.gray:hover {
    cursor: default;
    background-color: #000000;
    color: #FFF;
    font-weight: bold;
    opacity: 1;
}

.username {
    text-transform: lowercase;
}

.gray {
    background-color: #CCC;
}

.orange {
    color: #F97C00;
    font-weight: bold;
    cursor: pointer;
}

/* Starter CSS for Flyout Menu */
#cssmenu {
    padding: 0;
    margin: 0;
    border: 0;
}

#cssmenu ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

#cssmenu ul {
    position: relative;
    z-index: 597;
    float: left;
}

#cssmenu ul li {
    float: left;
    min-height: 1px;
    line-height: 1em;
    vertical-align: middle;
}

#cssmenu ul li.hover,
#cssmenu ul li:hover {
    position: relative;
    z-index: 599;
    cursor: default;
}

#cssmenu ul ul {
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 598;
    width: 100%;
}

#cssmenu ul ul li {
    float: none;
}

#cssmenu ul li:hover > ul {
    visibility: visible;
}

#cssmenu ul ul {
    top: 0;
    left: 100%;
}

#cssmenu ul li {
    float: none;
}

/* Custom Stuff */
#cssmenu {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.15);
    width: 180px;
}

#cssmenu span, #cssmenu a {
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-decoration: none;
}

#cssmenu:after, #cssmenu ul:after {
    content: '';
    display: block;
    clear: both;
}

#cssmenu > ul > li:first-child {
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

#cssmenu > ul > li:last-child {
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

#cssmenu > ul > li ul ul {
    -moz-border-radius: 0 6px 6px 0;
    -webkit-border-radius: 0 6px 6px 0;
    border-radius: 0 6px 6px 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

#cssmenu > ul > li ul ul li:first-child {
    -moz-border-radius: 0 5px 0 0;
    -webkit-border-radius: 0 5px 0 0;
    border-radius: 0 5px 0 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

#cssmenu > ul > li ul ul li:last-child {
    -moz-border-radius: 0 0 5px 0;
    -webkit-border-radius: 0 0 5px 0;
    border-radius: 0 0 5px 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

#cssmenu ul, #cssmenu li {
    width: 100%;
}

#cssmenu li {
    background: #dddddd url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAJCAMAAAA8eE0hAAAAUVBMVEX////MzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzNzc3l5eXg4ODZ2dnMzMzi4uLS0tLe3t7Q0NDV1dXj4+PW1tbk5OTc3NzPz8/R0dH0Zv5RAAAAC3RSTlMAM2YekAmlPHuEAwArv7wAAAA/SURBVHheY2Dl5mdigABGKV5BNnYok4dHQpKFGcrkEefj5gAzQUBABM7kFYQyRcX4mUBMkEpOLrA2IWGwfgYAn0UDZszv8IwAAAAASUVORK5CYII=) repeat-x;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #e5e5e5), color-stop(1, #dddddd));
    background-image: -webkit-linear-gradient(top, #e5e5e5, #dddddd);
    background-image: -moz-linear-gradient(top, #e5e5e5, #dddddd);
    background-image: -ms-linear-gradient(top, #e5e5e5, #dddddd);
    background-image: -o-linear-gradient(top, #e5e5e5, #dddddd);
    background-image: linear-gradient(#e5e5e5, #dddddd);
}

#cssmenu li:hover {
    background: #f6f6f6;
}

#cssmenu a {
    color: #666666;
    line-height: 160%;
    padding: 3px 28px 1px 6px;
    width: 144px;
}

#cssmenu ul ul {
    border: 1px solid #dddddd;
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

#cssmenu ul ul li {
    background: #f6f6f6;
}

#cssmenu ul ul li:hover {
    background: #dddddd;
}

#cssmenu ul ul li:hover a {
    color: #AE0001;
}

#cssmenu ul ul li ul li {
    background: #dddddd;
}

#cssmenu ul ul li ul li:hover {
    background: #b7b7b7;
}

#cssmenu .has-sub {
    position: relative;
}

#cssmenu .has-sub:after, #cssmenu .has-sub > ul > .has-sub:hover:after {
    content: '';
    display: block;
    width: 10px;
    height: 9px;
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -5px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAJCAMAAAA8eE0hAAAAUVBMVEX////MzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzNzc3l5eXg4ODZ2dnMzMzi4uLS0tLe3t7Q0NDV1dXj4+PW1tbk5OTc3NzPz8/R0dH0Zv5RAAAAC3RSTlMAM2YekAmlPHuEAwArv7wAAAA/SURBVHheY2Dl5mdigABGKV5BNnYok4dHQpKFGcrkEefj5gAzQUBABM7kFYQyRcX4mUBMkEpOLrA2IWGwfgYAn0UDZszv8IwAAAAASUVORK5CYII=);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

#cssmenu .has-sub > ul > .has-sub:after, #cssmenu .has-sub:hover:after {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAJCAMAAAA8eE0hAAAAUVBMVEX////d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3e3t729vbx8fHq6urd3d3z8/Pj4+Pv7+/h4eHm5ub09PTn5+f19fXt7e3g4ODi4uLUsVdlAAAAC3RSTlMAM2YekAmlPHuEAwArv7wAAAA/SURBVHheY2Dl5mdigABGKV5BNnYok4dHQpKFGcrkEefj5gAzQUBABM7kFYQyRcX4mUBMkEpOLrA2IWGwfgYAn0UDZszv8IwAAAAASUVORK5CYII=);
}

.notloggedintitle {
	text-align: center;
	width: 500px;
	position: absolute;
	text-shadow: 2px 2px 16px rgba(103, 147, 145, 1);
	left: 0%;
	font-size: 24px;
	color: #CC3300;	
	margin-top:-40px;
	cursor:default;
}
.notloggedincopyright {
	text-align: center;
	width: 500px;
	position: absolute;
	left: 0%;
	font-size: 14px;
	color: #000;	
	margin-top: 20px;
	cursor:default;
}
.notloggedintitlelogo {
	width: 100%;
	
	position: absolute;
	text-align: center;
	margin-top: -60px;

	
}
/*vneseni od kiril*/
.pointer {
	cursor: pointer;	
}