.ftp-access_header {
	background: #1e90ff;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	width: 90%;
}

.mysql-access_header {
	background: #6c78af;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	width: 90%;
}

.ftp-access,
.mysql-access {
}

.ftp-access_header,
.mysql-access_header {
	color: #ffffff;
	padding: 10px 15px;
}

.ftp-access_header h2,
.mysql-access_header h2 {
	font-size: 18px;
	margin: 0;
}

.tab-row {
	display: flex;
	justify-content: space-between;
}
.tab-td {
	border-bottom: #dddddd 1px solid;
	width: 60%;
	padding: 5px;
}

.tab-td:first-child {
	background: #eeeeee;
	font-weight: bold;
	color: #808080;
	width: 40%;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #666;
}

.popup-close:hover {
    color: #000;
}
.server-popup {
	background: #ffffff;
	display: none;
	border: #dddddd 1px solid;
	position: fixed;
	top: 100px;
	left: 50%;
	width: 600px;
	height: 400px;
	transform: translateX(-50%);
	z-index: 399;
}

.server-popup_header {
	border-bottom: #dddddd 1px solid;
	padding: 20px;
}

.server-popup_header h2 {
	margin: 0;
}

.server-popup_content{
	padding: 15px;
}

.server-popup_header {
	border-top: #dddddd 1px solid;
	padding: 20px;
}

/* HTML, BODY */

html, body {
	background: #ffffff;
	text-align: left;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-size: 14px;
	color: #333333;
	line-height: 1.42857143;
	padding: 0;
	margin: 0;
}

/* WRAPPER */

#wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100vh;
}

/* HEADER */

#header {
	background: #0f172a; /* #264a7a */
	width: 100%;
	padding: 20px 0;
}

#header .logo {
	padding: 20px 0;
}

#header .logo img {
	height: 40px;
}

@media (max-width: 979px) {
	#header .logo {
		width: 201px;
		margin: 0 auto;
	}
}

/* NAV */

#nav {
	background: #fd7500; /* 00bcd7 #1a2029; */
	width: 100%;
	/* border-bottom: #080808 1px solid; */
	height: 60px;
}

#nav .menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    line-height: 60px;
    float: right;
    padding: 0 20px;
}

#nav .container {
	position: relative;
}

#nav .nav-brand {
	float: left;
	line-height: 41px;
	padding: 0 10px;
}

#nav .nav-brand a {
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
	color: #ffffff;
}

#nav .nav-bar {
	list-style-type: none;
	float: left;
	padding: 0;
	margin: 0;
}

#nav .nav-bar li {
	display: inline-block;
	position: relative;
	height: 60px;
	padding: 0 10px;
}

#nav .nav-bar li:hover {
	background: #ffffff;
}

#nav .nav-bar li:hover a {
	color: #000000;
}

#nav .nav-bar li:hover a:after {
	background: #000000;
	content: "";
	position: absolute;
	left: calc(50% - 10px);
	bottom: 0;
	width: 20px;
	height: 1px;
}

#nav .nav-bar li:hover ul {
	display: block;
}

#nav .nav-bar li a {
	display: block;
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
	color: #ffffff;
	line-height: 60px;
}

#nav .nav-bar li ul {
	background: #ffffff;
	display: none;
	border: #000000 1px solid;
	border-width: 0 1px 1px 1px;
	position: absolute;
	top: 60px;
	left: -1px;
	width: 250px;
	padding: 15px;
	z-index: 9999;
}

#nav .nav-bar li ul li {
	display: block;
	width: 100%;
	height: auto;
	padding: 0;
}

#nav .nav-bar li ul li:hover {
	background: none;
}

#nav .nav-bar li ul li:last-child a {
	border-bottom: none;
}

#nav .nav-bar li ul li a {
	display: block;
	font-size: 14px;
	color: #264a7a !important;
	border-bottom: #666 1px solid;
	line-height: 30px;
	padding-left: 10px;
}

#nav .nav-bar li ul li a:hover {
	color: #000 !important;
}

#nav .nav-bar li ul li a:hover:before {
	background: url("images/submenu-li.png") no-repeat;
	content: "";
	position: absolute;
	left: -15px;
	width: 10px;
	height: 22px;
}

