/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #666;
  background: #fff;
}
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;
}
h1,
h2,
h3,
h4 {
  font-family: 'Asap', sans-serif;
  font-weight: 700;
}
h1 {
  font-size: 24px;
  color: #0991df;
}
h2 {
  font-size: 20px;
  color: #0991df;
}
h3 {
  font-size: 18px;
  color: #444;
}
h4 {
  font-size: 18px;
  color: #555;
}
p {
  line-height: 1.6em;
  margin-bottom: 30px;
}
b,
strong {
  font-weight: bold;
}
italic {
  font-style: italic;
}
.hide {
  display: none;
}
.clear {
  clear: both;
}
hr {
  clear: both;
  display: block;
  height: 0px;
  border: none;
}
a {
  color: #ee7600;
  cursor: pointer;
}
.align-center {
  text-align: center;
}
.left {
  float: left;
}
.right {
  float: right;
}
/* @end */
/* @group default links */
a:link,
a:active,
a:visited {
  color: #0991df;
  text-decoration: none;
  outline: none;
}
a:hover {
  color: #000;
}
.noclick {
  cursor: default;
}
.container {
  position: relative;
}
.containerx {
  background: rgba(255, 44, 23, 0.2);
}
/* @end */
/* @group BUTTONS */
a.button {
  display: inline-block;
  font-family: 'Asap', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  background: #0991df;
  color: #fff;
  padding: 8px 20px 10px;
  border: none;
  border-radius: 3px;
  box-shadow: inset 0 -3px 0 0 #0770ac;
}
a.button.big {
  font-size: 120%;
  padding: 10px 20px;
}
a.button.small {
  font-size: 12px;
  padding: 4px 20px;
}
a.button.dark {
  background: #0991df;
  color: #fff;
}
a.button:hover {
  background: #0770ac;
  color: #fff;
}
/* @end */
/* @group SITE-HEADER */
.site-wrapper {
  overflow: hidden;
}
body {
  padding-top: 130px;
}
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  background: #222;
}
.site-header .top-bar {
  background: #fff;
}
.site-header .top-bar .container {
  height: 80px;
}
.site-header .comp-logo {
  display: block;
  width: 200px;
  height: 60px;
  position: absolute;
  top: 10px;
  left: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
}
.site-header .languages {
  overflow: hidden;
  position: absolute;
  top: 30px;
  right: 20px;
}
.site-header .languages a {
  display: block;
  width: 30px;
  float: left;
  margin: 0 0 0 10px;
}
.site-header .languages a:hover {
  opacity: 0.7;
}
.site-header .menu-bar {
  height: 50px;
}
.site-header .home-icon {
  display: block;
  width: 60px;
  height: 50px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 26px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 50;
}
.site-header .home-icon:hover {
  color: #0991df;
}
.site-header .std-nav {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 20px;
}
.site-header .mainnav {
  overflow: hidden;
}
.site-header .mainnav li {
  display: inline-block;
  margin-right: 30px;
}
.site-header .mainnav a {
  font-family: 'Asap', sans-serif;
  font-weight: 600;
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 50px;
  text-transform: uppercase;
}
.site-header .mainnav a:hover {
  color: #0991df;
}
/* @end */
/* @group MOBILE-NAV */
.nav-icon {
  display: none;
  width: 36px;
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 20px;
}
.nav-icon:after,
.nav-icon:before,
.nav-icon div {
  background-color: #0991df;
  content: '';
  display: block;
  height: 3px;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}
