﻿@import url(http://fonts.googleapis.com/css?family=Open+Sans);

*, *:before, *:after 
{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing:border-box;
}

html, body, form
{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}
body 
{
    color: #222;
    font-family: "Open Sans", Arial,sans-serif;
    font-size: 13px;
    line-height: 20px;
    min-width: 980px;
    overflow-x: hidden;
    overflow-y: scroll;
}
body.framed {
    min-width: 0;
}

a {
    color: #0088CC;
    text-decoration: none;
    -webkit-outline: none !important;
    -moz-outline: none !important;
    outline:none !important;
}
a:hover {
    color: #005580;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    overflow: hidden;
    min-height: 600px;
}
iframe.high {
    min-height: 860px;
}
iframe#modaliframe {
    min-height: 100px;
    max-height: 1200px;
}
.float-left { float: left !important; }
.float-right { float: right !important; }

.blue { color: #0088CC; }

.bg-blue { background-color: #0088CC; }
.bg-white { background-color: #FFFFFF; }
.bg-lime {background-color: #A4C400;}
.bg-green {background-color: #60A917;}
.bg-emerald {background-color: #008A00;}
.bg-teal {background-color: #00ABA9;}
.bg-cyan {background-color: #1BA1E2;}
.bg-cobalt {background-color: #0050EF;}
.bg-indigo {background-color: #6A00FF;}
.bg-violet {background-color: #AA00FF;}
.bg-pink {background-color: #F472D0;}
.bg-magenta {background-color: #D80073;}
.bg-crimson {background-color: #A20025;}
.bg-red {background-color: #E51400;}
.bg-orange {background-color: #FA6800;}
.bg-amber {background-color: #F0A30A;}
.bg-yellow {background-color: #E3C800;}
.bg-brown {background-color: #825A2C;}
.bg-olive {background-color: #6D8764;}
.bg-steel {background-color: #647687;}
.bg-mauve {background-color: #76608A;}
.bg-taupe {background-color: #87794E;}

.text-small { font-size: 11px;}


/* -------------------------------------------- */

.row:after {
    clear: both;
}
.row:before, .row:after {
    content: "";
    display: table;
    line-height: 0;
}

/* FORM ELEMENTS -------------------------------------------- */

fieldset 
{
    padding: 0;
    margin: 0;
    border: none;
}
legend 
{
    width: 100%;
    line-height: 21px;
    padding: 3px 0 3px 6px;
    margin: 0 0 12px;
    background-color: #eee;
    border: 1px solid #DDDDDD;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
label, .label 
{
    display: block;
    float: left;
    text-align: left;
    min-height: 30px;
    line-height: 30px;
    cursor: pointer;
}
label:first-child, .label:first-child
{
    width: 200px;
    padding: 0 0 0 5px;
}
label.pullright, .label.pullright {
    margin-left: 200px;
    padding-left: 0;
}
.value {
    display: block;
    float: left;
    text-align: left;
    min-height: 30px;
    line-height: 30px;
}
button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: middle;
}
textarea, input[type="text"], input[type="password"], select {
    display: inline-block;
    width: 480px;
    min-height: 30px;
    line-height: 20px;
    padding: 4px 6px;
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    transition: border 0.2s linear 0, box-shadow 0.2s linear 0;
}
select 
{
    padding: 4px 4px 4px 3px;
}
textarea {
    min-height: 150px;
}
textarea.small {
    min-height: 80px;
}
textarea:focus, input[type="text"]:focus, input[type="password"]:focus, select:focus {
    border-color: rgba(82, 168, 236, 0.8);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
    outline: 0 none;
}
input[type="file"] {
    height: 32px;
    width: 423px;
    line-height: 30px;
}
.required {
    background-image: url('/assets/img/required.png');
    background-repeat: no-repeat;
    background-position: right 6px;
}
select.required {
    background-image: url('/assets/img/required-select.png');
}
.invalid {
    border-color: #B94A48 !important;
    color: #B94A48 !important;
}
.invalid:focus {
    border-color: #B94A48 !important;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px #D59392 !important;
    color: #B94A48 !important;
}

input[type="checkbox"], input[type="radio"]
{
    float: left;
    margin: 8px 7px 0 0;
    line-height: 30px;
}
input[type="text"].firstname { width: 100px;}
input[type="text"].preposition { width: 74px;}
input[type="text"].lastname { width: 300px;}

.formcontainer .row {
    margin-bottom: 10px;
}
.formcontainer .row.buttons {
    text-align: right;
    margin: 0;
}

input.address 
{
    display: block;
    float: left;
    width: 395px;
    margin-right: 5px;
}
input.housenumber {
    width: 80px;
}
input.zipcode 
{
    display: block;
    float: left;
    width: 100px;
    margin-right: 5px;
}
input.city {
    width: 375px;
}
input.input-small {
    display: block;
    float: left;
    width: 100px;
    margin-right: 5px;
}
input.input-smallest {
    display: block;
    float: left;
    width: 50px;
    margin-right: 5px;
}
.help-inline {
    display: block;
    float: left;
    text-align: left;
    min-height: 30px;
    line-height: 30px;
    font-size: 11px;
    color: #888;
}
/* -------------------------------------------- */


/* BUTTONS -------------------------------------------- */
.btn, button, input[type="button"], input[type="submit"] {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    cursor: pointer;
    color: #333333;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    background-color: #f5f5f5;
    background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
    background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    border: 1px solid #bbbbbb;
    border-bottom-color: #a2a2a2;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
}
input[type="button"], input[type="submit"] {
    padding: 5px 12px;
}
.btn:hover,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled],
button:hover {
  color: #333333;
  background-color: #e6e6e6;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}
.btn:focus,
button:focus 
{
    -webkit-outline: none !important;
    -moz-outline: none !important;
    outline:none !important;
}
.btn.active,
.btn:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.btn.disabled,
.btn[disabled] {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn.btn-left {
    float: left;
}
.btn.btn-right {
    float: right;
}
.btn.blue, button.blue {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn.blue:hover,
.btn.blue:active,
.btn.blue.active,
.btn.blue.disabled,
.btn.blue[disabled] {
  color: #ffffff;
  background-color: #0044cc;
}

.close {
    border: none;
    background: none;
    float: right;
    padding: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.scrolldiv 
{
    max-height: 540px;
    min-height: 540px;
    overflow-y: auto;
}
/* -------------------------------------------- */

/* TABLE -------------------------------------------- */
table.datatable
{
    table-layout: fixed;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    margin: 0 0 20px 0;
    font-size: 13px;
}
table.datatable thead
{
    background-color: #EFEFEF;
    color: #333333;
}
table.datatable td {
    text-align: left;
    white-space:nowrap;
    overflow:hidden;
    padding: 4px 10px;
    border-bottom: 1px solid #ddd;
    text-overflow:ellipsis;
}
table.datatable tr.hilite { background-color: #92e4fd; }
table.datatable tr.hilite td {border-bottom: 1px solid #65c9e7;}
table.datatable tr.active { background-color: #addef6;}
table.datatable tr.active td { border-bottom: 1px solid #8dc8e5;}
table.datatable tr.active td a { color: #005580;}
table.datatable td.num { text-align: right !important; }
table.datatable a { text-decoration: none; }
table.datatable a:hover { text-decoration: underline; }
table.datatable tr td input[type="checkbox"] { margin-top: 0;}

table.datatable .col0 { width: 50px;}
table.datatable .col1 { width: 100px;}
table.datatable .col2 { width: 200px;}
table.datatable .col3 { width: 300px;}
table.datatable .col4 { width: 400px;}
table.datatable .col5 { width: 500px;}

table.datatable .toggleinfo {
    background-color: #EFEFEF;
    border-radius: 2px;
    color: #888888;
    display: block;
    float: right;
    font-size: 10px;
    height: 20px;
    margin: 0;
    text-align: center;
    text-decoration: none;
    width: 18px;
}
table.datatable a.toggleinfo:hover 
{
    background-color: #ddd;
    text-decoration: none;
}
table.datatable tr.active a.toggleinfo 
{
    color: #ffffff;
    background-color: #86C0DC;
}
table.datatable tr.inforow 
{
    display: none;
    height: 140px;
    vertical-align: top;
    background-color: #F0F0F0;
}
table.datatable tr.inforow td {
    font-size: 12px;
    color: #666;
}
table.datatable tr.inforow td .profile-pic {
    display: block;
    float: left;
    width: 90px;
    height: 116px;
    margin: 8px 10px 0 0;
    background-color: #ccc;
    border: 1px solid #fff;
}
table.datatable tr.inforow td .profile-pic img 
{
    display: block;
    width: 90px;
    height: 116px;
}
table.datatable tr.inforow td .userinfo {
    display: block;
    float: left;
    margin-right: 15px;
}
table.cleantable td {
    border: none;
    vertical-align: top;
}
/* -------------------------------------------- */


/* NAVMENU -------------------------------------------- */

ul.navmenu {
    list-style: none outside none;
    display: block;
    width: 100%;
    height: 40px;
    padding: 0;
    margin: 0;
}
ul.navmenu li {
    display: block;
    float: left;
}
ul.navmenu li.dropdown {
    position: relative;
}
ul.navmenu li a
{
    display: block;
    color: #ffffff;
    line-height: 40px;
    padding: 0 8px;
    text-decoration: none;
    outline: 0; 
}
ul.navmenu li a:hover {
    background-color: #1E74C5;
}
ul.navmenu li .dropdown-menu {
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    display: none;
    float: left;
    left: 0;
    list-style: none outside none;
    margin: 2px 0 0;
    min-width: 160px;
    padding: 5px 0;
    position: absolute;
    top: 100%;
    z-index: 1000;
}
ul.navmenu li .dropdown-menu li {
    display: block;
    width: 100%;
}
ul.navmenu li .dropdown-menu li a {
    display: block;
    color: #222;
    line-height: 32px;
    padding: 0 8px;
    text-decoration: none;
    outline: 0; 
}
ul.navmenu li .dropdown-menu li a:hover 
{
    color: #ffffff;
    background-color: #368EE0;
}
ul.navmenu li .dropdown-menu li hr {
    margin: 3px 0;
}

/* -------------------------------------------- */




/* BUTTON MENU -------------------------------------------- */

.btn-dropdown {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    white-space: nowrap;
    margin-right: 1px;
}

.btn-dropdown .dropdown-panel {
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    display: none;
    float: left;
    left: 0;
    margin: 2px 0 0;
    min-width: 160px;
    padding: 5px 0;
    position: absolute;
    top: 100%;
    z-index: 1000;
}

.btn-dropdown .dropdown-panel.filteroptions 
{
    width: 410px;
    padding: 10px;
}

.btn-dropdown .dropdown-panel.filteroptions label {
    width: 100px;
}
.btn-dropdown .dropdown-panel.filteroptions input, .btn-dropdown .dropdown-panel.filteroptions select {
    width: 280px;
}
/* -------------------------------------------- */






/* TABS -------------------------------------------- */
ul.tabs {
    list-style: none outside none;
    display: block;
    width: 100%;
    height: 38px;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #DDDDDD;
}

ul.tabs li {
    display: block;
    float: left;
}
ul.tabs li a 
{
    display: block;
    -moz-border-radius-topleft: 4px;
    -webkit-border-top-left-radius: 4px;
    border-top-left-radius: 4px;
    -moz-border-radius-topright: 4px;
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
    background-color: #FFFFFF;
    border-color: #fff #fff #DDDDDD;
    border-style: solid;
    border-width: 1px;
    padding: 8px 12px;
    text-decoration: none;
    color: #888;
    outline: 0;
}
ul.tabs li a:hover 
{
    color: #0088CC;
    background-color: #eee;
}
ul.tabs li.active a 
{
    border-color: #DDDDDD #DDDDDD #fff;
    color: #222;
}
ul.tabs li.active a:hover {
    background-color: #FFFFFF;
}
.tab-content {
    border-bottom: 1px solid #DDDDDD;
    border-left: 1px solid #DDDDDD;
    border-right: 1px solid #DDDDDD;
    padding: 10px 10px 12px 10px;
    margin: 0 0 30px 0;
    overflow: auto;
}
.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
}
/* -------------------------------------------- */


/* TOOLBAR -------------------------------------------- */

.toolbar {
    display: block;
    background-color: #FAFAFA;
    background-image: -moz-linear-gradient(top, #ffffff, #F2F2F2);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#F2F2F2));
    background-image: -webkit-linear-gradient(top, #ffffff, #F2F2F2);
    background-image: -o-linear-gradient(top, #ffffff, #F2F2F2);
    background-image: linear-gradient(to bottom, #ffffff, #F2F2F2);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#F2F2F2', GradientType=0);
    border: 1px solid #D4D4D4;
    min-height: 40px;
    padding: 4px 4px;
    margin-bottom: 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.toolbar .btn, .toolbar button {
    margin: 0 1px 0 0;
}
.btn-group {
    display: inline-block;
    font-size: 0;
    position: relative;
    vertical-align: middle;
    white-space: nowrap;
    margin-right: 1px;
}
.btn-group .btn, .btn-group button
{
    margin: 0 0 0 -1px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.btn-group > .btn:first-child, .btn-group > button:first-child
{
    margin-left: 0;
    -moz-border-radius-topleft: 3px;
    -webkit-border-top-left-radius: 3px;
    border-top-left-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
    -webkit-border-bottom-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.btn-group > .btn:last-child, .btn-group > button:last-child {
    -moz-border-radius-topright: 3px;
    -webkit-border-top-right-radius: 3px;
    border-top-right-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    -webkit-border-bottom-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.input-append {
    display: inline-block;
    font-size: 0;
    position: relative;
    vertical-align: middle;
    white-space: nowrap;
    margin-right: 1px;
}
.input-append input[type="text"]
{
    width: 300px;
    font-size: 13px;
    border-color: #bbb;
    -moz-border-radius-topright: 0;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
    -moz-border-radius-bottomright: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-append .btn, .input-append input[type="submit"], .input-append button
{
    margin-left: -1px;
    -moz-border-radius-topleft: 0;
    -webkit-border-top-left-radius: 0;
    border-top-left-radius: 0;
    -moz-border-radius-bottomleft: 0;
    -webkit-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;
}



/* -------------------------------------------- */



/* ALERTS -------------------------------------------- */

.alert {
  padding: 8px 5px 8px 15px;
  margin-bottom: 20px;
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.alert,
.alert h4 {
  color: #c09853;
}
.alert h2, .alert h4 {
  margin: 0;
}
.alert p {
    margin-bottom: 0;
}
.alert.success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847;
}
.alert.success h4 {
  color: #468847;
}
.alert.danger,
.alert.error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48;
}
.alert.danger h4,
.alert.error h4 {
  color: #b94a48;
}
.alert.info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #3a87ad;
}
.alert.info h4 {
  color: #3a87ad;
}



/* ICONS -------------------------------------------- */

i.fa {
    display: inline;
    margin: 0 4px;
}
h1 i.fa {
    color: #cccccc;
    font-size: 18px;
    margin: 0 7px 0 4px;
}
#sideBar i.fa 
{
    display: inline-block;
    width: 15px;
    margin: 0 6px 0 0;
}
/* -------------------------------------------- */


/* HTML -------------------------------------------- */
h1, h2, h3, h4 {
    line-height: 1.15em;
    margin: 0 0 0.35em 0;
    text-rendering: optimizelegibility;
}
h1 
{
    font-size: 28px;
    font-weight: 300;
}
h2 
{
    font-size: 18px;
    font-weight: 300;
}
hr 
{
    border: none;
    border-top: 1px dotted #d3d3d3;
    clear: both;
    margin: 12px 0 13px;
}
/* -------------------------------------------- */

#mainMenu {
    background-color: #368EE0;
    height: 40px;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
#mainMenu .logo {
    display: block;
    float: left;
    height: 40px;
    width: 220px;
    color: #ffffff;
    line-height: 40px;
    padding: 0 8px;
    text-decoration: none;
    outline: 0; 
}
#sideBar {
    background-color: #0F253E;
    height: 100%;
    left: 0;
    overflow: hidden;
    padding: 40px 0 0;
    position: fixed;
    top: 0;
    width: 220px;
}
#sideBar .profile {
    background-color: #EEEEEE;
    display: block;
    height: 80px;
    padding: 10px;
    width: 220px;
}
#sideBar .profile .profile-pic {
    background-color: #DDDDDD;
    display: block;
    float: left;
    height: 60px;
    width: 47px;
    margin-right: 10px;
    overflow: hidden;
}
#sideBar .profile .profile-pic a, #sideBar .profile .profile-pic img {
    display: block;
    height: 60px;
}
#sideBar .profile .profile-info {
    display: block;
    float: left;
    height: 50px;
    padding: 5px 0 0;
    width: 140px;
}
#sideBar .profile .profile-info .profile-name {
    color: #1E74C5;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#sideBar .profile .profile-info .profile-function {
    color: #666666;
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#sideBar .event {
    background-color: #DEDEDE;
    display: block;
    height: 80px;
    padding: 10px;
    width: 220px;
}
#sideBar .event .event-name {
    font-weight: bold;
}
#sideBar .event .event-info {
    color: #666666;
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#sideBar ul.sidebar-items 
{
    list-style: none outside none;
    margin: 0;
    padding: 0;
    width: 100%;
}
#sideBar ul.sidebar-items li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    min-height: 32px;
    line-height: 32px;
    width: 100%;
}
#sideBar ul.sidebar-items li a {
    color: #939DA8;
    display: block;
    line-height: 32px;
    padding: 0 0 0 10px;
}
#sideBar ul.sidebar-items li a:hover {
    color: #ffffff;
}

#sideBar ul.sidebar-items li ul.pulldown-menu 
{
    display: none;
    padding: 0;
    margin: 0;
}
#sideBar ul.sidebar-items li ul.pulldown-menu li {
    border: none;
    min-height: 30px;
    line-height: 30px;
    background-color: #07182b;
}
#sideBar ul.sidebar-items li ul.pulldown-menu li a {
    line-height: 30px;
    padding-left: 32px;
}
#sideBar .copyright 
{
    position: absolute;
    bottom: 15px;
    display: block;
    font-size: 11px;
    color: #939DA8;
    margin: 0 0 0 10px;
}
#sideBar .copyright a:hover {
    color: #61caff;
}

#workSpace {
    height: 100%;
    padding: 45px 25px 0 250px;
    margin-bottom: 30px;
}

#messageBox {
    position: fixed;
    display: none;
    top: -100px;
    left: 50%;
    width: 400px;
    height: 80px;
    margin-left: -150px;
    z-index: 1100;
}

ul.crumbpath
{
    list-style: none;
    margin: 0;
    display: block;
    width: 100%;
    height: 36px;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    margin: 0 0 10px 0;
    padding: 0;
}
ul.crumbpath li {
    display: block;
    float: left;
    font-size: 11px;
    line-height: 32px;
}
ul.crumbpath li a {
    background: url("/assets/img/breadcrumb.png") no-repeat right 14px;
    display: inline-block;
    color: #333;
    text-decoration: none;
    padding: 0 15px 0 10px;
    opacity: 0.6;
}
ul.crumbpath li a:hover {
    opacity: 0.8;
}
ul.crumbpath li:first-child a {
    padding: 0 15px 0 0;
}
ul.crumbpath li:last-child a {
    background: none;
}

.pagination 
{
    display: block;
    width: 100%;
    height: 30px;
}
.pagination ul {
    list-style: none outside none;
    padding: 0;
    margin: 0;
    display: block;
}
.pagination ul li {
    display: block;
    float: left;
    padding: 0;
    margin: 0 5px 0 0;
}
.pagination ul li a {
    display: block;
    float: left;
    height: 24px;
    padding: 0 8px;
    background-color: #eee;
    text-align: center;
    line-height: 24px;
    color:#777;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.pagination ul li.active a 
{
    color: #ffffff;
    background-color: #368EE0;
}

.panel {
    padding: 8px 35px 8px 14px;
    margin-bottom: 20px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid #bce8f1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #d9edf7;
    color: #3a87ad;
}

.outline {
    padding: 8px 14px 8px 14px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

input[type="text"].datepicker  
{
    width: 150px;
}
.date-selectbox .year, .date-selectbox .month, .date-selectbox .day 
{
    display: block;
    float: left;
    width: 100px;
    margin-right: 10px;
}
.time-selectbox 
{
    display: block;
    float: left;
    margin-right: 20px;
}
.time-selectbox .hours, .time-selectbox .minutes
{
    display: block;
    float: left;
    width: 60px;
    margin-right: 10px;
}

.previewbox 
{
    display: block;
    float: left;
    padding: 5px;
    border: 1px solid #ddd;
    background-color: #fff;
}

.previewbox img {
    float: left;
    margin-right: 5px;
    max-width: 300px;
    max-height: 200px;
}

.sizes label 
{
    margin-right: 10px;
}


.doublesideselectbox {
    display: block;
    width: 470px;
    overflow: hidden;
}
.doublesideselectbox select {
    width: 200px;
    height: 200px;
}
.doublesideselectbox .not-selected {
    display: block;
    width: 200px;
    float: left;
}
.doublesideselectbox .center {
    display: block;
    width: 70px;
    float: left;
    margin: 50px 0 0 0;
}
.doublesideselectbox .center .btn {
    display: block;
    width: 50px;
    margin: 10px 10px;
}
.doublesideselectbox .selected {
    display: block;
    width: 200px;
    float: right;
}

.modalwindow {
    width: 600px;
    min-height: 400px;
}

.alphabet {
    margin: -10px 0 10px;
    display: block;
    clear: both;
    width: 700px;
}
.alphabet a {
    margin: 0 5px;
}

.teamproduct {
    opacity: 0.4;
}

.colorswatch {
    border: 1px solid #CCCCCC;
    display: block;
    height: 14px;
    width: 14px;
}

.croppercontainer, #webcam {
    display: block;
    width: 600px;
    height: 400px;
    background-color: #444;
}
#imgPhotoCropper {
    display: block;
    max-width: 600px !important;
    max-height: 400px !important;
}

ul.switchboard {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 720px;
}
ul.switchboard li {
    display: block;
    float: left;
}
ul.switchboard li a {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 20px 20px 0;
    padding: 20px 0 20px;
    color: #ffffff;
    text-align: center;
    line-height: 18px;
}
ul.switchboard li a i 
{
    display: block;
    font-size: 36px;
    margin-bottom: 4px;
}

.dashboard {
    margin-top: 50px;
}
.dashboard .item {
    display: block;
    float: left;
    width: 340px;
    border: #ffffff;
    padding: 10px;
    margin: 0 20px 10px 0;
    -webkit-box-shadow: 0 1px 3px 0 rgba(50, 50, 50, 0.35);
    -moz-box-shadow:    0 1px 3px 0 rgba(50, 50, 50, 0.35);
    box-shadow:         0 1px 3px 0 rgba(50, 50, 50, 0.35);
}
.dashboard .item h2 {
    color: #0088CC;
}
.dashboard .item tr td:first-child {
    width: 100px;
}

body.login, body.registration {
    background: #fff url('/assets/img/eventimage.jpg') no-repeat center center;
    background-size: 100% 100%;
    background-attachment: fixed;
    padding-top: 45px;
}
body.login #mainContainer {
    padding-top: 100px;
}
.loginbox 
{
    display: block;
    width: 400px;
    margin: 0 auto 0 auto;
    padding: 20px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 1);
    -moz-box-shadow:    0 3px 8px 0 rgba(0, 0, 0, 1);
    box-shadow:         0 3px 8px 0 rgba(0, 0, 0, 1);
}
.loginbox label, .loginbox input, .loginbox select {
    width: 100%;
}
.loginbox label {
    margin-bottom: 10px;
}
.loginbox .requestpassword {
    float: left;
    margin-top: 5px;
}
.loginbox .btn {
    width: 160px;
}
.registrationbox {
    display: block;
    width: 750px;
    padding: 30px 30px 20px;
    margin: 0 auto 30px;
    background-color: #ffffff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 1);
    -moz-box-shadow:    0 3px 8px 0 rgba(0, 0, 0, 1);
    box-shadow:         0 3px 8px 0 rgba(0, 0, 0, 1);
}

.registrationbox .requiredinfo 
{
    float: left;
    margin: 5px 0 0 5px;
    color: #999;
}
.registrationbox input.firstname, .registrationbox input.preposition
{
    margin-right: 3px;
}

.accreditation {
    background: #fff url('/assets/img/eventimage.jpg') no-repeat center center;
    background-size: 100% 100%;
    background-attachment: fixed;
    padding-top: 45px;
}
.accreditation #workSpace
{
    height: 100%;
    width: 770px;
    padding: 30px 30px 20px;
    margin: 0 auto 30px;
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 1);
    -moz-box-shadow:    0 3px 8px 0 rgba(0, 0, 0, 1);
    box-shadow:         0 3px 8px 0 rgba(0, 0, 0, 1);
}

.overlay {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.8;
}

.terms {
    position: absolute;
    z-index: 1001;
    top: 0;
    left: 50%;
    margin: 100px 0 0 -300px;
    width: 600px;
    padding: 20px;
    background-color: #ffffff;
}
.terms iframe 
{
    min-height: 260px;
    height: 260px !important;
    overflow: auto;
}

input[type="text"].scanbox {
    width: 500px;
    height: 48px;
    font-size: 21px;
    margin-right: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #eee;
}
input[type="text"].scanbox.grant-access {
    background-color: #9dd53a;
    color: #314908;
    border-color: #659311;
}
input[type="text"].scanbox.no-access {
    background-color: #ff3019;
    color: #ffffff;
    border-color: #7f0d00;
}
.scanbutton {
    width: 190px;
    height: 48px;
    float: right;
}

#posgrid {
    display: block;
    float: left;
    width: 500px;
    min-height: 430px;
    background: #eee;
    border: 2px solid #ddd;
    padding: 2px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.pos-item 
{
    position: relative;
    display: block;
    float: left;
    width: 110px;
    height: 100px;
    color: #222;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    margin: 6px;
    padding: 5px 0 0 0;
    background-color: #ddd;
    overflow: hidden;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.pos-item .image {
    display: block;
    float: left;
    width: 110px;
    height: 50px;
    text-align: center;
    margin-bottom: 2px;
}
.pos-item .image img {
    height: 50px;
    background: #ccc url('/media/products/default.jpg') no-repeat center center;
}
.pos-item .close 
{
    position: absolute;
    display: none;
    top: 3px;
    right: 3px;
    width: 30px;
    bottom: 3px;
    line-height: 65px;
    background-color: rgba(0,0,0,0.5);
    text-align: center;
    color: #ffffff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.pos-item .amounts 
{
    position: absolute;
    display: block;
    width: 100%;
    height: 40px;
    padding: 5px;
    bottom: 0;
}
.pos-item .amountordered {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #000;
    font-weight: bold;
    background: #fff;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}
#checkoutbar 
{
    position: relative;
    display: block;
    float: right;
    width: 190px;
    min-height: 430px;
    background: #eee;
    border: 2px solid #ddd;
    padding: 2px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
#selectedProducts 
{
    display: block;
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
}
#selectedProducts .pos-item {
    width: 100%;
    height: 70px;
    padding: 10px;
    margin: 0 0 5px;
    text-align: left;
}
#selectedProducts .pos-item .image {
    width: 40px;
    height: 70px;
    margin: 0 5px 0 0;
}
#selectedProducts .pos-item .image img {
    width: 40px;
    height: 40px;
}
#selectedProducts .pos-item .close 
{
    display: block;
}
#checkoutbutton 
{
    position: absolute;
    bottom: 2px;
    left: 2px;
    right: 2px;
    width: 182px;
    height: 48px;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    background: none;
    background-color: #368EE0;
    border: 1px solid #2d77bb;
    text-shadow: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}