#nav .nav-bar li ul li a:after {
	content: none !important;
}

@media (min-width: 979px) {
	#nav .nav-bar {
		float: left;
	}
	#nav .nav-right {
		float: right;
	}
}

@media (max-width: 979px) {
	#nav .nav-bar {
		display: none;
	}
    #nav .nav-bar,
    #nav .nav-right {
        display: none;
        width: 100%;
        float: none;
        background: #1a2029;
    }
    #nav .nav-bar li,
    #nav .nav-right li {
        display: block;
        width: 100%;
        text-align: left;
    }
    #nav .nav-bar li a,
    #nav .nav-right li a {
        line-height: 40px;
        padding: 10px 20px;
    }
    #nav .menu-toggle {
        display: block;
    }
    #nav .nav-bar li ul {
		z-index: 100;
        position: static;
        border: none;
        padding: 0;
        display: none;
    }
    #nav .nav-bar li.open > ul {
        display: block;
    }
}

/* CONTENT */

#content {
	background: #ffffff url("images/tlo.png") repeat-x 0 0;
	flex: 1;
	padding: 20px 0;
}

/* CONTENT */

#content {
	background: #ffffff url("images/tlo.png") repeat-x 0 0;
	flex: 1;
	padding: 40px 0;
}

.panel-page { }

.panel-page_header {
	border-bottom: #dddddd 1px solid;
}

.panel-page_header h2 {
	display: inline-block;
	border-bottom: #72bf44 5px solid;
	padding-bottom: 20px;
	margin-top: 0;
	margin-bottom: 0;
}

.panel-page_content {
	padding-top: 20px;
	padding-bottom: 20px;
}

/* FOOTER */

#footer {
	background: #f5f5f5;
	border-top: #dddddd 1px solid;
	width: 100%;
	padding: 20px 0;
}

#footer .copyright {
	display: flex;
	justify-content: space-between;
}

#footer .copyright p {
	margin: 0;
}

/* ======================================================= */

/* ======================================================= */

.header-wrapper {
	display: flex;
	align-items: center;
	position: relative;
	width: 1170px;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}

.client-logo {
overflow: hidden;
margin-right: auto;
	height: 60px;
    line-height: 60px;
}

.client-logo h2 {display: inline-block;
	font-family: "Lato", sans-serif;
	font-size: 18px;
	//height: 60px;
    //line-height: 60px;
	font-weight: 900;
	color: #ffffff;
	margin: 0;
}