.nav-icon.open:before {
  transform: translateY(8px) rotate(135deg);
  -moz-transform: translateY(8px) rotate(135deg);
  -webkit-transform: translateY(8px) rotate(135deg);
}
.nav-icon.open:after {
  transform: translateY(-8px) rotate(-135deg);
  -moz-transform: translateY(-8px) rotate(-135deg);
  -webkit-transform: translateY(-8px) rotate(-135deg);
}
.nav-icon.open div {
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
}
.mobile-nav {
  width: 100%;
  height: 100%;
  padding: 0;
  background: #0991df;
  color: #fff;
  overflow: hidden;
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 600;
  overflow-y: scroll;
  /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
  transition: all 0.6s ease 0s;
}
.mobile-nav .container {
  z-index: 200;
  font-size: 18px;
  padding-top: 140px;
  padding-bottom: 10px;
}
.mobile-nav .mainnav li {
  margin-bottom: 20px;
}
.mobile-nav .mainnav li a {
  display: block;
  font-family: 'Asap', sans-serif;
  color: #fff;
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.mobile-nav .mainnav li a:hover {
  color: #fff;
}
.mobile-nav .mainnav > li:last-child {
  margin-bottom: 0;
}
.mobile-nav .mainnav ul {
  display: none;
  padding: 20px 0;
}
.mobile-nav .mainnav ul.show-subnav {
  display: block;
}
.mobile-nav .mainnav ul li:last-child {
  margin-bottom: 0;
}
.mobile-nav .mainnav ul li a {
  color: #fff;
  font-size: 24px;
  text-transform: none;
  font-weight: 300;
  padding-left: 10px;
}
.shownav .mobile-nav {
  top: 0;
}
/* @end */
/* @group MAIN */
.main {
  padding: 0;
}
/* @end */
/* @group HOME PAGE */
.mod-intro {
  padding: 0 0 30px;
}
.mod-intro .post-header {
  margin-bottom: 30px;
}
.mod-intro .post-entry {
  font-size: 18px;
}
.mod-choices {
  padding: 30px 0 60px;
}
.mod-choices .post-header {
  margin-bottom: 20px;
}
.mod-choices h2 {
  text-align: center;
}
.mod-choices p {
  margin-bottom: 0;
}
.mod-choices img {
  width: 100%;
}
/* @end */
/* @group SITE-FOOTER */
.site-footer {
  background: #222;
  font-size: 14px;
}
.site-footer .footer-content {
  padding: 40px 0 10px;
  color: #fff;
}
.site-footer .footer-content h2,
.site-footer .footer-content h3,
.site-footer .footer-content h4 {
  color: inherit;
  margin: 0 0 15px;
  font-weight: 400;
}
.site-footer .footer-credits {
  background: #fff;
  padding: 15px 0;
  text-transform: uppercase;
  font-size: 13px;
}
.site-footer .footer-credits .isright {
  text-align: right;
}
/* @end */
/* @group QUICKSEARCH */
.qsearch {
  display: block;
  width: 50%;
  overflow: hidden;
  background: #0991df;
  border: 3px solid #0991df;
  border-radius: 2px;
  position: absolute;
  top: 15px;
  left: 25%;
}
.qsearch input {
  width: 100%;
  height: 40px;
  border: none;
  padding: 8px;
}
.qsearch button {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  padding: 0 20px;
  background: #0991df;
  color: #fff;
}
.qsearch button:hover {
  background: #0770ac;
}
/* @end */
/* @group COLUMNS */
.col-left,
.col-right {
  padding-top: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.col-left {
  border-right: 1px solid #eee;
}
.col-right {
  border-left: 1px solid #eee;
}
.col-mid {
  padding-top: 40px;
  padding-bottom: 60px;
}
.main {
  background: url(../de_img/bgmain.png) center center;
}
.main-container {
  background: #fff;
}
@media (max-width: 991px) {
  .col-left {
    display: none;
  }
}
/* @end */
/* @group PAGE-HEADER */
.page-header h1,
.post-header h1 {
  margin: 0 0 10px 0;
}
/* @end */
/* @group POST STUFF */
.post-entry h1,
.post-output h1,
.post-entry h2,
.post-output h2,
.post-entry h3,
.post-output h3,
.post-entry h4,
.post-output h4 {
  color: #333;
  margin-bottom: 20px;
}
.post-entry h1,
.post-output h1 {
  font-size: 32px;
}
.post-entry h2,
.post-output h2 {
  font-size: 22px;
}
.post-entry h3,
.post-output h3 {
  font-size: 20px;
}
.post-entry h4,
.post-output h4 {
  font-size: 18px;
}
.post-entry ul,
.post-output ul,
.post-entry ol,
.post-output ol,
.post-entry li,
.post-output li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.post-entry ul,
.post-output ul {
  margin: 0 0 30px;
}
.post-entry ul li,
.post-output ul li {
  margin-left: 20px;
  list-style: disc;
  margin-bottom: 5px;
}
.post-entry ol,
.post-output ol {
  margin: 0 0 30px;
}
.post-entry ol li,
.post-output ol li {
  margin-left: 20px;
  list-style: decimal;
  margin-bottom: 5px;
}
/* @end */
/* @group MATRI-FEED */
.matri-feed .mod-header {
  margin-bottom: 15px;
}
.matri-feed .mod-header h2 {
  font-size: 24px;
  margin: 0;
}
.matri-feed h3 {
  font-size: 16px;
  color: #222;
  margin: 10px 0;
}
.matri-feed h3 a {
  color: inherit;
}
.feed-product,
.feed-category {
  padding-bottom: 15px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.feed-product:hover,
.feed-category:hover {
  opacity: 0.8;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
}
.feed-product .image img {
  width: 100%;
}
.feed-product .info {
  margin-bottom: 15px;
}
.feed-product .warranty {
  display: block;
  margin-bottom: 10px;
}
.feed-product .price {
  font-family: 'Asap', sans-serif;
}
.feed-product .price-new {
  font-size: 18px;
  color: #0991df;
  font-weight: 600;
}
.feed-product .price-old {
  color: #666;
  text-decoration: line-through;
}
.feed-product .actions {
  padding: 0 15px;
}
.feed-category .image {
  margin-bottom: 15px;
}
.feed-category .actions {
  padding: 0 15px;
}
@media (max-width: 991px) {
  .matri-feed .feed-product,
  .matri-feed .feed-category {
    width: 31%;
    float: left;
    margin: 0 2% 20px 0;
  }
}
.matrifeed {
  margin-bottom: 30px;
}
.matrifeed h2 {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 0;
}
.matrifeed .inner {
  overflow: hidden;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.matrifeed .image {
  float: left;
  margin-right: 15px;
}
.matrifeed h3 {
  margin: 0;
}
.matrifeed .warranty {
  display: block;
  font-size: 14px;
  line-height: 1.6em;
}
.matrifeed .price {
  font-size: 20px;
  color: #222;
}
.matrifeed .price-old {
  font-size: 15px;
  color: #777;
  text-decoration: line-through;
}
.matrifeed .cart {
  display: block;
  padding-top: 5px;
}
section .matrifeed .inner {
  text-align: center;
  min-height: 315px;
  margin-bottom: 10px;
}
section .matrifeed .inner:hover {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  border-color: #fff;
}
section .matrifeed h2 {
  margin-bottom: 10px;
}
section .matrifeed .image {
  float: none;
  margin-bottom: 15px;
}
section .catfeed article {
  min-height: 260px;
}
/* @end */
/* @group Video contaiiner */
.video-container {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* @end */
/* @group standard table */
.tabel {
  border: 1px solid #ccc;
  margin-bottom: 20px;
  border-collapse: collapse;
  color: #333;
}
.tabel thead {
  background: #333;
  color: #fff;
}
.tabel th {
  text-align: left;
  padding: 7px 5px;
  text-transform: uppercase;
}
.tabel tr {
  border-bottom: 1px solid #ccc;
}
.tabel td {
  padding: 7px 5px;
  background: #f8f8f8;
}
.tabel tr.even td {
  background: #e8e8e8;
}
/* @end */
/* @group images */
.images {
  overflow: hidden;
  width: 640px;
  padding-left: 5px;
  margin-left: -5px;
  margin-bottom: 20px;
}
.images a,
.images img {
  display: block;
  float: left;
}
.images a {
  margin: 5px 5px 5px 0;
}
.images a:hover {
  border-color: #fff;
}
/* @end */
/* @group files */
.files {
  margin-bottom: 20px;
}
.files a {
  display: block;
  line-height: 1.5em;
}
.files.small {
  font-size: 11px;
}
/* @end */
/* @group list */
.resultstitle {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.list article {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.list article p {
  margin-bottom: 20px;
}
/* @end */
/* @group bloglist */
.bloglist {
  overflow: hidden;
  padding-bottom: 24px;
}
.bloglist .thumb {
  display: block;
  padding: 3px;
  border: 1px solid #ddd;
  float: left;
  margin: 5px 15px 0 0;
}
.bloglist .item {
  float: left;
  width: auto;
}
.line {
  clear: both;
  padding-bottom: 24px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 24px;
}
a.readmore {
  display: inline-block;
  color: #000 !important;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 14px;
}
a.readmore i {
  float: right;
  margin-top: -1px;
}
.blog {
  margin-bottom: 24px;
}
/* @end */
/* @group VRAGEN BLOGLIST */
.questions a {
  display: block;
  font-family: 'Asap', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4em;
  color: #555;
  margin-bottom: 5px;
}
.questions a:hover {
  color: #0991df;
}
/* @end */
/* @group HTML BLOCK */
.mod-htmlblock.full-img img {
  width: 100%;
}
/* @end */
/* @group filters */
.filters {
  padding: 6px 0 4px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-top: 20px;
  margin-bottom: 20px;
}
.filters select {
  width: auto;
}
/* @end */
/* @group shares */
.shares {
  overflow: hidden;
  text-transform: uppercase;
  font-size: 11px;
  padding: 10px 0 0 0;
  border-top: 1px solid #eee;
}
.shares span,
.shares a {
  display: block;
  float: left;
  color: #fff !important;
  background-color: #ee7600;
  padding: 4px 8px 3px;
  margin-right: 2px;
}
.shares a:hover {
  background: #422918;
}
.shares span {
  background: #422918;
}
/* @end */
/* @group customers */
.customers {
  margin-top: 30px;
}
.customers article {
  margin-top: 5px;
  margin-bottom: 15px;
}
.customers article:hover {
  -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}
.customers article h2 {
  font-size: 18px;
  margin: 10px 5px 5px;
  color: #ee7600;
}
.customers article em {
  display: block;
  font-style: normal;
  margin: 5px;
  font-size: 14px;
}
/* @end */
/* @group projectedetails */
.project {
  margin-bottom: 10px;
}
.project .mainimage {
  margin-bottom: 10px;
}
.project .imagerow {
  margin-bottom: 15px;
}
.project .imagerow a {
  display: inline-block;
  margin-right: 3px;
}
.projectinfo {
  border-top: 1px solid #e5e5e5;
}
.projectinfo p {
  clear: both;
  display: block;
  line-height: 1.8em;
  padding: 0 5px;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
  margin: 0;
}
.projectinfo span.flt {
  overflow: hidden;
}
.projectinfo strong {
  display: inline-block;
  width: 70px;
  float: left;
  color: #000;
  font-weight: normal;
}
.attributes {
  margin: 15px 0;
}
.attributes h3 {
  padding: 10px 0 10px 0;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 0;
}
.attributes p {
  display: block;
  font-size: 13px;
  line-height: 1.8em;
  padding-left: 5px;
  border-bottom: 1px solid #e5e5e5;
  margin: 0;
}
.zebra p {
  background: #f1f0f0;
}
.zebra p.odd {
  background: #f8f8f8;
}
/* @end */
/* @group Sidegrid */
.sidegrid a {
  margin-bottom: 15px;
  position: relative;
}
.sidegrid a .arrowcorner {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../de_img/arrowcorner_orange.png);
}
.sidegrid a:hover .arrowcorner {
  background-position: bottom right;
}
/* @end */
/* @group panel */
.panel {
  background: #fafafa;
  border: 1px solid #E5E5E5;
  margin-bottom: 30px;
  overflow: auto;
  padding: 15px;
}
.panel.last {
  margin-bottom: 15px;
}
.account .panel,
.login .panel {
  background: #f4f4f4;
}
.login .panel {
  background: #f4f4f4;
  margin-bottom: 0;
}
/* @end */
/* @group account */
.account {
  overflow: hidden;
}
.account h2 {
  margin-bottom: 4px;
}
.account .formxx {
  width: 400px;
}
.account .full {
  width: 100%;
}
/* orders */
.order-list {
  margin-bottom: 10px;
}
.order-list .order-id {
  width: 49%;
  float: left;
  margin-bottom: 4px;
  font-weight: bold;
  font-size: 14px;
}
.order-list .order-status {
  width: 49%;
  float: right;
  text-align: right;
  margin-bottom: 4px;
  font-weight: bold;
  font-size: 14px;
}
.order-list .order-content {
  padding: 10px 0px;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.order-list .order-content div {
  float: left;
  width: 33.3%;
}
.order-list .order-info {
  text-align: right;
}
.order-detail {
  background: #EFEFEF;
  font-weight: bold;
}
/* returns */
.return-list {
  margin-bottom: 10px;
}
.return-list .return-id {
  width: 49%;
  float: left;
  margin-bottom: 4px;
  font-weight: bold;
  font-size: 14px;
}
.return-list .return-status {
  width: 49%;
  float: right;
  text-align: right;
  margin-bottom: 4px;
  font-weight: bold;
  font-size: 14px;
}
.return-list .return-content {
  padding: 10px 0px;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
.return-list .return-content div {
  float: left;
  width: 33.3%;
}
.return-list .return-info {
  text-align: right;
}
.return-product {
  width: 100% !important;
  overflow: auto;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.return-product p {
  width: 31%;
  float: left;
  margin-bottom: 0;
}
.return-product label {
  width: 50px !important;
}
.return-name {
  margin-right: 15px;
}
.return-model {
  margin-right: 15px;
}
.return-detail {
  overflow: auto;
  margin-bottom: 20px;
}
.return-reason {
  float: left;
  width: 31%;
  margin-right: 15px;
}
.return-opened {
  float: left;
  width: 31%;
  margin-right: 15px;
}
.return-opened textarea {
  width: 98%;
  vertical-align: top;
}
.return-captcha {
  float: left;
}
.download-list {
  margin-bottom: 10px;
}
.download-list .download-id {
  width: 49%;
  float: left;
  margin-bottom: 2px;
}
.download-list .download-status {
  width: 49%;
  float: right;
  text-align: right;
  margin-bottom: 2px;
}
.download-list .download-content {
  padding: 10px 0px;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
.download-list .download-content div {
  float: left;
  width: 33.3%;
}
.download-list .download-info {
  text-align: right;
}
/* @end */
/* @group table list */
table.list {
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #E5E5E5;
  border-left: 1px solid #E5E5E5;
  margin-bottom: 16px;
}
table.list td {
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}
table.list thead td {
  background: #eeeeee;
  padding: 0px 6px;
  text-transform: uppercase;
}
table.list thead td a,
.list thead td {
  text-decoration: none;
  color: #222;
}
table.list tbody td {
  vertical-align: top;
  padding: 0px 5px;
}
table.list .left {
  float: none;
  text-align: left;
  padding: 7px;
}
table.list .right {
  float: none;
  text-align: right;
  padding: 7px;
}
table.list .center {
  text-align: center;
  padding: 7px;
}
table.radio {
  width: 100%;
  border-collapse: collapse;
}
table.radio td {
  padding: 5px;
  vertical-align: middle;
}
table.radio tr td:first-child {
  width: 1px;
}
table.radio tr.highlight:hover td {
  background: #F1FFDD;
  cursor: pointer;
}
table.radio label {
  width: 100%;
  height: 15px;
  display: inline-block;
}
/* @end */
/* @group notifications */
.notification {
  color: #000;
}
.warning {
  background: #ffdeea;
  padding: 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-align: center;
}
.success {
  background: #daf4d7;
  padding: 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-align: center;
}
.error {
  color: #fc0000;
}
/* @end */
/* @group info popup */
#infopopup {
  width: 550px;
  padding: 15px;
  background: #fff;
  max-height: 550px;
}
#infopopup h1 {
  font-size: 20px;
}
#infopopup p {
  line-height: 1.4em;
  margin: 10px 0;
}
/* @end */
/* @group contact */
.outermap {
  margin-top: 10px;
  padding: 3px;
  border: 1px solid #ddd;
}
.gmap {
  height: 340px;
}
.gmap img {
  max-width: none;
}
.std {
  margin-top: 15px;
}
.std p {
  margin: 0 0 5px 0;
}
.std p.divider {
  margin-bottom: 25px;
}
.std label {
  display: block;
  width: 20%;
  float: left;
  margin-right: 10px;
  line-height: 32px;
}
.std input.txt,
.std textarea {
  width: 75%;
  padding: 7px 5px;
  border: none;
  background: #f4f4f4;
  border: 1px solid #eee;
}
.std textarea {
  height: 150px;
}
.std select {
  width: 77%;
}
.std .loader {
  margin-top: 20px;
}
form .loader {
  display: inline-block;
  width: 100%;
  text-align: right;
}
form p.loading {
  background: url(../de_img/loader.gif) 5px center no-repeat;
}
/* infield labels */
form.infield p.inlabel {
  position: relative;
  margin: 10px 0;
}
form.infield p.inlabel label {
  position: absolute;
  top: 0;
  left: 10px;
  color: #333;
  line-height: 34px;
}
form.infield p.inlabel br {
  display: none;
}
/* @end */
/* @group inline alerts */
#inline_alert {
  min-height: 150px;
  min-width: 400px;
  max-width: 500px;
  padding: 0 10px 20px;
  margin-bottom: 2px;
  margin-top: 5px;
  line-height: 1.6em;
  color: #555;
}
#inline_alert h4 {
  font-size: 24px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 15px;
}
/* @end */
/* @group infonav */
.infonav {
  width: 175px;
  float: left;
}
.infonav a {
  display: block;
  font-family: titillium, arial;
  font-size: 18px;
  line-height: 1.5em;
}
.infonav a.active {
  color: #000;
}
/* @end */
/* @group footer */
.footer {
  clear: both;
  background: #fdaa1f;
  padding-top: 10px;
}
.footer .container {
  padding: 25px 0 10px;
}
.footer .row {
  overflow: hidden;
}
.footer .row > div {
  margin-bottom: 30px;
}
.footer .footline {
  height: 30px;
  border-top: 1px solid #bbb;
}
.footer h3 {
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 10px 0;
  color: #000;
}
.footer p {
  color: #fff;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #ee7600;
}
.credits {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  border-top: 1px solid #eee;
  padding-top: 5px;
  margin-top: 20px;
}
/* @end */
/* @group ScrollToTop */
.scrollToTop {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 50px;
  display: none;
  background: #e37b00 url('../de_img/arrow_up.png') center center no-repeat;
  border: 2px solid #fff;
}
.scrollToTop:hover {
  text-decoration: none;
}
/* @end */
/* @group tiptip */
/* TipTip CSS - Version 1.2 */
#tiptip_holder {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
}
#tiptip_holder.tip_top {
  padding-bottom: 5px;
}
#tiptip_holder.tip_bottom {
  padding-top: 5px;
}
#tiptip_holder.tip_right {
  padding-left: 5px;
}
#tiptip_holder.tip_left {
  padding-right: 5px;
}
#tiptip_content {
  font-size: 11px;
  color: #fff;
  text-shadow: 0 0 2px #000;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: #191919;
  background-color: rgba(25, 25, 25, 0.92);
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#tiptip_arrow,
#tiptip_arrow_inner {
  position: absolute;
  border-color: transparent;
  border-style: solid;
  border-width: 6px;
  height: 0;
  width: 0;
}
#tiptip_holder.tip_top #tiptip_arrow {
  border-top-color: #fff;
  border-top-color: rgba(255, 255, 255, 0.35);
}
#tiptip_holder.tip_bottom #tiptip_arrow {
  border-bottom-color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}