.header-contact {
	display: flex;
	color: #b2fb70;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

element {
}
@media (max-width: 768px) {
  .header-contact {
    display: none;
  }
}
.header-contact .tech {
	margin: 0 20px;
}
.header-contact .tech span {
display: block;
width: 100%;
}
.header-contact .tech a {
display: block;
width: 100%;
	text-decoration: none;
	color: #b2fb70;
}

.header-contact .tech a:hover {
	color: #ffffff;
}









.wallet {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.wallet .amount {
    font-weight: 700;
}

.currency-selector {
    position: relative;
}

.currency-selector .selected {
    display: flex;
    align-items: center;
    gap: 5px;

    cursor: pointer;
    user-select: none;
}

.currency-selector .selected img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    object-fit: cover;
}

.currency-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;

    display: none;

    min-width: 130px;

    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 10px;

    overflow: hidden;
    z-index: 9999;

    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.currency-list.show {
    display: block;
}

.currency {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 12px;

    color: #fff;
    cursor: pointer;

    transition: background .2s;
}

.currency:hover {
    background: #334155;
}

.currency img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

.arrow {
    font-size: 11px;
    transition: transform .2s;
}

.currency-selector.active .arrow {
    transform: rotate(180deg);
}
.client-login {
	border-radius: 4px;
}

.client-login_header {
	background: #264a7a;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	padding: 10px 15px;
}

.client-login_header h2 {
	text-align: center;
	font-weight: 700;
	font-size: 18px;
	color: #ffffff;
	margin: 0;
}

/* Alert błędu */
.login-alert {
	margin-bottom: 20px;
    padding: 14px 18px;
    background-color: #f1f1f5;
    color: #e63946;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Content */
.client-login_content {
    padding: 20px;
}

/* Form group – BEZ flex */
.form-group label {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 6px;
    display: block;
}

.form-group .form-control {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 0.95em;
    box-sizing: border-box;
}

.form-group .form-control:focus {
    outline: none;
    border-color: #2a9d8f;
    box-shadow: none;
}

/* Footer */
.client-login_footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    overflow: hidden; /* clearfix */
}

/* Link reset */
.client-login_footer .btn-info {
    float: left;
    padding: 10px 18px;
    border-radius: 12px;
    background-color: #56cfe1;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: none;
}

.client-login_footer .btn-info:hover {
    background-color: #4ab1c9;
}

/* Przycisk logowania */
.client-login_footer .btn-primary {
    float: right;
    padding: 10px 18px;
    border-radius: 12px;
    background-color: #2a9d8f;
    color: #fff;
    font-weight: 700;
    border: none;
}

.client-login_footer .btn-primary:hover {
    background-color: #21867a;
}

/* Mobile */
@media (max-width: 768px) {
    .client-login_footer .btn {
        float: none;
        display: block;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .client-login_footer .btn:last-child {
        margin-bottom: 0;
    }
}






.client-welcome {
	text-align: right;
	color: #ffffff;
}
/* panel statystyk */
.server-stats {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px; /* panel nadal lekko zaokrąglony */
  background-color: #f5f7fa;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* nagłówek */
.server-stats_header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding: 15px 20px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* treść panelu */
.server-stats_content {
  padding: 20px 0 0 0;
}

/* pojedyncza statystyka */
.stat {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.stat-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

/* pasek – kwadratowy */
.bar {
  width: 100%;
  height: 28px;
  background: #eaeaea;
  border: 2px solid #bbb;
  border-radius: 0; /* brak zaokrągleń */
  overflow: hidden;
  position: relative;
}

/* wypełnienie paska – kwadratowe */
.bar-fill {
  height: 100%;
  width: 0;
  border-radius: 0; /* brak zaokrągleń */
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.5s ease, background 0.5s ease;
}

/* procent w środku paska */
.bar-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 12px;
  pointer-events: none;
  z-index: 1;
  color: white;
}








.tabs[data-type="active"] .active,
.tabs[data-type="pending"] .pending,
.tabs[data-type="suspended"] .suspended,
.tabs[data-type="closed"] .closed,
.tabs[data-type="all"] .all {
  background: #e3e7ee;
}

.tabs {
  background-color: #f8f9fc;
  display: flex;
  width: 100%;
}
.tabs > a {
	color: #000;
  padding: 1rem;
  width: 20%;
}
.tabs > a > span  {
  border-bottom: 3px solid #204f80;
    border-bottom-color: rgb(32, 79, 128);
  display: block;
  margin: 0 auto;
  width: 70%;
}

/* kolor border-bottom według klasy a */
.tabs > a.active > span {
  border-bottom-color: #009688; /* zielony */
}

.tabs > a.pending > span {
  border-bottom-color: #ffcc00; /* żółty */
}

.tabs > a.suspended > span {
  border-bottom-color: #ea004d; /* czerwony */
}

.tabs > a.closed > span {
  border-bottom-color: #999999; /* czerwony */
}

.tabs > a.all > span {
  border-bottom-color: #14afce; /* czerwony */
}
/* login-box */
.login-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    max-width: 400px;
    margin: 50px auto;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* nagłówek */
.login-box h2 {
    margin: 0;
    font-size: 1.4em;
    font-weight: 700;
    color: #222;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    text-align: center;
}

/* alert błędu */
.login-alert {
    padding: 14px 18px;
    background-color: #f1f1f5;
    color: #e63946;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* form-group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.95em;
    color: #555;
}

.form-group .form-control {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 0.95em;
    box-sizing: border-box;
}

.form-group .form-control:focus {
    outline: none;
    border-color: #2a9d8f;
}

/* linki i przyciski */
.login-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.login-links .btn-info {
    padding: 10px 18px;
    border-radius: 12px;
    background-color: #56cfe1;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.login-links .btn-info:hover {
    background-color: #4ab1c9;
}

.login-links .btn-primary {
    padding: 10px 18px;
    border-radius: 12px;
    background-color: #2a9d8f;
    color: #fff;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.login-links .btn-primary:hover {
    background-color: #21867a;
    transform: scale(1.02);
}

/* ================================================================= */

/* PŁATNOŚĆ Z PORTFELA */

.wallet-payment {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    font-family: 'Arial', sans-serif;
    max-width: 100%;
    box-sizing: border-box;
}

.wallet-payment h2 {
    margin: 0;
    font-size: 1.4em;
    font-weight: 700;
    color: #222;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.wallet-balance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background-color: #f1f1f5;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 600;
}

.wallet-balance strong {
    color: #2a9d8f;
}

.wallet-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wallet-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wallet-field label {
    font-size: 0.9em;
    font-weight: 600;
    color: #444;
}

.wallet-field input {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 1em;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.wallet-field input:focus {
    outline: none;
    border-color: #2a9d8f;
    box-shadow: 0 0 0 2px rgba(42,157,143,0.15);
}

.wallet-pay-btn {
    margin-top: 10px;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    background-color: #2a9d8f;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.wallet-pay-btn:hover {
    background-color: #21867a;
    transform: scale(1.02);
}

.wallet-pay-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.console {
    background: linear-gradient(180deg, #1a1a1a, #000000); /* ciemny gradient */
    color: #00ff00;       /* jasny zielony tekst */
    font-family: 'Courier New', monospace;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    height: 400px;
    overflow-y: auto;
}

.console-header {
    font-weight: bold;
    color: #ffff00; /* nagłówek żółty */
    margin-bottom: 8px;
    font-size: 1.1em;
}

.console-content {
    white-space: pre-wrap;
    line-height: 1.3em;
}













.client-nav {
  font-weight: 500;
  margin: 2em 0;
}

.client-nav a.active {
  color: #00bcd7;
}

.client-nav a {
  color: #758dad;
  display: inline-block;
  margin: 0 1em;
}

.client-nav a {
  color: #758dad;
  display: inline-block;
  margin: 0 1em;
    margin-left: 1em;
}









.required {
  color: red;
  font-weight: bold;
  margin-left: 4px;
}.editor_text {
	color: #000000;
	padding: 10px;
	height: 400px;
border:1px solid #ccc;
outline: 0;
}
.client-menu {
	margin-bottom: 20px;
}

.client-menu_header {
	background: #eeeeee;
	font-size: 15px;
	color: #333333;
	border-left: #31708f 10px solid;
	padding: 10px 15px;
}

.client-menu_content {
	background: #fafafa;
}

.client-menu_content-item {
	background: #fafafa;
	color: #3b4345;
	border-left: #dddddd 10px solid;
	border-bottom: #dddddd 1px solid;
	padding: 10px 15px;
	margin-bottom: 1px;
}

.client-menu_content-item a {
	text-decoration: none;
	font-weight: bold;
	color: #31708f;
}

.user-profile {
	background: #fff;
	display: flex;justify-content: right;
	align-items: center;
	//border: #dddddd 1px solid;
	border-radius: 4px;
	padding: 20px;
}

.user-profile .del {
  //position: absolute; 
display: inline-block;
  top: 5px;
  left: 5px;
	cursor: pointer;
  color: #000;
  text-decoration: none;
  font-size: 20px;
}
.user-profile .edit {
  position: absolute;
  top: 5px;
  left: 25px;
	cursor: pointer;
  color: #000;
  text-decoration: none;
  font-size: 20px;
}

.user-profile_avatar {
  position: relative;
  flex-shrink: 0;
  //margin-right: 15px;
}

.user-profile_avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  //object-fit: cover;
  //border: 2px solid #ccc;
  //transition: transform 0.3s ease;
}

/* Pseudoelement do efektu */
.user-profile_avata::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 0;
  opacity: 0;
}

/* Efekt po najechaniu */
.user-profile_avata:hover::after {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 1;
}

/* Opcjonalnie – lekki zoom samego obrazka */
.user-profile_avata:hover img {
  transform: scale(2.05);
  z-index: 1;
}

.user-profile_description {
color: #333333;
margin-right: 10px;
}
.user-profile_description .user {
font-weight: bold;
color: #008000;
}
.user-profile_description .admin {
font-weight: bold;
color: #ff0000;
}






.panel.panel-default .panel-heading:first-child {background: #5d5d5d; color:#ddd}
/* ================================================= */

.editor {
	border: #dddddd 1px solid;
	border-radius: 4px;
}

.editor-header {
	background: #f0f0f0;
	border-bottom: #dddddd 1px solid;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	padding: 10px;
}

.editor button {
	background: #f0f0f0;
	font-size: 16px;
	border: #cccccc 1px solid;
	padding: 8px 10px;
	margin: 2px;
}

.editor-content {
	padding: 5px;
}











/* ================================================= */

/* HTML, BODY */

html, body {
	background: #ffffff;
	text-align: left;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #333333;
	line-height: 1.42857143;
	padding: 0;
	margin: 0;
}

/* WRAPPER */

#wrapper {
	width: 100%;
	height: 100hv;
}

/* HEADER */

#header {
	width: 100%;
	height: 100px;
	padding: 0px 0;
}

#header .logo {
	height: 100px;
}

#header .logo img {
	height: 100px;
}

@media (max-width: 979px) {

	#header .loo {
		margin-left: 0;
		margin-right: 0;
	}


	#header .container {
		margin-left: -15px;
		margin-right: -15px;
	}

	.social {
		background: #000000;
		text-align: center;
		padding: 20px 0;
		margin-bottom: 20px;
	}

}

/* NAV */

/* NAV */

#nav {
	background: #000000;
	font-family: 'Open Sans', sans-serif !important;
	width: 100%;
	height: 40px;
}

#nav .nav-brand {
	float: left;
	line-height: 60px;
}

#nav .nav-brand a {
	font-size: 18px;
	color: #dddddd;
}

#nav .nav-bar {
	list-style-type: none;
	float: left;
	padding: 0;
	margin: 0;
}

#nav .nav-bar li {
	display: inline-block;
	position: relative;
	height: 40px;
	padding: 0 10px;
}

#nav .nav-bar li:hover {
	background: #ffffff;
}

#nav .nav-bar li a {
	display: block;
	text-decoration: none;
	font-size: 15px;
	color: #ffffff;
	line-height: 40px;
}

#nav .nav-bar li:hover a {
	color: #fd7700;
}

#nav .nav-bar li:hover a:after {
	background: #fd7700;
	content: "";
	position: absolute;
	left: calc(50% - 10px);
	bottom: 0;
	width: 20px;
	height: 1px;
}