#tiptip_holder.tip_right #tiptip_arrow {
  border-right-color: #fff;
  border-right-color: rgba(255, 255, 255, 0.35);
}
#tiptip_holder.tip_left #tiptip_arrow {
  border-left-color: #fff;
  border-left-color: rgba(255, 255, 255, 0.35);
}
#tiptip_holder.tip_top #tiptip_arrow_inner {
  margin-top: -7px;
  margin-left: -6px;
  border-top-color: #191919;
  border-top-color: rgba(25, 25, 25, 0.92);
}
#tiptip_holder.tip_bottom #tiptip_arrow_inner {
  margin-top: -5px;
  margin-left: -6px;
  border-bottom-color: #191919;
  border-bottom-color: rgba(25, 25, 25, 0.92);
}
#tiptip_holder.tip_right #tiptip_arrow_inner {
  margin-top: -6px;
  margin-left: -5px;
  border-right-color: #191919;
  border-right-color: rgba(25, 25, 25, 0.92);
}
#tiptip_holder.tip_left #tiptip_arrow_inner {
  margin-top: -6px;
  margin-left: -7px;
  border-left-color: #191919;
  border-left-color: rgba(25, 25, 25, 0.92);
}
/* Webkit Hacks  */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  #tiptip_content {
    padding: 4px 8px 5px 8px;
    background-color: rgba(45, 45, 45, 0.88);
  }
  #tiptip_holder.tip_bottom #tiptip_arrow_inner {
    border-bottom-color: rgba(45, 45, 45, 0.88);
  }
  #tiptip_holder.tip_top #tiptip_arrow_inner {
    border-top-color: rgba(20, 20, 20, 0.92);
  }
}
/* @end */
/* @group uniform */
/*

Uniform Theme: Uniform Default
Version: 1.6
By: Josh Pyles
License: MIT License
---
For use with the Uniform plugin:
http://pixelmatrixdesign.com/uniform/
---
Generated by Uniform Theme Generator:
http://pixelmatrixdesign.com/uniform/themer.html

*/
/* Global Declaration */
div.selector,
div.selector span,
div.checker span,
div.radio span {
  background-image: url(uniform/sprite.png);
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
}
.selector,
.radio,
.checker,
.selector *,
.radio *,
.checker * {
  margin: 0;
  padding: 0;
}
/* INPUT & TEXTAREA */
input.text,
input.email,
input.password,
textarea.uniform {
  font-size: 12px;
  font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  padding: 3px;
  color: #777;
  background: url('uniform/bg-input-focus.png') repeat-x 0px 0px;
  background: url('uniform/bg-input.png') repeat-x 0px 0px;
  border-top: solid 1px #aaa;
  border-left: solid 1px #aaa;
  border-bottom: solid 1px #ccc;
  border-right: solid 1px #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  outline: 0;
}
input.text:focus,
input.email:focus,
input.password:focus,
textarea.uniform:focus {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  border-color: #999;
  background: url('uniform/bg-input-focus.png') repeat-x 0px 0px;
}
/* SPRITES */
/* Select */
div.selector {
  background-position: -483px -130px;
  line-height: 26px;
  height: 26px;
}
div.selector span {
  background-position: right 0px;
  height: 26px;
  line-height: 26px;
}
div.selector select {
  /* change these to adjust positioning of select element */
  top: 0px;
  left: 0px;
}
div.selector:active,
div.selector.active {
  background-position: -483px -156px;
}
div.selector:active span,
div.selector.active span {
  background-position: right -26px;
}
div.selector.focus,
div.selector.hover,
div.selector:hover {
  background-position: -483px -182px;
}
div.selector.focus span,
div.selector.hover span,
div.selector:hover span {
  background-position: right -52px;
}
div.selector.focus:active,
div.selector.focus.active,
div.selector:hover:active,
div.selector.active:hover {
  background-position: -483px -208px;
}
div.selector.focus:active span,
div.selector:hover:active span,
div.selector.active:hover span,
div.selector.focus.active span {
  background-position: right -78px;
}
div.selector.disabled {
  background-position: -483px -234px;
}
div.selector.disabled span {
  background-position: right -104px;
}
/* PRESENTATION */
/* Select */
div.selector {
  width: 190px;
  font-size: 12px;
}
div.selector select {
  min-width: 190px;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 12px;
  border: solid 1px #fff;
}
div.selector span {
  padding: 0px 25px 0px 2px;
  cursor: pointer;
}
div.selector span {
  color: #666;
  width: 158px;
  text-shadow: 0 1px 0 #fff;
}
div.selector.disabled span {
  color: #bbb;
}
/* Checker */
div.checker {
  margin-right: 5px;
}
/* Radio */
div.radio {
  margin-right: 3px;
}
/*

CORE FUNCTIONALITY 

Not advised to edit stuff below this line
-----------------------------------------------------
*/
.selector,
.checker,
.radio {
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: middle;
  zoom: 1;
  *display: inline;
}
.selector select:focus,
.radio input:focus,
.checker input:focus,
.uploader input:focus {
  outline: 0;
}
/* Select */
div.selector {
  position: relative;
  padding-left: 10px;
  overflow: hidden;
}
div.selector span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
div.selector select {
  position: absolute;
  opacity: 0;
  height: 25px;
  border: none;
  background: none;
}
/* @end */
/* @group jSlider */
.jslider .jslider-bg i,
.jslider .jslider-pointer {
  background: url(../de_js/slider/jslider.png) no-repeat 0 0;
}
.jslider {
  display: block;
  width: 100%;
  height: 1em;
  position: relative;
  top: 0.6em;
  font-family: Arial, sans-serif;
  margin: 20px 0 10px;
}
.jslider table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
}
.jslider td,
.jslider th {
  padding: 0;
  vertical-align: top;
  text-align: left;
  border: 0;
}
.jslider table,
.jslider table tr,
.jslider table tr td {
  width: 100%;
  vertical-align: top;
}
.jslider .jslider-bg {
  position: relative;
}
.jslider .jslider-bg i {
  height: 8px;
  position: absolute;
  font-size: 0;
  top: 0;
}
.jslider .jslider-bg .l {
  width: 50%;
  background-position: 0 0;
  left: 0;
}
.jslider .jslider-bg .r {
  width: 50%;
  left: 50%;
  background-position: right 0;
}
.jslider .jslider-bg .v {
  position: absolute;
  width: 60%;
  left: 20%;
  top: 0;
  height: 8px;
  background-position: 0 -20px;
}
.jslider .jslider-pointer {
  width: 18px;
  height: 18px;
  background-position: 0 -40px;
  position: absolute;
  left: 20%;
  top: -7px;
  margin-left: -8px;
  cursor: pointer;
  cursor: hand;
}
.jslider .jslider-pointer-hover {
  background-position: -20px -40px;
}
.jslider .jslider-pointer-to {
  left: 80%;
}
.jslider .jslider-label {
  font-size: 12px;
  line-height: 16px;
  color: black;
  opacity: 0.6;
  white-space: nowrap;
  padding: 0px 2px;
  position: absolute;
  top: -25px;
  left: 0px;
}
.jslider .jslider-label-to {
  left: auto;
  right: 0;
}
.jslider .jslider-value {
  font-size: 12px;
  white-space: nowrap;
  padding: 1px 5px 0;
  position: absolute;
  top: -25px;
  left: 20%;
  line-height: 16px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  background: #333;
  color: #fff;
}
.jslider .jslider-value-to {
  left: 80%;
}
.jslider .jslider-label small,
.jslider .jslider-value small {
  position: relative;
  top: -0.4em;
}
.jslider .jslider-scale {
  position: relative;
  top: 9px;
}
.jslider .jslider-scale span {
  position: absolute;
  height: 5px;
  border-left: 1px solid #999;
  font-size: 0;
}
.jslider .jslider-scale ins {
  font-size: 12px;
  text-decoration: none;
  position: absolute;
  left: 0px;
  top: 5px;
  color: #999;
}
.jslider-single .jslider-pointer-to,
.jslider-single .jslider-value-to,
.jslider-single .jslider-bg .v,
.jslider-limitless .jslider-label {
  display: none;
}
/* @end */
/* @group notification bar */
.jquery-notify-bar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #777;
  font-size: 14px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 16px 0px;
  cursor: pointer;
  opacity: 0.95;
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.jquery-notify-bar a {
  color: #fff !important;
}
.jquery-notify-bar.error {
  color: #f00;
  background-color: #fdd;
}
.jquery-notify-bar.success {
  color: #060;
  background-color: #BBFFB6;
}
.notify-bar-close {
  position: absolute;
  left: 95%;
  font-size: 11px;
}
/* @end */
/* @group FONTELLO */
@font-face {
  font-family: 'fontello';
  src: url('../de_fonts/fontello.eot?47458876');
  src: url('../de_fonts/fontello.eot?47458876#iefix') format('embedded-opentype'), url('../de_fonts/fontello.woff2?47458876') format('woff2'), url('../de_fonts/fontello.woff?47458876') format('woff'), url('../de_fonts/fontello.ttf?47458876') format('truetype'), url('../de_fonts/fontello.svg?47458876#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?47458876#fontello') format('svg');
  }
}
*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-home:before {
  content: '\e800';
}
/* '' */
.icon-home-1:before {
  content: '\e801';
}
/* '' */
.icon-right-open-big:before {
  content: '\e802';
}
/* '' */
.icon-left-open-big:before {
  content: '\e803';
}
/* '' */
.icon-down-open-big:before {
  content: '\e804';
}
/* '' */
.icon-up-open-big:before {
  content: '\e805';
}
/* '' */
.icon-down-open-1:before {
  content: '\e806';
}
/* '' */
.icon-left-open-1:before {
  content: '\e807';
}
/* '' */
.icon-right-open-1:before {
  content: '\e808';
}
/* '' */
.icon-up-open-1:before {
  content: '\e809';
}
/* '' */
.icon-down-open:before {
  content: '\f004';
}
/* '' */
.icon-up-open:before {
  content: '\f005';
}
/* '' */
.icon-right-open:before {
  content: '\f006';
}
/* '' */
.icon-left-open:before {
  content: '\f007';
}
/* '' */
/* @end */
/*# sourceMappingURL=screen.css.map */