#nav .nav-bar li:hover ul {
	display: block;
}

#nav .nav-bar li ul {
	background: #ffffff;
	display: none;
	border: #000000 1px solid;
	border-width: 0 1px 1px 1px;
	position: absolute;
	top: 40px;
	left: -1px;
	width: 250px;
	padding: 15px;
	z-index: 9999;
}

#nav .nav-bar li ul li {
	display: block;
	width: 100%;
	height: auto;
	padding: 0;
}

#nav .nav-bar li ul li:hover {
    background: none;
  }
#nav .nav-bar li ul li:last-child a {
    border-bottom: none;
  }

#nav .nav-bar li ul li a {
	display: block;
	font-size: 14px;
	color: #464646 !important;
	border-bottom: #e0e0e0 1px solid;
	line-height: 30px;
	padding-left: 10px;
}

#nav .nav-bar li ul li a:hover {
	color: #fd7700 !important;
}

  #nav .nav-bar li ul li a:hover:before {
    content: '';
    background: url("/images/submenu-li.png") no-repeat;
    width: 10px;
    height: 22px;
    position: absolute;
    left: -15px;
  }
  #nav .nav-bar li ul li a:after {
    content: none !important;
  }

@media (min-width: 979px) {

	#nav .nav-bar {
		float: left;
	}

	#nav .nav-right {
		float: right;
	}

}

/* CONTENT */

#content {
	min-height: auto;
	padding: 20px 0;
}

/* FOOTER */

#footer {
	background: #f5f5f5;
	border-top: #dddddd 1px solid;
	width: 100%;
	height: 60px;
	padding-top: 20px;
}

#footer .copyright {
}
