/**
 * General styling and reset of elements
 * Alot taken from the great normalize.css project: https://github.com/necolas/normalize.css
 *
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

* {
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@-ms-viewport{ width: device-width; }

body {
    line-height: 1.2em;
    font-size: 12px;
    font-family: Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #f0f0f0;
}

body.comic-sans {
    font-family: 'Comic Sans', 'Comic Sans MS', 'Chalkboard', 'ChalkboardSE-Regular', 'Marker Felt', 'Purisa', 'URW Chancery L', cursive, sans-serif;
}
/*
body #gmOverlayDialog,
body > div.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-draggable.ui-resizable[role="dialog"] * {
    background: green url(../images/main/panda.png) repeat scroll 0 0 !important;
}
*/
/* wysiwyg override */
body.neo-content {
    background-color: #fff;
    background-image: none !important;
}

#spring-tp,
#unispring-tp {
    position: absolute;
    top: -9999px;
}

button, input {
    line-height: 1;
    font: inherit;
    -webkit-border-radius:0; 
    border-radius:0; 
}

button, input[type=button] {
    cursor: pointer;
    -webkit-appearance: button;
    *overflow: visible; 
    -webkit-user-select: none;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic; 
}

a {
    color: #333;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}

button[disabled],
input[disabled] {
    cursor: default;
}

:-moz-placeholder {
    color: #aaa;
}

::-webkit-input-placeholder {
    color: #aaa;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
    padding: 4px 6px;
    border: 1px solid #ccc;
    height: 28px;
    font-size: 14px;
    line-height: 20px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;;
    -ms-transition: border linear 0.2s, box-shadow linear 0.2s;;
    transition: border linear 0.2s, box-shadow linear 0.2s;;
    color: #555;
}

select:focus, textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus {
    border-color: #999;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(0,0,0,0.3);
}

select:focus,
input:focus,
textarea:focus {
    outline: 0;
}

textarea {
    font-family: "Helvetica Bold", Arial, Verdana, sans-serif;
    overflow: auto;
    vertical-align: top; 
    height: auto;
}

textarea:focus {
    outline: none;
}

:-moz-placeholder {
    color: #888;
}
::-moz-placeholder {
    color: #888;
}
:-ms-input-placeholder {
    color: #888;
}
::-webkit-input-placeholder {
    color: #888;
}


/* Buttons */

.button {
    display: inline-block;
    padding: 4px 12px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    color: #ffffff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
    background-repeat: repeat-x;
    background-color: #202020;
    background-image: -o-linear-gradient(#4F4F4F, #202020);
    background-image: -moz-linear-gradient(#4F4F4F, #202020);
    background-image: -webkit-linear-gradient(#4F4F4F, #202020);
    background-image: -ms-linear-gradient(#4F4F4F, #202020);
    background-image: linear-gradient(#4F4F4F, #202020);
    border-color: #4F4F4F, #4F4F4F, #202020;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.button[disabled],
.button.disabled {
    cursor: default;
    opacity: 0.5;
}

.no-touch .button:hover,
.button:focus,
.button[disabled],
.button.pressed {
    color: #ffffff;
    background-position: 0 -15px;
    -webkit-transition: background-position 0.1s linear;
    -moz-transition: background-position 0.1s linear;
    -ms-transition: background-position 0.1s linear;
    -o-transition: background-position 0.1s linear;
    transition: background-position 0.1s linear;
}

a.button:not(.button-plain):not(.button-yellow):visited {
    color: #ffffff !important;
}

.button:active,
.button.pressed {
    outline: 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.button.button-plain {
    background-color: #e6e6e6;
    background-image: -moz-linear-gradient(top, #ffffff, #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;
    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-bottom-color: #b3b3b3;
    color: #333333 !important;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);  
}

.button.button-green {
    background-color: #82b620;
    background-image: -o-linear-gradient(#aad227, #82b620);
    background-image: -ms-linear-gradient(#aad227, #82b620);
    background-image: -moz-linear-gradient(#aad227, #82b620);
    background-image: -webkit-linear-gradient(#aad227, #82b620);
    background-image: linear-gradient(#aad227, #82b620);
    font-weight: 700;
}

.button.button-red {
    background-color: #b62020;
    background-image: -o-linear-gradient(#d22727, #b62020);
    background-image: -ms-linear-gradient(#d22727, #b62020);
    background-image: -moz-linear-gradient(#d22727, #b62020);
    background-image: -webkit-linear-gradient(#d22727, #b62020);
    background-image: linear-gradient(#d22727, #b62020);
    font-weight: 700;
}

.button.button-yellow {
    background-color: #fcc000;
    background-image: -o-linear-gradient(#ffd567, #fcc000);
    background-image: -ms-linear-gradient(#ffd567, #fcc000);
    background-image: -moz-linear-gradient(#ffd567, #fcc000);
    background-image: -webkit-linear-gradient(#ffd567, #fcc000);
    background-image: linear-gradient(#ffd567, #fcc000);
    color: #333333 !important;
    text-shadow: none;
}

.button.button-light-blue {
    background-color: #288dc3;
    background-image: -webkit-linear-gradient(#43a4d1, #288dc3);
    background-image: -moz-linear-gradient(#43a4d1, #288dc3);
    background-image: -ms-linear-gradient(#43a4d1, #288dc3);
    background-image: -o-linear-gradient(#43a4d1, #288dc3);
    background-image: linear-gradient(#43a4d1, #288dc3);
    font-weight: 700;
}

.button.button-facebook {
    background-color: #3b5998;
    background-image: -webkit-linear-gradient(#4D6EB3,#3b5998);
    background-image: -moz-linear-gradient(#4D6EB3,#3b5998);
    background-image: -ms-linear-gradient(#4D6EB3,#3b5998);
    background-image: -o-linear-gradient(#4D6EB3,#3b5998);
    background-image: linear-gradient(#4D6EB3,#3b5998);
    font-weight: 700;
}

.button.button-facebook .icon-facebook {
    font-size: 12px;
    margin-right: 3px;
}

.button > * {
    display: inline-block !important;
    vertical-align: middle !important;
}

.button.button-small {
    font-size: 12px;
    padding: 2px 10px;
}

.button.button-large {
    font-size: 18px;
    padding: 10px 15px;
}

/* Buttons groups */
.button-group .button {
    float: left;
    border-radius: 0px;
    border-left-width: 0px;
}
.button-group .button:first-child,
.button-group .button.first {
    border-left-width: 1px;
    border-radius: 4px 0 0 4px;
}
.button-group .button:last-child,
.button-group .button.last {
    border-radius: 0 4px 4px 0;
    border-left-width: 0px;
}

.button-group .button:first-child:last-child,
.button-group .button.first.last {
    border-left-width: 1px;
    border-radius: 4px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

#header input[type=search], #classifieds input[type=search] {
    padding: 7px;
    font-size: 12px;
    background: -webkit-linear-gradient(#E3E4E5, #FEFEFE);
    background: -moz-linear-gradient(#E3E4E5, #FEFEFE);
    background: -ms-linear-gradient(#E3E4E5, #FEFEFE);
    background: -o-linear-gradient(#E3E4E5, #FEFEFE);
    background: linear-gradient(#E3E4E5, #FEFEFE);
    -pie-background: linear-gradient(#E3E4E5, #FEFEFE);
    outline: none;
    border: 1px solid #ccc;
    border-right: 0;
    -webkit-appearance: textfield;
    width: 220px;
    height: 33px;
    position: relative;
    vertical-align: top;
    z-index: 1;
}

#header form[role=search] button, #classifieds form[role=search] button {
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .4);
    display: inline-block;
    border: 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size: 15px;
    line-height: 1;
    padding: 8px 10px;
    border: 1px solid #C13B1B;
    border-radius: 0 5px 5px 0;
    -webkit-transition: background .2s;
    -moz-transition: background .2s;
    -o-transition: background .2s;
    -ms-transition: background .2s;
    height: 33px;
    position: relative;
    z-index: 1;
}

.no-touch #header form[role=search] button:hover {
    background-image: none;
}

#header form[role=search] button:active {
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.3);
}

#header .touch-menu {
    display: none;
}

mark {
    background-color: transparent;
    color: inherit;
}

#main > h1, #main > .top-header,
.section-header {
    font-weight: normal;
    font-family: "Crete Round";
    font-size: 4.2em;
    line-height: 1.2em;
    margin-bottom: 12px;
}

#main > .top-header {
    font-weight: normal;
    letter-spacing: 1px;
    margin: -28px 0 21px;
    background-color: #333;
    color: white;
    text-align: right;
    font-size: 18px;
    position: relative;
    z-index: 1;
    padding: 0 5px 5px;
}

.has-header-image #main > .top-header {
    width: 1000px;
    margin: 0px 0px 0px -22px;
}

#main > .top-header.normal-font {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 0px;
}

#main > .top-header.align-left {
    text-align: left;
}

#main > .top-header a {
    text-align: left;
    text-decoration: none;
    display: block;
    color: white;
}

#main > .top-header > * {
    vertical-align: middle;
}

#main > .top-header a.button {
    margin-left: 10px;
    text-align: center;
    display: inline-block;
    text-decoration: none !important;
    padding: 0px 12px;
    font-size: 13px;
}

.no-touch #main > .top-header a:hover {
    text-decoration: underline;
}

#main > .top-header a * {
    display: inline-block;
}

#main > .top-header a img {
    margin-left: 5px;
}

#main .top-header .sc2-logo {
    position: absolute;
    left: 10px;
    top:-12px;
}

#main .top-header .gamer-sc2-logo {
    position: absolute;
    left: 10px;
    top: 0px;
}

#main .top-header .logitech-logo {
    position: absolute;
    right: 10px;
    top: -5px;
}

#main > .feed {
    margin-bottom: 22px;
}

#main > .feed header h2 {
    font-size: 4.2em;
    line-height: 1.2em;
}

/** 
 * Helper classes
 *
 */

.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }
.clear { clear: both; }
.clear-left { clear: left; }
.clear-right { clear: right; }

.align-top { vertical-align: top; }
.align-bottom { vertical-align: bottom; }
.align-middle { vertical-align: middle; }
.align-right { text-align: right; }
.align-left { text-align: left; }
.align-center { text-align: center; }
.align-content-top > * { display: inline-block; vertical-align: top; }
.align-content-bottom > * { display: inline-block; vertical-align: bottom; }
.align-content-middle > * { display: inline-block; vertical-align: middle; }
.align-content-middle > [class*="icon-"] { vertical-align: middle !important; }

.ir { border: 0; font: 0/0 a; text-shadow: none; color: transparent; background-color: transparent; }

.inline { display: inline; }
.inline-block { display: inline-block; *display: inline; *zoom: 1; }
.hide { display: none !important; }
.none { display: none; }
.block { display: block; }

.f-right { float: right; }
.f-left { float: left; }

.half-width { width: 50%; }
.full-width { width: 100%; float: none; }

.no-border { border: 0px none !important; }
.no-margin { margin: 0px !important; }
.no-padding { padding: 0px !important; }
.no-float { float: none !important; }
.no-clear { clear: none !important; }
.no-list-style { list-style-type: none; }

.disc { list-style-type: disc;}

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.pointer { cursor: pointer; }

.white, .white:hover, .white:visited { color: #fff !important; }
.black { color: #000; }
.main-color, .site-color { color: #333; }
.tek-success, .tek-plus, .tek-green { color: #548300; }
.tek-error, .tek-minus, .tek-red { color: #AC2A2A; }

.main-background-color, .site-background-color { background-color: #333; }

.small-font { font-size: 0.8em; }
.normal-font { font-size: 1em; }
.medium-font { font-size: 1.2em; }
.large-font { font-size: 1.6em; }

.break-word { word-wrap: break-word; }
.nowrap { white-space: nowrap; }
.ellipsis { text-overflow: ellipsis; }

.italic { font-style: italic; }
.bold { font-weight: 700; }
.normal { font-weight: 400; }
.line-through { text-decoration: line-through; }
.underline { text-decoration: underline;}
.no-text-decoration { text-decoration: none; }
.uppercase { text-transform: uppercase; }
.underline-on-hover { text-decoration: none; }
.no-touch .underline-on-hover:hover { text-decoration: underline; }

.oswald { font-family: "Oswald", Helvetica, Arial; }
.crete-round { font-family: "Crete Round", Times, sans-serif; }
.open-sans { font-family: "Open Sans", Helvetica, Arial; }

.border-radius-medium { border-radius: 4px; }
.circle { border-radius: 50%; }

.overflow-hidden { overflow: hidden; }
.overflow-scroll { overflow:scroll; }
.overflow-auto { overflow: auto; }

.grayscale {
    filter: gray;
    -o-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Margins and containers */
.child-margin-medium>*:first-child {
    margin-top: 0;
}
.child-margin-medium>*:last-child {
    margin-bottom: 0;
}
.child-margin-medium>* {
    margin-top: 7px;
    margin-bottom: 7px;
}
.container-padding-medium {
    padding: 7px;
}
.container-margin-medium {
    margin: 7px;
}

.col-main-width.col-border-top > .next-page-wrap {
    margin: 0 26px 0 0;
}
.next-page-wrap {
    float: right;
    width: 200px;
    margin: 0 26px 0 0;
    position: relative;
}

.next-page {
    -webkit-backface-visibility: hidden;
    width: 200px;
    height: 169px;
    float: right;
    color: #fff;
    position: relative;
    background: -webkit-linear-gradient(left top, #C23B1B, #e44d18 50%);
    background: -moz-linear-gradient(left top, #C23B1B, #e44d18 50%);
    background: -ms-linear-gradient(left top, #C23B1B, #e44d18 50%);
    background: -o-linear-gradient(left top, #C23B1B, #e44d18 50%);
    background: linear-gradient(left top, #C23B1B, #e44d18 50%);
    -pie-background: linear-gradient(left top, #C23B1B, #e44d18 50%);
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -ms-transition: opacity .3s;
    -o-transition: opacity .3s;
}

.arrow-right:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 85px solid transparent;
    border-bottom: 85px solid transparent;
    border-left: 26px solid #e44d18;
    position: absolute;
    top: 0;
    right: -26px;
}

.arrow-left:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 85px solid transparent;
    border-bottom: 85px solid transparent;
    border-right: 26px solid #C23B1B;
    position: absolute;
    top: 0;
    left: -26px;
}

.no-touch .next-page:hover {
    color: #fff;
    opacity: .9;
}

.next-page span {
    float: right;
    clear: right; 
    text-transform: uppercase;
    font-family: Oswald;
}

.next-page .title {
    font-size: 3em;
    margin-top: .4em;
}

.next-page .num {
    font-size: 11em;
    margin-top: .5em;
}

.arrow-links {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 14px;
    pointer-events: none;
    width: 80px;
    list-style-type: none;
}

.arrow-links li {
    display: block;
    margin-bottom: 10px !important;
}

.arrow-links a {
    color: #fff !important;
    pointer-events: auto;
}

.no-touch .arrow-links a:hover {
    opacity: 0.4;
}

.article-type-59 .tek-tag {
    background: #000;
}

.tek-tag {
    color: #fff;
    text-decoration: none !important;
    font-family: Oswald, Helvetica, Times, sans-serif;
    text-transform: uppercase;
    padding: 4px;
    display: inline-block;
    font-size: 1.2em;
    height: 22px;
}

.preamble-one-fourth .tek-tag {
    padding-top: 2px;
    padding-bottom: 2px;
}

.tek-theme .tek-tag {
    padding: .5em .5em 0 .5em;
    margin-right: .3em;
    font-size: 1.7em;
    height: 33px;
}

.tek-theme {
    background-color: #333;
    clear: both;
    margin-bottom: 11px;
}

.tek-theme * {
    vertical-align: middle;
    display: inline-block;
}

.tek-theme,
.tek-theme a {
    color: #fff;
}

.no-touch .tek-theme a:hover {
    color: #ccc;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}



/* Prisguide button */

.pg-buy {
    font-family: Arial, Verdana, Tahoma, sans-serif;
    display: inline-block;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 3px;
    border: 1px solid #a57d27;
    color: #403110 !important;
    font-size: 12px;
    line-height: 1em;
    font-weight: bold;
    text-transform: uppercase;
    background: #ffbe34;
    background: -o-linear-gradient(#FDF1A7, #ffbe34);
    background: -moz-linear-gradient(#FDF1A7, #ffbe34);
    background: -webkit-linear-gradient(#FDF1A7, #ffbe34);
    background: -ms-linear-gradient(#FDF1A7, #ffbe34);
    background: linear-gradient(#FDF1A7, #ffbe34);
    -pie-background: linear-gradient(#FDF1A7, #ffbe34);
}

.pg-buy:hover {
    background: #FDF1A7;
    background: -o-linear-gradient(#FFF9B9, #EFD41D);
    background: -moz-linear-gradient(#FFF9B9, #EFD41D);
    background: -webkit-linear-gradient(#FFF9B9, #EFD41D);
    background: -ms-linear-gradient(#FFF9B9, #EFD41D);
    background: linear-gradient(#FFF9B9, #EFD41D);
    -pie-background: linear-gradient(#FFF9B9, #EFD41D);
}

.pg-buy:active {
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.3);
}

/* FONT AWESOME: http://fortawesome.github.com/Font-Awesome */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome/fontawesome-webfont.eot');
  src: url('../fonts/fontawesome/fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/fontawesome/fontawesome-webfont.woff') format('woff'),
    url('../fonts/fontawesome/fontawesome-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/*  Font Awesome styles
    ------------------------------------------------------- */
[class^="icon-"],
[class*=" icon-"] {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  display: inline;
  width: auto;
  height: auto;
  line-height: normal;
  vertical-align: baseline;
  background-image: none !important;
  background-position: 0% 0%;
  background-repeat: repeat;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  text-decoration: inherit;
  display: inline-block;
  speak: none;
}
/* makes sure icons active on rollover in links */
a [class^="icon-"],
a [class*=" icon-"] {
  display: inline-block;
}
/* makes the font 33% larger relative to the icon container */
.icon-large:before {
  vertical-align: -10%;
  font-size: 1.3333333333333333em;
}
.nav [class^="icon-"],
.nav [class*=" icon-"] {
  display: inline;
  /* keeps button heights with and without icons the same */
  line-height: .6em;
}
.nav [class^="icon-"].icon-spin,
.nav [class*=" icon-"].icon-spin {
  display: inline-block;
}
li [class^="icon-"],
li [class*=" icon-"] {
  display: inline-block;
  width: 1.25em;
  text-align: center;
}
li [class^="icon-"].icon-large,
li [class*=" icon-"].icon-large {
  /* increased font size for icon-large */

  width: 1.5625em;
}
ul.icons {
  list-style-type: none;
  text-indent: -0.75em;
}
ul.icons li [class^="icon-"],
ul.icons li [class*=" icon-"] {
  width: .75em;
}
.icon-border {
  border: solid 1px #eeeeee;
  padding: .2em .25em .15em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.icon-spin {
  display: inline-block;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% { -moz-transform: rotate(0deg); }
  100% { -moz-transform: rotate(359deg); }
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(359deg); }
}
@-o-keyframes spin {
  0% { -o-transform: rotate(0deg); }
  100% { -o-transform: rotate(359deg); }
}
@-ms-keyframes spin {
  0% { -ms-transform: rotate(0deg); }
  100% { -ms-transform: rotate(359deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(359deg); }
}

/*  Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
    readers do not read off random characters that represent icons */

.icon-map-marker:before { content: "\f041"; }
.icon-bars:before { content: "\f0c9";}
.icon-print:before { content: "\f02f"; }
.icon-priceguide:before { content: "\f02a"; }
.icon-external:before { content: "\f02d"; }
.icon-article:before { content: "\f054"; }
.icon-forum:before { content: "\f075"; }
.icon-test:before { content: "\f005"; }
.icon-guide:before { content: "\f05a"; }
.icon-globe:before {content: "\f0ac";}
.icon-recommendation:before {content: "\f046";}
.icon-reorder:before {content: "\f0c9";}
.icon-random:before {content: "\f074";}
.icon-thumbs-up:before {content: "\f087";}
.icon-thumbs-down:before {content: "\f088";}
.icon-star:before {content: "\f005";}
.icon-userreview:before {content: "\f005";}
.icon-facebook-sign:before {content: "\f082";}
.icon-facebook:before {content: "\f09a";}
.icon-twitter:before {content: "\f099";}
.icon-twitter-sign:before {content: "\f081";}
.icon-google-plus:before {content: "\f0d5";}
.icon-linkedin:before {content: "\f0e1";}
.icon-linkedin-square:before {content: "\f08c";}
.icon-check:before {content: "\f00c";}
.icon-check-square:before {content: "\f046";}
.icon-check-empty:before {content: "\f096";}
.icon-remove:before {content: "\f00d";}
.icon-remove-sign:before {content: "\f057";}
.icon-ban:before {content: "\f05e";}
.icon-asterisk:before {content: "\f069";}
.icon-plus:before {content: "\f067";}
.icon-plus-circle:before {content: "\f055";}
.icon-plus-sign-alt:before {content: "\f0fe";}
.icon-minus:before {content: "\f068";}
.icon-minus-circle:before {content: "\f056";}
.icon-play:before {content: "\f04b";}
.icon-play-circle:before {content: "\f01d";}
.icon-lock:before {content: "\f023";}
.icon-unlock:before {content: "\f09c";}
.icon-desktop:before {content: "\f108";}
.icon-tag:before {content: "\f02b";}
.icon-spinner:before {content: "\f110";}
.icon-question:before {content: "\f128";}
.icon-question-sign:before {content: "\f059";}
.icon-smile:before {content: "\f118";}
.icon-microphone:before {content: "\f130";}
.icon-film:before {content: "\f008";}
.icon-camera:before {content: "\f030";}
.icon-video-camera:before {content: "\f03d";}
.icon-comment:before {content: "\f075";}
.icon-expand:before {content: "\f065";}
.icon-arrow-right:before {content: "\f061";}
.icon-arrow-left:before {content: "\f060";}
.icon-arrow-up:before {content: "\f062";}
.icon-arrow-down:before {content: "\f063";}
.icon-arrows:before {content: "\f047";}
.icon-arrows-v:before {content: "\f07d";}
.icon-arrows-alt:before {content: "\f0b2";}
.icon-warning-sign:before {content: "\f071";}
.icon-gamepad:before {content: "\f11b";}
.icon-table:before {content: "\f0ce";}
.icon-picture:before {content: "\f03e";}
.icon-info:before {content: "\f129";}
.icon-trophy:before {content: "\f091";}
.icon-group:before {content: "\f0c0";}
.icon-edit:before {content: "\f044";}
.icon-pencil:before {content: "\f040";}
.icon-wrench:before {content: "\f0ad";}
.icon-comments-alt:before {content: "\f0e6";}
.icon-envelope:before {content: "\f0e0";}
.icon-envelope-alt:before {content: "\f003";}
.icon-home:before {content: "\f015";}
.icon-heart:before {content: "\f004";}
.icon-ok:before {content: "\f00c";}
.icon-user:before {content: "\f007";}
.icon-file-text:before {content: "\f15c";}
.icon-file-text-alt:before {content: "\f0f6";}
.icon-align-left:before {content: "\f036";}
.icon-align-justify:before {content: "\f039";}
.icon-sitemap:before {content: "\f0e8";}
.icon-certificate:before {content: "\f0a3";}
.icon-gear:before {content: "\f013";}
.icon-warning:before {content: "\f071";}
.icon-upload:before {content: "\f093";}
.icon-download:before {content: "\f019";}
.icon-sort:before {content: "\f0dc";}
.icon-list-ol:before {content: "\f0cb";}
.icon-shopping-cart:before { content: "\f07a";}
.icon-star-o:before {content: "\f006";}
.icon-circle:before {content: "\f111";}
.icon-sort-asc:before {content: "\f0dd";}
.icon-trash:before {content: "\f014";}
.icon-exclamation-circle:before {content: "\f06a";}
.icon-th-large:before {content: "\f009";}
.icon-tek-logo:before {content: "\f011";}
.icon-square:before {content: "\f0c8";}
.icon-clock:before {content: "\f017";}
.icon-caret-right:before {content: "\f0da";}
.icon-caret-left:before {content: "\f0d9";}
.icon-caret-down:before {content: "\f0d7"}
.icon-caret-up:before {content: "\f0d8";}
.icon-search:before {content: "\f002";}
.icon-search-plus:before {content: "\f00e";}
.icon-level-down:before {content: "\f149";}
.icon-level-up:before {content: "\f148";}
.icon-money:before {content: "\f0d6";}
.icon-dollar:before {content: "\f155";}
.icon-steam:before {content: "\f1b6";}
.icon-steam-square:before {content: "\f1b7";}
.icon-toggle-left:before {content: "\f191";}
.icon-toggle-right:before {content: "\f152";}
.icon-ellipsis-v:before {content: "\f142";}
.icon-calendar:before {content: "\f133";}
.icon-save:before {content: "\f0c7";}
.icon-refresh:before {content: "\f021";}
.icon-signal:before {content: "\f012";}
.icon-mobile:before {content: "\f10b";}
.icon-sliders:before {content: "\f1de";}
.icon-bar-chart:before {content: "\f080";}

[data-tek-tooltip] {
    position: relative;
}

[data-tek-tooltip]:hover:after {
    content: attr(data-tek-tooltip);
    font-family: Arial, sans-serif;
    position: absolute;
    color: #fff;
    background-color: rgba(0,0,0,.8);
    font-size: 14px;
    padding: 0 6px;
    white-space: nowrap;
    left: 100%;
    top: 0px;
    bottom: 0px;
    font-size: 12px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    z-index: 1;
}

/**
 * Main containers
 *
 */

/* WRAPPER */
#wrapper {
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding: 0 22px;
    width: 1000px;
    margin: auto;
}

.container {
    width: 1220px;
    margin: auto;
    position: relative;
}


/* HEADER */
#header {
    border-bottom: 11px solid #333;
    margin-bottom: 22px;
    padding-bottom: 4px;
    position: relative;
}

#header .fb-like {
    position: absolute;
    top: 50px;
    right: 278px;
    opacity: 0;
    z-index: 4;
}

#header .fb-like[fb-xfbml-state="rendered"] {
    opacity: 1;
    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
    -ms-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s;
}

.surround > .tek-nav {
    display: none;
}

#wrapper .tek-nav .forsiden {
    display: none !important;
}

.tek-nav-toggle {
    display: none;
}

.top-nav {
    display: none;
}

.tek-nav {
    background-color: #333;
    height: 33px;
    margin: 0 -22px 11px;
}

.tek-nav-toggle {
    display: none;
}

.tek-nav ul {
    float: left;
    cursor: default;
    padding: 5px 17px;
    text-transform: uppercase;
    font-family: "Oswald", Arial;
    font-size: 1.2em; 
    list-style: none;
}

.no-fontface .tek-nav ul {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: normal;
    letter-spacing: 0;
    font-size: 1em;
}

.tek-nav li {
    float: left;
    z-index: 3;
    position: relative;
    border-right: 1px solid #777;
    padding: .3em .5em .3em .5em;
}

.tilpass {
    display: none !important;
}

.tek-nav .tek_no {
    position: relative;
    padding-left: 19px;
}

.tek-nav .tek_no a:before {
    content: "";
    top: 1px;
    left: 0;
    position: absolute;
    background: url(../images/main/tek-logo-nav.png) no-repeat -38px;
    display: inline-block;
    height: 19px;
    width: 15px;
}

.tek-nav li:last-child {
    border: none !important;
}

.tek-nav a {
    color: #fff;
    line-height: 1em;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    opacity: .6;
    text-decoration: none;
}

.tek-nav li > a:hover,
.tek-nav .selected > a {
    color: #fff;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#header .tek-nav[role=navigation] li.forside {
    display: none !important;
}

.tek-nav[role=navigation] {
    border-right: 1px solid #ccc;
    font-size: 1.9em;
    background: none;
    margin: 0;
    bottom: 3px;
    right: 0;
    position: absolute;
}

.tek-nav[role=navigation] ul {
    padding: 0;
}

.tek-nav[role=navigation] li {
    display: inline-block;
    position: relative;
    border-right: 1px solid #ccc;
    padding: .2em .4em .1em .4em;
    font-size: 22px;
    margin-left: -.25em;
    float: none;
}

.tek-nav[role=navigation] .a-aa:after {
    position: absolute;
    bottom: -6px;
    left: 50%;
    content: "";
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #333;
}

.tek-nav[role=navigation] li:hover:after,
.tek-nav[role=navigation] li.selected:after {
    bottom: -5px;
    bottom: -3px;
}

.tek-nav[role=navigation] li > a {
    color: #333;
    letter-spacing: -.07em;
    word-spacing: 0.2em;
    line-height: 1.2em;
}


.tek-nav[role=navigation] .a-aa:after, 
.tek-nav[role=navigation] .a-aa:hover:after,
.tek-nav[role=navigation] .a-aa.selected:after {
    bottom: -4px;
    left: 38%;
}

.tek-nav[role=navigation] .a-aa a {
    font-size: .75em;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    top: -3px;
    position: relative;
}

.tek-nav .dropdown ul {
    position: absolute;
    background-color: #333;
    left: -6px;
    padding: 7px 2px 4px 2px;
    margin: 4px 0 0;
    border-radius: 0 0 5px 5px;
    font-size: 1em;
    display: none;
}

.no-touch .tek-nav .dropdown:hover ul {
    display: block !important;
}

.tek-nav .dropdown ul li {
    white-space: nowrap;
    border: 0;
}

.product-nav {
    margin: 0 0 0 -22px;
    width: 1000px;
    height: 35px;
    position: relative;
    background: #333;
}

.product-nav.fixed {
    position: fixed;
    top: 0px;
    z-index: 10;
}

.product-nav ul {
    margin: 0px auto;
    height: 35px;
    padding: 8px 12px;
}

.product-nav li {
    float: left;
    border-right: 1px solid #999;
    line-height: 1em;
    font-family: Oswald;
}

.product-nav li:last-child {
    border-right: 0px;
}

.product-nav li a {
    color: #aaa;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    padding: 2px 10px;
    display: block;
}

.product-nav li.selected a,
.product-nav li a:hover {
    color: #fff;
}

.product-nav li a > * {
    display: inline-block;
    vertical-align: middle;
}

.product-nav .platform {
    position: absolute;
    right: 22px;
    top: 6px;
    border: 1px solid #fff;
}

#header form[role=search] {
    float: right;
}

#header .main-site-logo {
    position: relative;
    float: left;
}

#header .main-site-logo span.domain-name {
    display: none;
}

#header .main-site-logo .hat{
    background-image: url(../images/main/santaHat.png);
    width: 50px;
    height: 67px;
    position: absolute;
    top: -1px;
    left: -20px;
    content: "";
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    -webkit-transition: -webkit-transform .5s;
    -moz-transition: -moz-transform .5s;
    -o-transition: -o-transform .5s;
}

#header .main-site-logo img {
    display: none;
}

#header .main-site-logo a {
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.has-header-image #header {
    padding: 0 22px 4px;
    width: 1000px;
    margin-left: -22px;
    margin-bottom: 0px;
}

.has-header-image #header .fb-like {
    right: 300px;
}

.has-header-image .tek-nav[role=navigation] {
    right: 22px;
}

/* Sitemap */
.site-map {
    display: none;
    color: #fff;
    position: absolute;
    top: 157px;
    left: 0;
    background: #333;
    background: -webkit-linear-gradient(#505050, #1F1F1F);
    background: -moz-linear-gradient(#505050, #1F1F1F);
    background: -ms-linear-gradient(#505050, #1F1F1F);
    background: -o-linear-gradient(#505050, #1F1F1F);
    background: linear-gradient(#505050, #1F1F1F);
    z-index: 4;
    width: 100%;
    padding: 10px 10px 20px;
    -webkit-transform: translateZ(0);
}

.site-map .col {
    width: 16.66666666666667%;
    padding: 6px;
    float: left;
}

.site-map .col h3 {
    border-bottom: 1px solid #5B636B;
    padding: 4px 0;
    margin-bottom: 10px;
}

.site-map .col ul {
    list-style: none;
}

.site-map .col li {
    margin-bottom: 4px;
}

.site-map a {
    color: #fff;
}

.site-map .col a:hover {
    text-decoration: none;
}

.site-map .site-map-close {
    top: 5px;
    right: 5px;
    position: absolute;
}


/* FOOTER */
footer[role=contentinfo] {
    background: url(../images/main/mediehusettek.png) no-repeat 100% 10px;
    background-size: 120px;
    margin-top: 33px;
    padding: 22px 0 66px;
    border-top: 3px solid #ddd;
    font-size: .9em;
    color: #666;
} 

footer[role=contentinfo] section {
    text-align: left;
    margin-bottom: 12px;
}

footer[role=contentinfo] ul {
    display: inline;
    margin-left: 4px;
}

footer[role=contentinfo] li {
    display: inline;
    margin-right: 6px;
}

footer[role=contentinfo] h4 {
    display: inline;
}

footer[role=contentinfo] p {
    margin-bottom: 3px;
}

footer[role=contentinfo] a {
    text-decoration: none;
    color: #666;
}

footer[role=contentinfo] a:hover {
    text-decoration: underline;
}

footer[role=contentinfo] .site-authors {
    background: #f5f5f5;
    padding: 22px;
    margin: 0 0 22px;
}

footer[role=contentinfo] .site-authors h4 {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

footer[role=contentinfo] .site-authors h4 a {
    float: right;
    margin-left: 10px;
}

footer[role=contentinfo] .site-authors > * {
    display: block;
    margin: 0 0 4px;
}

footer[role=contentinfo] .site-authors li.author-group {
    display: block;
    padding: 5px 0;
    font-weight: 700;
}

footer[role=contentinfo] .site-authors li.author-name {
    display: inline-block;
    width: 22%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}

footer[role=contentinfo] .site-authors li > * {
    display: inline-block;
    vertical-align: middle;
}

footer[role=contentinfo] .author-image {
    padding: 1px;
    border: 1px solid #ddd;
}

footer[role=contentinfo] .site-authors li:hover .author-image {
    border-color: #666;
}

footer[role=contentinfo] .author-image img {
    display: block;
}

footer[role=contentinfo] .site-info {
    font-size: 11px;
    line-height: 1.6em;
    border-bottom: 1px solid #ccc;
    padding-bottom: 12px;
}

footer[role=contentinfo] .site-info > div {
    margin-right: 22px;
}

/* ADS */

#wallpaper {
    background-position: 50% 0px;
    background-repeat: no-repeat;
    height: 1200px;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 100%;
}

.ad-placeholder {
    position: relative;
    display: inline-block;
}

.ad-col-right {
    position: absolute;
    right: -10px;
}

.ad-col-left {
    position: absolute;
    left: -10px;
}

.ad-sticky {
    top: 140px;
    z-index: 19;
    float: right;
    position: absolute;
}

.ad-col-left .ad-sticky {
    right: 0px;
    min-width: 50px;
}

.wallpaper .ad-sticky {
    top: 800px;
}

.ad-sticky.stick {
    position: fixed;
    top: 14px !important;
    right: auto; 
}

.ad-placeholder:after,
article.preamble.sponset-bilag:after,
.job-feed:after {
    content: "Annonse";
    position: absolute;
    top: -14px;
    left: 0;
    color: #ccc;
    text-transform: uppercase;
    font-size: .7em;
    letter-spacing: .2em;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.ad-promoted-job {
    line-height: 0;
}

body.has-access .job-feed:after {
    display: none;
}

.ad-placeholder.ad-label-vertical:after {
    top: 25px;
    left: auto;
    right: -33px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0)";
}

body > a,
.ad-1x1 {
    position: absolute;
    top: -1000px;
}

.asdfg {
    position: absolute !important;
    top: -100000px !important;
    left: -100000px !important;
    opacity: 0;
}

.tek-nav ul.ad-text {
    list-style-type: none;
    overflow: auto;
    padding: 0px;
    font-family: "Helvetica", "Arial", sans-serif;
    text-transform: none;
    text-align: right;
    float: right;
    padding-right: 22px;
    line-height: 33px;
    vertical-align: middle;
}

.tek-nav ul.ad-text li {
    font-size: 11px;
    display: inline-block;
    padding: 0 0 0 15px;
    color: #888;
    border: none;
}

.tek-nav ul.ad-text li a {
    opacity: 0.8;
}

.tek-nav ul.ad-text li a.shop-name {
    opacity: 1;
    font-weight: bold;
}

.col-border-top > .ad-placeholder {
    float: left;
}

.col-border-top.no-separator > .ad-placeholder {
    padding-left: 0;
}

.col-border-top > .ad-placeholder > div:after {
    left: 15px;
}

.col-border-top.no-separator > .ad-placeholder > div:after {
    left: 0;
}

.col-border-top > .ad-468x820 {
    margin-left: 10px !important;
}

.with-touch-ad {
    display: none;
}

.ad-468x100 {
    width: 468px;
    float: left;
    margin-right: 20px;
    margin-left: 11px;
}

.ad-300x250 {
    margin-right: 14px;
}

.top-right-preamble .ad-300x250 {
    margin: 0px;
}

#wrapper > .ad-468x100,
.surround > .ad-468x100,
#wrapper > .ad-468x120,
.surround > .ad-468x120 {
    display: none;
}

.ad-180x500 > div {
    overflow: hidden;
}

.retarded-ad {
    margin-left: -22px !important;
    width: 1000px !important;
}

.ad-1000x300 {
    margin-top: 16px;
}

.section-article .ad-1000x300 {
    margin-bottom: 22px;
    margin-top: -50px;
}

.ad-1000x300:after,
.ad-1000x120:after {
    left: 10px;
}

.surround > a img {
    display: block;
    margin: 0;
    height: 0px;
}

.ad-top-ad {
    width: 1000px;
    height: 300px;
    max-height: 300px;
    margin: 0 auto 0;
    line-height: 1px;
    z-index: 1;
    display: block;
    text-align: center;
    vertical-align: bottom;
    position: relative;
}

.ad-top-ad > * {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    text-align: center;
    vertical-align: bottom;
}

.ad-top-ad > iframe:first-of-type, 
.ad-top-ad > img:first-of-type, .ad-top-ad > object:first-of-type,
.ad-top-ad > embed:first-of-type, .ad-top-ad > a:first-of-type img {
    display: block;
    margin: 0 auto !important;
}

.wallpaper .ad-top-ad.ad-placeholder.ad-label-vertical:after {
    display: none;
}

.ad-ticker {
    color: #fff;
    text-align: center;
    line-height: 0px;
}

.ad-ticker.fixed {
    z-index: 5000;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100% !important;
    background: #333;
    background: rgba(0,0,0,0.5);
}

.ad-ticker .ad-frame {
    margin: 0 auto;
}

.ad-ticker.ad-placeholder:after {
    top: -2px;
}

.ad-ticker .hide-ticker {
    position: absolute;
    right: 10px;
    top: -10px;
    background: #333;
    background: rgba(0,0,0,0.8);
    box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
    width: 20px;
    height: 20px;
    border-radius: 10px;
    border: 1px solid #fff;
    display: block;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    padding: 2px 3px;
    line-height: 1.2em;
    z-index: 5001;
}

/* Pagination */

section .pagination {
    line-height: 15px;
    font-size: 12px;
    padding: 3px 0;
    border-top: 1px dotted #bbb;
    border-bottom: 1px dotted #bbb;
    margin-bottom: 22px;
}

section .pagination > li {
    list-style: none;
    font-weight: bold;
    float: left;
    padding: 6px 4px;
    margin: 0 10px 0 0;
}

section .pagination a {
    font-weight: normal;
}

section .pagination .selected {
    background-color: #333;
}

section .pagination .selected,
section .pagination .selected a {
    text-decoration: none;
    color: #fff;
}


/* Sponsored product */
.sponsored-product {
    float: left;
    width: 300px;
    height: 300px;
    background: #e6e6e6;
    margin: 0 0 0 14px;
    padding: 30px;
    text-align: center;
    border-radius: 150px;
}

.sponsored-product h3 {
    font-family: "Crete Round", Times, sans-serif;
    font-size: 1.75em;
    font-weight: 400;
    line-height: 1em;
    margin: 0 0 15px 0;
}

.sponsored-product h4 {
    font-size: 15px;
    margin: 15px 10px;
}

.sponsored-product p {
    font-size: .8em;
    margin: 0 25px;
}

/* COLUMNS */
.col-main-width {
    margin-bottom: 22px;
    clear: both;
}

.col-half-width {
    float: left;
    width: 50%;
}

.col-half-width > .col-border-top,
.col-half-width > .col-border-top:last-child {
    margin-right: 12px;
}

.col-main-width .col-main-width:last-child {
    margin-bottom: 0px;
}

.col-half-width .preamble {
    margin-bottom: 22px;
}

.col-one-third {
    float: left;
    width: 33.33333333333333%;
}

.col-two-thirds {
    float: left;
    width: 66.66666666666667%;
}

.col-two-thirds > .col-border-top {
    margin-right: 9px;
}

.col-third-width {
    float: left;
    width: 33.3%;
}

.col-border-top {
    border-top: 1px solid #ddd;
    padding-top: 22px;
}

.col-border-top > * {
    position: relative;
}

.col-border-top > *:before {
    content: "";
    height: 45px;
    border-left: 1px solid #ddd;
    top: -22px;
    right: -5%;
    position: absolute;
}

.col-border-top > .col-two-thirds:before {
    right: -1%;
}

.col-two-thirds.col-border-top > .no-border:before {
    right: -14px;
}

.col-border-top.col-article-comments > .article-comments:before {
    display: block !important;
    right: -14px;
}

.col-border-top.col-article-comments #comments,
.col-border-top.col-article-comments #related {
    padding-bottom: 10px;
    margin-bottom: 22px;
    border-bottom: 1px solid #ddd;
}

.col-border-top.no-separator > *:before, 
.col-border-top > .last-child:before {
    display: none !important;
}

.col-border-top > :last-child:before {
    display: none !important;
}

.col-border-top > .feed:first-child {
    margin: 0 14px 0 0;
}

.col-border-top > .feed:last-child {
    margin: 0 0 0 14px;
}

.col-border-top > :first-child {
    margin-left: 0;
}

.col-border-top > :last-child {
    margin-right: 0;
}

/* Aside columns */

.aside-one-third {
    float: left;
    width: 315px;
    padding: 0 0 0 14px;
    border-left: 1px solid #ddd;
    position: relative;
}

.aside-one-third.aside-left-side {
    padding: 0 14px 0 0;
    border-left: 0px;
    border-right: 1px solid #ddd;
}

.aside-one-third > * {
    position: relative;
    margin-top: 30px;
    margin-bottom: 33px;
    float: left;
    clear: both;
}

.aside-one-third > *:before {
    content: "";
    width: 45px;
    border-top: 1px solid #ddd;
    position: absolute;
    top: -30px;
    left: -14px;
}

.aside-one-third.aside-left-side > *:before {
    left: auto;
    right: -14px;
}

.aside-one-third header {
    margin-bottom: 37px;
}

.aside-one-third header h3 {
    font: normal 32px/1em "Crete Round", Times, sans-serif;
    margin-bottom: 10px;
}


/* LOGIN */

.tek-nav .login {
    display: inline-block;
    color: #fff;
    float: right;
    margin: 0 22px 0 0;
    padding: 0px;
    position: relative;
    line-height: 33px;
    vertical-align: middle;
}

.login > a,
.login .not-loggedin a,
.tek-nav .settings-button {
    margin-left: 5px;
    display: inline-block;
    background: #97BD00;
    background: -o-linear-gradient(#97BD00, #708C00);
    background: -webkit-linear-gradient(#97BD00, #708C00);
    background: -moz-linear-gradient(#97BD00, #708C00);
    background: linear-gradient(#97BD00, #708C00);
    -pie-background: linear-gradient(#97BD00, #708C00);
    color: white;
    text-decoration: none;
    padding: 5px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.login > a:hover,
.login .not-loggedin a:hover,
.tek-nav .settings-button:hover {
    color: #eee;
}

.tek-nav .settings-button {
    float: right;
    margin: 5px 10px 0 0;
}

.login .open-user-menu {
    min-width: 80px;
    text-align: right;
    z-index: 20;
    font-weight: 700;
}

.login .open-user-menu.opened {
    background: #555;
}

.login .user-menu {
    display: none;
    position: absolute;
    right: -5px;
    left: -5px;
    top: 0px;
    min-width: 100%;
    background: #555;
    background: -webkit-linear-gradient(#505050, #1F1F1F);
    background: -moz-linear-gradient(#505050, #1F1F1F);
    background: -ms-linear-gradient(#505050, #1F1F1F);
    background: -o-linear-gradient(#505050, #1F1F1F);
    background: linear-gradient(#505050, #1F1F1F);
    z-index: 19;
    display: none;
    padding: 33px 5px 10px;
    line-height: 1.6em;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 12px;
    box-shadow: 0px 6px 4px -4px rgba(0,0,0,0.3);
}

.login .user-menu li {

    float: none;
    text-transform: none;
    border: 0px none;
    padding: 0px;
}

.login .user-menu li:first-child {
    border-top: 1px solid #ccc;
    padding-top: 8px;
}

.login .user-menu a {
    margin: 0;
    background: transparent none;
    opacity: 1;
    font-weight: 700;
    display: block;
    padding: 4px 5px;
    color: #fff;
    line-height: 1em;
    text-decoration: none;
}

.login .user-menu a:hover {
    background: #999;
}

/* Login dropdown */

.login-dropdown {
    position: absolute;
    background: #333;
    background: -webkit-linear-gradient(#505050, #1F1F1F);
    background: -moz-linear-gradient(#505050, #1F1F1F);
    background: -ms-linear-gradient(#505050, #1F1F1F);
    background: -o-linear-gradient(#505050, #1F1F1F);
    background: linear-gradient(#505050, #1F1F1F);
    padding: 10px;
    width: 250px;
    z-index: 100;
    right: 0px;
    top: 33px;
    display: none;
    box-shadow: 0px 15px 10px -10px rgba(0,0,0,0.3);
    color: #fff;
    line-height: 33px;
}

.login-dropdown label {
    display: block;
}

.login-dropdown input[type="email"],
.login-dropdown input[type="password"] {
    width: 100%;
}

.login-dropdown .forgot-password-link {
    color: #a9dced;
    opacity: 1;
    margin-left: 5px;
}

.login-dropdown .forgot-password-link:hover {
    color: #dfeef3;
}

.login-dropdown .hi {
    line-height: 0;
    border-top: 1px solid #666;
    padding-top: 10px;
    margin-top: 15px;
    text-align: center;
}

.login-dropdown .button {
    opacity: 1;
}

/* FEEDS */

.feed {
    float: left;
}

.feed header h2 {
    font-family: "Crete Round", Times, sans-serif;
    font-size: 35px;
    font-weight: normal;
    line-height: 36px;
    margin-bottom: 10px;
    border-bottom: 10px solid #333;
    padding: 0 0 6px;
    position: relative;
}

.feed header h2:after {
    content: "";
    position: absolute;
    bottom: -22px;
    right: 10px;
    border-width: 12px 12px 0 0;
    border-style: solid;
    border-color: #333 transparent;
    display: block;
}

.feed-desc {
    position: absolute;
    right: 0px;
    bottom: 20px;
    font-size: 13px;
    font-family: "Helvetica Bold", "Arial", "Verdana", sans-serif;
    z-index: 10;
}

.feed.full-width header h2:after {
    display: none !important;
}

.feed.full-width header {
    position: relative;
}

.feed.full-width header h2 {
    position: relative;
    margin-bottom: 0px;
}

.feed.full-width header h2 > a {
    text-decoration: none;
    color: #333;
}

.feed.full-width .feed-content ul {
    height: 190px;
    width: 100%;
    overflow-y: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    list-style-type: none;
    white-space: nowrap;
}

.feed.full-width .feed-content.daily-offers-content ul {
    height: 160px;
}

.tek-scrollbar.tek-scrollbar-horizontal::-webkit-scrollbar {
    height: 12px;
}

.tek-scrollbar.tek-scrollbar-vertical::-webkit-scrollbar {
    width: 12px;
}

.tek-scrollbar::-webkit-scrollbar-track {
    background: #e8e8e8;
    border-radius: 12px;
}

.tek-scrollbar::-webkit-scrollbar-thumb {
    background-color: rgba(51, 51, 51, .7);
    border-radius: 12px;
    max-width: 10px;
}

.tek-scrollbar:hover ul::-webkit-scrollbar-thumb {
    background-color: #333;
}

.feed.full-width .feed-content li {
    display: inline-block;
    width: 180px;
    height: 100%; 
    border-right: 1px solid #d2dae2;
    background: #fff;
    text-align: center;
    position: relative;
    white-space: normal;
    vertical-align: top;
}

.feed.full-width .feed-content li:last-child {
    border: none;
}

.feed-alternate-header {
    position: relative;
}

.feed-alternate-header header h3 {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1em;
    font-family: Oswald, Helvetica, Times, sans-serif;
    position: absolute;
    left: 10px;
    top: -20px;
    background: #46B14F;
    text-shadow: 0px 1px 0px rgba(0,0,0,0.1);
    border: 1px solid #333;
    color: #fff;
    padding: 0px 10px;
    line-height: 28px;
    height: 28px;
    vertical-align: middle;
    font-weight: 400;
    z-index: 1;
}

.feed-alternate-header header h3 a {
    color: #fff;
    text-decoration: none;
}


/* Site comments */
.site-comments {
    width: 300px;
}

.site-comments header h2 {
    font-family: Helvetica, Arial, Tahoma, sans-serif;
    background-color: #333;
    height: 22px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 4px 5px;
    line-height: 1.1;
    text-transform: uppercase;
}

.site-comments a.more {
    float: right;
    color: #ccc;
    margin: -27px 0 0;
    text-transform: lowercase;
    text-decoration: none;
    position: relative;
    font-weight: bold;
    right: 5px;
}

.site-comments li {
    border-bottom: 1px dashed #ddd;
    list-style: none;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.site-comments li:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.site-comments img {
    float: left;
    margin: 0 10px 0 0;
}

.site-comments .text {
    float: left;
    width: 196px;
}

.site-comments ul a {
    color: #333;
    text-decoration: none;
    word-wrap: break-word;
}

.site-comments li h3 {
    font-weight: normal;
    font-size: 13px;
}
.site-comments li:first-child h3 {
    font-size: 26px;
    line-height: 24px;
    font-weight: bold;
}

.site-comments ul .name a {
    display: block;
    text-decoration: underline;
    margin-bottom: 6px;
    color: #777;
}

/* Popular products */

.col-border-top .feed.feed-popular-products {
    width: 468px;
    margin: 0 11px 0 0;
}

.col-border-top .feed.feed-popular-products:before {
    right: -11px;
    top: -32px;
}

.feed.feed-popular-products {
    background: #f5f5f5;
    border-top: 10px solid #333;
    position: relative;
}

.feed.feed-popular-products h4 {
    color: #666;
    margin-top: 5px;
}

.feed.feed-popular-products ol {
    list-style-type: none;
}

.feed.feed-popular-products > div {
    float: left;
    width: 50%;
    padding: 10px;
}

.feed.feed-popular-products .most-impressions {
    padding-right: 11px;
}

.feed.feed-popular-products .most-wanted {
    padding-left: 11px;
}

.feed.feed-popular-products li {
    min-height: 40px;
    font-size: 12px;
    padding: 5px 0;
}

.feed.feed-popular-products li > * {
    display: inline-block;
    vertical-align: middle;
}

.feed.feed-popular-products li .image {
    width: 30px;
    margin-right: 5px;
}

.feed.feed-popular-products li .image.no-image {
    height: 40px;
    background-color: #fff;
    background-image: -webkit-repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0,0,0,.05) 4px, rgba(0,0,0,.05) 8px);
    background-image: -moz-repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0,0,0,.05) 4px, rgba(0,0,0,.05) 8px);
    background-image: -ms-repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0,0,0,.05) 4px, rgba(0,0,0,.05) 8px);
    background-image: -o-repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0,0,0,.05) 4px, rgba(0,0,0,.05) 8px);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0,0,0,.05) 4px, rgba(0,0,0,.05) 8px);
    padding-top: 3px;
    border: 1px solid #ccc;
    border-left: 1px solid #eee;
    border-top: 0px none;
}

.feed.feed-popular-products li .image.no-image a {
    display: block;
    height: 100%;
}

.feed.feed-popular-products li .image.no-image .platform-title {
    display: block;
    height: 3px;
    margin: 0 3px;
}

.feed.feed-popular-products li .product-title {
    width: 158px;
}

.feed.feed-popular-products li .platform-name {
    color: #999;
    display: block;
}

.feed.feed-popular-products li .count {
    color: #999;
}

.feed.feed-popular-products li a {
    color: #444;
    text-decoration: none;
    font-weight: 700;
}

.feed.feed-popular-products li a:hover {
    text-decoration: underline;
}


/* Daily offers */
.daily-offers li {
    padding: 10px 5px;
}

.daily-offers h3 {
    font-size: 13px;
    margin-bottom: 8px;
}

.daily-offers img {
    max-height: 50px;
}

.offer-prices {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-prices .line-through {
    font-weight: 400;
    color: #ccc;
}

.daily-offers p {
    color: #666;
    font-size: 13px;
    margin-bottom: 8px;
}

/* USER TIPS */
.tek-article-feed {
    padding-top: 22px;
}

.tek-article-feed.feed.full-width .feed-content li {
    text-align: left;
}

.tek-article-feed img {
    max-width: 100%;
}

.tek-user-tip-content {
    padding: 5px 10px;
    color: #666;
    font-size: 0.9em;
}

.tek-article-feed h3 {
    line-height: 18px;
    margin: 0 0 8px 0;
}

.tek-article-feed p {
    line-height: 16px;
}

/* RECOMMENDED */
.tek-recommended li {
    padding-top: 10px;
    line-height: 20px;
    color: #666;
}

.tek-recommended [class^="dice-"] {
    position: absolute;
    right: 10px;
    top: 100px;
}

.tek-recommended .product-score-tag {
    position: absolute;
    right: 10px;
    top: 10px;
}


/* FRONT PAGE PREAMBLES */
.preamble {
    float: left;
    position: relative;
    margin-bottom: .7em;
}

.preamble:first-child {
    margin-left: 0;
    padding-left: 0;
}

.last-child {
    margin-right: 0 !important;
}

.preamble:last-child {
    margin-right: 0; 
    padding-right: 0; 
}

.preamble p a:visited {
    color: #666;
}

.preamble.double-headline h3 a {
    float: left;
}

.preamble.double-headline h3 .headline {
    height: 22px;
    padding: 4px;
    display: inline-block;
}

.preamble .tek-tag {
    float: left;
}

.preamble.double-headline h3 .headline:hover {
    text-decoration: underline;
}

.preamble h2 {
    font-size: 1.17em;
    line-height: 1em;
    padding-right: 40px;
}

.preamble h2 a {
    color: #333;
    text-decoration: none;
}

.no-touch .preamble h2 a:hover {
    text-decoration: underline;
}

.preamble figure a img {
    display: block;
}

.preamble .linkText {

}

.preamble a .linkText::after {
    content: "\00a0\00bb";
    display: inline;
}

.preamble .relatedLinks {
    list-style-type: none;
    padding-left: 0px;
}

.preamble .relatedLinks.column-split {
    -moz-column-count: 2;
    -moz-column-gap: 20px;
    -webkit-column-count: 2;
    -webkit-column-gap: 20px;
    column-count: 2;
    column-gap: 20px;
}

.preamble .relatedLinks li {
    margin-bottom: 4px;
}

.preamble .relatedLinks li > * {
    vertical-align: middle;
    width: auto;
}

.preamble.preamble-dark .relatedLinks {
    padding: 10px;
}

.preamble.preamble-dark .relatedLinks a {
    color: #fff;
}

.preamble.double-headline h3 {
    padding: 0px;
    margin: 0px;
    background/*\**/: transparent;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#B2000000,endColorstr=#B2000000)"; /* IE8 */
    background-color: rgba(0, 0, 0, .7);
    zoom: 1;
}

.preamble h3,
.tag-container {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    font-weight: normal;
    color: #fff;
    z-index: 1;
    font-size: 1em;
    letter-spacing: 1px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    height: 22px;
}

.preamble.preamble-one-fourth h3 {
    height: 18px;
    letter-spacing: 0px;
}

.preamble.preamble-one-fourth.double-headline h3 .headline {
    padding: 2px 4px;
}

.tag-container {
    background: none;
    font-size: 12px;
    line-height: 1.2em;
}

.preamble-one-fourth .tag-container {
    height: 18px;
}

.preamble .image-container {
    position: relative;
}

.preamble.double-headline h3 a {
    color: #fff;
    text-decoration: none;
}

.no-touch .preamble.double-headline:hover h3 {
    cursor: pointer;
    background-color: #000;
    -webkit-backface-visibility: hidden;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.no-touch .preamble h3:hover {
    text-decoration: underline;
}

.preamble p {
    margin: .7em 0 11px;
    line-height: 1.6em;
}

.preamble-large {
    width: 628px;
}

.preamble-large.double-headline h2,
.preamble-large.single-headline h2 {
    margin-top: .3em;
    letter-spacing: -0.02em;
    font-size: 4.2em;
    line-height: 1.1em;
}

.preamble-large p {
    font-size: 14px;
}

.preamble-half {
    width: 468px;
    margin: 0 11px;
}

.preamble-half::before {
    display: none !important;
}

.preamble-half.double-headline h2,
.preamble-half.single-headline h2 {
    margin-top: .3em;
    font-size: 2em;
    line-height: 1.2em;
}

.preamble-one-fourth {
    width: 222px;
    margin: 0 11px 0;
}

.preamble-one-fourth.double-headline h2,
.preamble-one-fourth.single-headline h2 {
    line-height: 1.3em;
    font-size: 1.25em;
    margin-top: 1em;
}

.preamble-one-third {
    width: 300px;
    margin: 0 14px 0;
}

.preamble-one-third.double-headline h2,
.preamble-one-third.single-headline h2 {
    overflow: hidden;
    line-height: 1.1em;
    margin-top: .6em;
    font-size: 2em;
}

.preamble .comment-count {
    text-decoration: none;
    text-align: center;
    float: right;
    padding: 4px;
    width: 35px;
    right: 0px;
    background: #e3e3e3;
    background: -webkit-linear-gradient(#e6e6e6, #e3e3e3);
    background: -moz-linear-gradient(#e6e6e6, #e3e3e3);
    background: -ms-linear-gradient(#e6e6e6, #e3e3e3);
    background: -o-linear-gradient(#e6e6e6, #e3e3e3);
    border-radius: 4px;
    margin-left: 5px;
    color: #fff;
    position: absolute;
}

.no-touch .preamble .comment-count:hover {
    background: #666;
}

.no-touch .preamble .comment-count:hover:after {
    border-color: #666 transparent;
}

.preamble .comment-count:visited {
    color: #fff;
}

.preamble .comment-count:after {
    content: "";
    position: absolute;
    bottom: -6px;
    right: 6px;
    border-width: 6px 6px 0 0;
    border-style: solid;
    border-color: #e3e3e3 transparent;
    display: block;
}

.preamble .comment-count.focus {
    color: #fff;
    background: #212121;
    background: -webkit-linear-gradient(#4e4e4e, #212121);
    background: -moz-linear-gradient(#4e4e4e, #212121);
    background: -ms-linear-gradient(#4e4e4e, #212121);
    background: -o-linear-gradient(#4e4e4e, #212121);
}

.preamble .comment-count.focus:after {
    border-color: #212121 transparent;
}

.preamble.preamble-dark .comment-count {
    background: #4c5b6c;
    background: rgba(255,255,255,0.3);
}

.preamble.preamble-dark .comment-count:after {
    border-color: rgba(255,255,255,0.3) transparent;
}

.preamble.preamble-dark .comment-count.focus {
    color: #28323c;
    background: #bfc2c5;
    background: -webkit-linear-gradient(#fcffff,#cfd2d7);
    background: -moz-linear-gradient(#fcffff,#cfd2d7);
    background: -ms-linear-gradient(#fcffff,#cfd2d7);
    background: -o-linear-gradient(#fcffff,#cfd2d7);
    background: linear-gradient(#fcffff,#cfd2d7);
}

.preamble.preamble-dark .comment-count.focus:after {
    border-color: #cfd2d7 transparent;
}

.preamble.preamble-dark,
.preamble.preamble-dark.double-headline h2 a,
.preamble.preamble-dark.single-headline h2 a {
    color: #fff;
}

.preamble .image-container a .tek-article-badge {
    display: block;
    color: #fff;
    position: absolute;
    bottom: 5px;
    right: 5px;
    padding: 4px 10px;
    font-family: "Oswald", Helvetica, Arial;
    font-weight: 400;
    text-transform: uppercase;
}

.preamble .image-container a.most-read .most-comments-badge {
    right: 78px;
}

.preamble.feed-comic-tease {
    background: none repeat scroll 0 0 #F0F0F0;
    color: #303030;
}

.preamble.preamble-dark.feed-comic-tease h2 a {
    color: #333333;
}

.top-right-preamble {
    float: right;
    width: 300px;
}

.top-right-preamble .preamble:first-child:before {
    content: "";
    height: 45px;
    border-left: 1px solid #ddd;
    top: -21px;
    left: -14px;
    position: absolute;
}

.top-right-preamble > .preamble:last-child {
    margin-left: 0px;
}

.preamble-dark {
    border-radius: 0 0 4px 4px;
}

.preamble-dark:after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: #000;
    opacity: 0.1;
}

.preamble.preamble-dark > * {
    position: relative;
    z-index: 1;
}

.preamble.preamble-dark > h2,
.preamble.preamble-dark > h3,
.preamble.preamble-dark > p {
    margin-left: 10px;
    margin-right: 10px;
}

.preamble-dark .comment-count {
    margin-right: 5px;
    z-index: 2;
}

.preamble-dark a,
.preamble-dark a:visited,
.preamble-dark .linkText {
    color: #fff;
}

.preamble .ekstra-link {
    display: inline-block;
    margin-top: 22px;
}

/**
 * ARTICLE
 *
 */
.section-article .col-half-width {
    margin-bottom: 33px;
    padding-right: 18px;
}

.section-article .col-half-width:last-child {
    padding-right: 0px;
}

.section-article .col-main-width {
    margin-bottom: 33px;
}

.article {
    position: relative;
    float: left;
    padding-left: 60px;
    margin-bottom: 66px;
}

.article .media {
    margin: 0 0 44px -60px;
    position: relative;
}

.mfp-title {
    font-size: 16px;
}

.article.full-width .media {
    margin-left: -82px;
    width: 1000px;
}

.article.full-width .media.image figcaption {
    padding: 0.6em 22px 0 82px;
}

.product-bar {
    height: 35px;
}

.article.full-width .product-nav {
    margin-left: 0px;
}

.article.full-width .product-nav h1,
.article.full-width .product-nav h3 {
    position: absolute;
    top: -40px;
    left: 82px;
    z-index: 100;
    color: #fff;
    font-size: 40px;
    font-family: Oswald;
    font-weight: 400;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.5), -1px -1px 0px rgba(0,0,0,0.5), -1px 1px 0px rgba(0,0,0,0.5), 1px -1px 0px rgba(0,0,0,0.5), 0px 0px 10px black;
}

.article.full-width .product-nav.fixed h1,
.article.full-width .product-nav.fixed h3 {
    height: 35px;
    padding: 8px 0 8px 12px;
    position: static;
    display: inline-block;
    font-size: 17px;
    vertical-align: top;
    line-height: 1em;
}

.article.full-width .product-nav.fixed ul {
    padding: 8px 12px;
    display: inline-block;
}

.article.full-width .product-nav ul {
    padding-left: 72px;
}

.article.full-width .product-nav .site-logo {
    display: none;
    vertical-align: top;
    margin: 7px 12px 7px 22px;
}

.article.full-width .product-nav .site-logo:hover {
    opacity: 0.8;
}

.article.full-width .product-nav.fixed .site-logo {
    display: inline-block;
}

.article header {
    margin-bottom: 37px;
}

.article header.single-headline h1,
.article header.double-headline h2 {
    font: normal 60px/1em "Crete Round", Times, sans-serif;
}

.article header.double-headline h1,
.article .tag-container {
    background-color: #333;
    background-color: rgba(0,0,0,.7);
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 24px;
    line-height: 33px;
    font-weight: normal;
    height: 33px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article.full-width header.double-headline h1, .article.full-width .tag-container {
    width: 1000px;
    left: -22px;
}

.article h1 .margin {
    margin-left: 6px;
}

.article header.double-headline h1 .tek-tag,
.article .tag-container .tek-tag {
    padding: 0 8px;
    font-size: 22px;
    height: 33px;
}

.article .icon-time {
    float: left;
    margin: -2px 4px 0 0;
    font-size: 1.1em;
}

.article.lacks-main-media .single-headline h1, 
.article.lacks-main-media .double-headline h2 {
    margin-top: 65px;
}

.article header p {
    margin: 40px 0 22px;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2em;
}

.article.full-width header p {
    font-size: 32px;
    margin-bottom: 33px;
}

#main .article .pagination {
    line-height: 15px;
    font-size: 12px;
    padding: 3px 0;
    border-top: 1px dotted #bbb;
    border-bottom: 1px dotted #bbb;
    margin-bottom: 22px;
}

.article .pagination .pages-title {
    display: none;
}

#main .article .pagination > li {
    list-style: none;
    font-weight: bold;
    float: left;
    padding: 6px 4px; 
    margin: 0 10px 0 0;
}

#main .article .pagination > li.diskusjon-count {
    margin: 0;
    padding: 6px 0;
    float: right;
    text-transform: uppercase;
}

#main .article .pagination > li.diskusjon-count a {
    color: #333;
}

#main .article .pagination > li.diskusjon-count a span {
    font-weight: 700;
}

#main .article .pagination a[rel=prev],
#main .article .pagination a[rel=next] {
    font-weight: bold;
}

#main .article .pagination a[rel=prev]:before {
    content: "« ";
}

#main .article .pagination a[rel=next]:after {
    content: " »";
}

#main .article .pagination a {
    font-weight: normal;
}

.article .pagination .selected,
.article .pagination .selected a {
    text-decoration: none;
    color: #fff;
}

.article .next-page {
    height: 50px;
    width: 60px;
    font-family: "Oswald", Arial, sans-serif;
    font-size: 1.4em;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 22px;
    padding: 3px;
    margin: 0 16px 0 0;
}

.article .next-page:after {
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left-width: 16px;
    right: -16px;
}

.article .authors {
    list-style: none;
    margin-bottom: 37px;
    font-size: 12px;
    line-height: 23px;
}

.article .authors li {
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
}

.article .authors li > * {
    display: inline-block;
    vertical-align: middle;
}

.article .authors li.author-with-image {
    margin-right: 5px;
}

.article .authors a.article-author-image {
    padding: 2px;
    border: 1px solid #ddd;
    margin-right: 3px;
}

.article .authors a.article-author-image:hover {
    border-color: #333;
}

.article .authors a img {
    display: block;
}

.article .authors a {
    color: #333;
    text-decoration: none;
}

.article .authors a:hover {
    text-decoration: underline;
}

.article .authors time {
    text-transform: none;
    font-weight: normal;
}

.article .authors .diskusjon-count {
    padding-top: 10px;
    float: right;
    margin: 0 10px 0 0;
}

.article .authors .diskusjon-count .icon-comments-alt {
    display: none;
}

.article .authors .print-icon {
    padding-top: 10px;
    float: right;
}

.article .authors .icon-print {
    font-size: 1.8em;
    color: #4185E1;
    -webkit-transition: color .2s;
    -moz-transition: color .2s;
    -ms-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
}

.article .authors .icon-print:hover {
    color: #369;
    text-decoration: none;
}

.article .authors li.published {
    font-weight: normal;
    text-transform: none;
}

.neo-content .comment-contact {
    background: #eee;
    padding: 8px;
}
.neo-content .comment-contact p {
    font-size: 13px;
    margin: 0;
}

.neo-content {
    position: relative;
    float: left;
    width: 563px;
}

.neo-content.full-width {
    width: 100%;
    max-width: 896px;
}

.neo-content p,
.neo-content ol,
.neo-content ul {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 16px;
}

.neo-content.full-width p,
.neo-content.full-width ol,
.neo-content.full-width ul {
    font-weight: 300;
    font-size: 15px;
    line-height: 25px;
    max-width: 670px;
    margin-bottom: 22px;
}

.neo-content ol li,
.neo-content ul li {
    margin-left: 24px;
    padding: 2px 0;
}

.neo-content span.strike {
    text-decoration: line-through;
}

.neo-content strong {
    font-weight: 700 !important;
}

.neo-content .audio {
    margin-bottom: 22px;
}

.neo-content code {
    display: inline-block;
    padding: 3px 5px;
}

.neo-content iframe {
    border: 0px none;
    max-width: 100%;
}

.neo-content .social-share iframe {
    max-width: none;
}

.neo-content h3 {
    font-size: 24px;
    letter-spacing: -1px;
    line-height: 36px;
    margin-bottom: 22px;
    margin-top: 33px;
}

.neo-content.full-width h3 { 
    font-size: 28px;
    letter-spacing: 0px;
}

.neo-content h4 {
    line-height: 1.4em;
    font-size: 1.6em;
    margin-top: 22px;
    margin-bottom: 16px;
}

.neo-content.full-width h4 {
    font-size: 24px;
    line-height: 1.6em;
}

.neo-content h5 {
    font-size: 14px;
}

.neo-content.full-width h5 {
    font-size: 16px;
}

.neo-content.full-width .ad-300x250 {
    float: right;
    margin-left: 22px; 
    margin-right: 0px;
    margin-bottom: 22px;
}

.neo-content figure > a {
    line-height: 1px;
    display: block;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.neo-content .articleImageCenter {
    text-align: center;
    margin: 33px 0;
}

.neo-content .articleImageRight {
    float: right;
    clear: right;
    margin: 0 0 2em 2em;
}

.neo-content .articleImageLeft {
    float: left;
    clear: left;
    margin: 0 2em 2em 0;
}

.neo-content.full-width .articleImageRight {
    max-width: none;
    margin-right: -22px;
}

.neo-content.full-width li .articleImageRight {
    margin-right: -248px;
}

.neo-content.full-width .articleImageRight.width-280,
.neo-content.full-width .articleImageRight.width-300 {
    margin-right: 0px;
}

.neo-content.full-width .articleImageLeft {
    margin-left: -82px;
}

.neo-content.full-width .articleImageLeft.width-120,
.neo-content.full-width .articleImageLeft.width-280,
.neo-content.full-width .articleImageLeft.width-300 {
    margin-left: 0px;
}

.neo-content figure.articleImageRight.width-280 { max-width: 280px; }
.neo-content figure.articleImageRight.width-300 { max-width: 300px; }
.neo-content figure.articleImageRight.width-488 { max-width: 488px; }
.neo-content figure.articleImageRight.width-540 { max-width: 540px; }
.neo-content figure.articleImageRight.width-563 { max-width: 563px; }

.neo-content.full-width .width-1000 {
    max-width: none;
}

.neo-content.full-width .articleImageLeft figcaption,
.neo-content.full-width .video-player-wrap.video-player-left .text {
    padding: 8px 0 8px 82px;
}

.neo-content.full-width .articleImageLeft.width-120 figcaption,
.neo-content.full-width .articleImageLeft.width-280 figcaption,
.neo-content.full-width .articleImageLeft.width-300 figcaption {
    padding: 8px 0;
}

.neo-content.full-width .articleImageCenter {
    margin-left: -82px;
    width: 1000px;
}

.neo-content .background {
    position: absolute;
    z-index: -1;
}

.neo-content.full-width .articleImageCenter figcaption,
.neo-content.full-width .articleImageRight.width-1000 figcaption,
.neo-content.full-width .video-player-wrap.video-player-center .text {
    padding: 8px 82px;
}

.neo-content.full-width .articleImageCenter.width-562 figcaption,
.neo-content.full-width .articleImageCenter.width-563 figcaption {
    width: 562px;
    margin: auto;
    padding: 8px;
}

.neo-content .articleImagePhotographer:before {
    content: " (";
}
.neo-content .articleImagePhotographer:after {
    content: ")";
}
.neo-content .articleImagePhotographer {
}

.neo-content .video.left,
.neo-content .video.f-left {
    float: left;
    clear: left;
    margin: 0 2em 2em 0;
}

.neo-content .video.right,
.neo-content .video.f-right {
    float: right;
    clear: right;
    margin: 0 0 2em 2em;
}

.neo-content .full-width-content {
    clear: both;
    padding: 22px;
    background: #E9EFFA;
    margin: 0 0 2em;
}

.neo-content.full-width .full-width-content {
    width: 1000px;
    padding: 22px 22px 22px 82px;
    margin-left: -82px;
}

.article .media.image img {
    display: block;
}

.article .media.image figcaption {
    border-top: 1px dotted #BBBBBB;
    color: #777777;
    font-size: 1em;
    line-height: 1em;
    margin-top: 0.6em;
    padding: 0.6em 0 0;
    text-align: left;
}

.article .media.image figcaption .image-photographer {
    color: #999;
}

.neo-content figcaption,
.neo-content .video .text {
    text-align: left;
    margin-top: 11px;
    font-size: 12px;
    line-height: 19px;
    padding: 8px 0;
    color: #777;
    border-top: 1px dotted #bbb;
}

.neo-content figcaption:empty {
    border: 0px;
    padding: 0px;
    margin: 0px;
}

.neo-content .fact-box,
.neo-content .factBox {
    float: right;
    clear: right;
    width: 280px;
    padding: 10px;
    margin: 0 0 15px 15px;
    background-color: #f0f0f0;
    line-height: 1.5em;
    font-size: .9em;
}

.neo-content.full-width .factBox,
.neo-content.full-width .fact-box {
    width: 300px;
}

.neo-content .fact-box li, 
.neo-content .factBox li, 
.neo-content .fact-box p, 
.neo-content .factBox p {
    font-size: 12px;
}
.neo-content .fact-box p, 
.neo-content .factBox p {
    margin-bottom: 2em;
    line-height: 1.4em;
}

.neo-content .factBox.center {
    border-radius: 5px;
    float: none;
    width: auto;
    clear: both;
    margin: 0 0 15px;
}

.neo-content .fact-box img, 
.neo-content .factBox img {
    vertical-align: middle;
}

.neo-content .factBox .articleImageRight {
    margin-right: 0;
}

.neo-content .factBox h3,
.neo-content .fact-box h3 {
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 24px;
    font-size: 1.5em;
}

.neo-content .factBox h4,
.neo-content .fact-box h4 {
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 24px;
    font-size: 1.3em;
}

.article .spoiler .header {
    padding: 4px 6px;
    background: #ccc url(../images/main/arrowDown.png) no-repeat right 50%;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    font-family: Helvetica, Arial, sans-serif;
}

.article .spoiler .header.up {
    background-image: url(../images/main/arrowUp.png);
}

.article .spoiler {
    margin-bottom: 16px;
}

.article .spoilerContent {
    display: none;
}

.neo-content blockquote.left {
    width: 232px;
    float: left;
    margin-left: 0;
}

.neo-content blockquote.right {
    width: 232px;
    float: right;
    clear: right;
    margin-right: 0;
}

.neo-content blockquote {
    margin: 10px;
    padding: 10px;
    border-top: 4px solid silver;
    font-size: 1.1em;
    line-height: 1.3em;
}

.neo-content blockquote p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.3em;
    letter-spacing: 0.06em;
    color: #333;
}

.neo-content.full-width blockquote {
    margin: 10px 0;
    padding: 10px 0;
    border: 0px;
}

.neo-content.full-width blockquote.right,
.neo-content.full-width blockquote.left {
    width: 300px;
    border-top: 6px solid #333;
}

.neo-content.full-width blockquote.left {
    margin: 0 22px 0 0;
}

.neo-content.full-width blockquote.right {
    margin: 0 226px 0 22px;
}

.neo-content.full-width blockquote p {
    font-size: 32px;
    line-height: 44px;
    font-family: "Crete Round";
    position: relative;
}

.neo-content.full-width blockquote p:before {
    content: "\f10d";
    font-family: 'FontAwesome';
    display: inline-block;
    font-size: 2em;
    left: -70px;
    top: -8px;
    position: absolute;
}

.neo-content.full-width blockquote p:after {
    content: "\f10e";
    font-family: 'FontAwesome';
    display: inline-block;
    font-size: 1.6em;
    margin-left: 10px;
    display: none;
}

.neo-content.full-width blockquote.right p:after,
.neo-content.full-width blockquote.right p:before,
.neo-content.full-width blockquote.left p:after,
.neo-content.full-width blockquote.left p:before {
    display: none;
}

.neo-content blockquote p.cite {
    /*color: #555 !important; */
    font-size: 12px;
    line-height: 18px;
    text-align: right;
    font-style: normal;
    margin: 0px;
}

.neo-content blockquote p.cite:after,
.neo-content blockquote p.cite:before {
    display: none;
}

.neo-content .twitter-tweet-wrap.f-right {
    width: 300px;
    margin: 0 0 22px 22px;
}

.neo-content.full-width .twitter-tweet-wrap.f-right {
    margin-right: 226px;
}

.neo-content > *:first-child {
    margin-top: 0px;
}

.article aside {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    width: 300px;
    position: relative;
    float: left;
    padding-left: 14px;
    margin-left: 14px;
    border-left: 1px solid #ddd;
}

.article aside > * {
    position: relative;
    margin: 33px 0;
}

.article aside:before {
    content: "";
    width: 45px;
    border-top: 1px solid #ddd;
    position: absolute;
    top: 0;
    left: 0;
}

.article aside > *:before {
    content: "";
    width: 45px;
    border-top: 1px solid #ddd;
    position: absolute;
    top: -33px;
    left: -14px;
}

.article aside header h3,
.article-feed > header h3,
.article-feed > h3,
.article .header {
    font: normal 32px/1em "Crete Round", Times, sans-serif;
    margin-bottom: 10px;
}

.article aside h3 {
    margin-bottom: 33px;
}

.article aside h3 a:hover {
    text-decoration: underline;
}

.article aside .image-container {
    float: left;
}

.article .related.product ul {
    padding: 5px 0;
    margin: 0;
}
.article .related.product {
    background: #eee;
    padding: 5px;
    margin: 0 0 7px 0;
}

.article-feed ul {
    list-style: none;
}

.article-feed ul > li {
    margin-bottom: 33px;
}

.article-feed .story h3 {
    float: left;
    clear: both;
    width: 100%;
    margin: 10px 0;
}

.article-feed .story h3 a {
    color: #333;
    font-size: 1.3em;
    line-height: 1.3em;
    text-decoration: none;
}

.article-feed h4 {
    clear: both; 
    margin: 10px 0;
}

.article-feed h4 a {
    font-size: 1.3em;
    line-height: 1.3em;
    color: #333;
    text-decoration: none;
}

.article-feed p {
    margin-bottom: 4px;
    line-height: 1.6em;
}

.article-feed .col-half-width {
    margin-bottom: 22px;
}

.article-feed .image-container {
    position: relative;
}

.related-content {
    padding-bottom: 33px;
}

.related-content ul > li {
    border-bottom: 1px dotted #bbb;
    padding-bottom: 6px;
    margin-bottom: 8px;
}

.related-content .image {
    text-align: center;
    float: left;
    margin: 0 10px 0 0;
    width: 70px;
}

.related-content li a {
    font-weight: bold;
    font-size: 1.1em;
}

.related-content [class^="dice-"] {
    margin: 7px 0 0 10px;
}

.article aside .ad-300x250 {
    margin-top: 40px;
}

.article .ad-300x250:before {
    display: none;
}

.article .ad-adsense {
    margin: 0 0 25px 0;
    padding: 5px 0;
    text-align: center;
    background: #eee;
    width: 100%;
}

.article .ad-adsense iframe {
    margin: auto;
}

.article .adsense-fix {
    margin-top: 121px;
}

/* Image compare slider */

.neo-content .tek-image-slider-wrap {
    margin: 0 0 33px;
}
.neo-content .tek-image-slider-wrap.f-right {
    margin: 0 0 22px 22px;
    clear: right;
}
.neo-content .tek-image-slider-wrap.f-right,
.neo-content .tek-image-slider-wrap.f-left {
    max-width: 563px;
}
.neo-content.full-width .tek-image-slider-wrap.f-right {
    margin-right: -22px;
}
.neo-content.full-width .tek-image-slider-wrap.no-float,
.neo-content.full-width .tek-image-slider-wrap.f-left {
    margin-left: -82px;
}
.neo-content .tek-image-slider {
    position: relative;
    width: 100%;
    height: 300px;
    clear: both;
    overflow: hidden;
    cursor: ew-resize;
}
.neo-content > .tek-image-slider {
    margin: 0 0 33px;
}
.neo-content > .tek-image-slider[data-class="f-right"] {
    margin: 0 0 22px 22px;
    clear: right;
    float: right;
    width: 563px;
}
.neo-content > .tek-image-slider[data-class="f-left"] {
    margin: 0 22px 22px 0;
    clear: left;
    float: left;
    width: 563px;
}
.neo-content.full-width > .tek-image-slider[data-class="no-float"] {
    width: 1000px;
}
.neo-content .tek-image-slider.tek-image-slider-horizontal {
    cursor: ns-resize;
}
.neo-content .tek-image-slider .slider-image {
    position: absolute;
    top: 0px;
    left: 0px;
    line-height: 0;
    overflow: hidden;    
}
.neo-content .tek-image-slider .slider-image:first-child {
    width: 50%;
    z-index: 1;
}
.neo-content .tek-image-slider.tek-image-slider-horizontal .slider-image:first-child {
    width: auto;
    height: 50%;
}
.neo-content .tek-image-slider .slider-bar {
    width: 5px;
    background: #000;
    left: 50%;
    top: 0px;
    bottom: 0px;
    position: absolute;
    z-index: 2;
}
.neo-content .tek-image-slider.tek-image-slider-horizontal .slider-bar {
    left: 0px;
    right: 0px;
    top: 50%;
    bottom: auto;
    height: 5px;
    width: auto;
}
.neo-content .tek-image-slider .slider-bar.untouched:before {
    content: "";
    position: absolute;
    top: 45%;
    left: -20px;
    border-right: 15px solid #000;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    display: block;
}
.neo-content .tek-image-slider .slider-bar.untouched:after {
    content: "";
    position: absolute;
    top: 45%;
    right: -20px;
    border-left: 15px solid #000;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    display: block;
}
.neo-content .tek-image-slider.tek-image-slider-horizontal .slider-bar.untouched:before {
    top: -20px;
    left: 47.5%;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #000;
    border-left: 15px solid transparent;
    border-top: 0px none;
}
.neo-content .tek-image-slider.tek-image-slider-horizontal .slider-bar.untouched:after {
    top: auto;
    bottom: -20px;
    right: auto;
    left: 47.5%;
    border-right: 15px solid transparent;
    border-top: 15px solid #000;
    border-left: 15px solid transparent;
    border-bottom: 0px none;
}
.neo-content .tek-image-slider-selects {
    margin: 0 0 10px;
}

.neo-content.full-width .tek-image-slider-wrap.no-float .tek-image-slider-selects {
    width: 1000px;
}
.neo-content .tek-image-slider-wrap .text {
    text-align: left;
    margin-top: 11px;
    font-size: 12px;
    line-height: 19px;
    padding: 8px 0;
    color: #777;
    border-top: 1px dotted #bbb;
}
.neo-content.full-width .tek-image-slider-wrap.no-float .text {
    width: 1000px;
    padding: 8px 82px;
}

/* Julekalender */

.julekalender-footer {
    box-shadow: 0 1px 22px rgba(0, 0, 0, 0.29);
    margin-bottom: 50px;
    margin-top: 50px;
    text-align: center;
}

.julekalender-footer > p {
    font-size: 17px !important;
    padding-top: 20px;
}

.julekalender-footer-logos {
    padding-bottom: 10px;
}

.julekalender-footer-logos > div {
    display: inline-block;
    height: 60px;
    margin: 15px;
    position: relative;
    width: 240px;
}

.julekalender-footer-logos .logo {
    width: 230px;
}

.julekalender-footer-logos .hat {
    position: absolute;
    right: -11px;
    top: -8px;
    width: 65px;
}


/* Related articles */

.related-articles li.article-type-59 {
    background: #eee;
}

.sponsored .related-articles li.article-type-59 {
    background: #fff;
}

.related-articles h4 {
    margin: 0;
}

.related-articles h4 a {
    font-size: 13px;
    line-height: 17px;
}
.related-articles p {
    font-size: 11px;
}
.related-articles li h4 {
    clear: none;
}
.related-articles ul > li:last-child {
    border-bottom: none;
}
.related-articles ul > li {
    border-bottom: 1px dotted silver;
    margin-bottom: 12px;
    padding-bottom: 12px;
}
.related-articles li .image {
    float: left;
}

.related-articles a:hover {
    text-decoration: underline;
}

.related-articles a {
    text-decoration: none;
}

/* Full width related articles */

.article-bottom .related-articles li {
    margin: -5px 6px;
}

.article-bottom .related-articles li {
    float: left;
    width: 222px;
    margin: 0 22px 22px 0;
    position: relative;
    border: 0px;
    min-height: 280px;
}

.article-bottom .col-article-comments .related-articles li {
    width: 218px;
}

.article-bottom .related-articles li .image-container {
    position: relative;
}

.article-bottom .related-articles li .image {
    float: none;
}

.article-bottom .related-articles li.article-type-59:before {
    -moz-user-select: none;
    color: #ccc;
    content: "Annonse";
    font-size: 0.7em;
    left: 0;
    letter-spacing: 0.2em;
    position: absolute;
    text-transform: uppercase;
    top: -14px;
}
.related-articles li .story {
    margin-left: 130px;
}
.article-bottom .related-articles .article-type-59 .story {
    margin: 5px;
}
.related-articles li.article-type-59 .story {
    margin: 5px 5px 5px 135px;
}
.article-bottom .related-articles .story {
    margin: 0px;
}

.article-bottom .related-articles li:first-child {
    margin-left: 0px;
}

.article-bottom .related-articles li:after {
    content: "";
    border-right: 1px solid #ddd;
    height: 45px;
    top: -22px;
    right: -11px;
    position: absolute;
    display: block;
}

.article-bottom .col-half-width .related-articles li:nth-child(2):after,
.article-bottom .related-articles li:nth-child(4):after {
    display: none;
}

.article-bottom .col-related-articles #related {
    padding-left: 0px;
}

.article-bottom .col-half-width .related-articles li:nth-child(2),
.article-bottom .related-articles li:nth-child(4) {
    margin-right: 0px;
}

.article-bottom .related-articles li h4 {
    margin-top: 1em;
}

.article-bottom .related-articles li h4 a {
    line-height: 1.3em;
    font-size: 1.25em;
}

.article-bottom .related-articles li p {
    margin: .7em 0 5px;
    line-height: 1.6em;
    font-size: 12px;
}

.article-bottom .related-articles li .moreLink {
    text-decoration: underline;
}


/* ARTICLE JOB FEED */

.article .latest-jobs {
    line-height: 18px;
    padding-bottom: 33px;
}

.article .latest-jobs li {
    border-bottom: 1px dotted silver;
    margin-bottom: 1em;
    padding-bottom: 1em;
}

.article .latest-jobs li:last-child {
    border-bottom: none;
}

.article .latest-jobs li h4 {
    clear: none;
    margin: 0 0 10px;
}

.article .latest-jobs li h4 a {
    font-size: 1.2em;
}

.article .latest-jobs a:hover {
    text-decoration: underline;
}

.article .job-image {
    float: right;
    margin: 0 0 10px 10px;
}

/* COMPATIBILITY/LEGACY STYLING */

.neo-content table div {
    margin: auto;
}

.neo-content table {
    line-height: 19px;
    border-spacing: 2px;
    margin: 33px 0;
    font-size: 14px;
    border: 0px none;
    width: 100%;
}

@media screen and (max-width: 750px){
    .neo-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
}

.neo-content table tr:first-child td * {
    text-align: center;
}

.neo-content table th,
.neo-content table td {
    padding: 3px 6px;
    border: 1px solid #ddd;
    border-top: none;
    border-right: none;
    background-color: #f0f0f0;
}

.neo-content table td:first-child,
.neo-content table th:first-child {
    border-left: none; 
}

.neo-content table tr:first-child td {
    background-color: #fff;
    border-bottom: 2px solid #bbb;
}

.neo-content table td .articleImageCenter {
    margin: 5px 0;
}

.neo-content table.noBorder td {
    border: none !important;
    background: transparent !important;
}

.neo-content table.no-styles,
.neo-content table.no-styles tr,
.neo-content table.no-styles td,
.neo-content table.no-styles tr:first-child td *,
.neo-content table.no-styles th {
    background: transparent !important;
    border: 0px none !important;
    text-align: left !important;
}

.neo-content table.no-styles h4 a {
    text-decoration: none;
}

.neo-content table.aligned-columns td {
    width: 14%;
}

.neo-content table.aligned-columns td:first-child {
    width: 30%;
}

.article img[src*='pluss.png'],
.article img[src*='pluss.gif'] {
    display: inline-block;
    background: url(../images/icons/plus-icon.png) no-repeat;
    padding: 8px;
    width: 0px;
    height: 0px;
}

.article img[src*='minus.png'],
.article img[src*='minus.gif'] {
    display: inline-block;
    background: url(../images/icons/minus-icon.png) no-repeat;
    padding: 8px;
    width: 0px;
    height: 0px;
}

/* Career newsletter */
.career-newsletter {
    background-color: #eee;
    border-radius: 5px;
    padding: 6px;
}

.career-newsletter h3 {
    margin: 0 0 10px;
}

.career-newsletter em {
    font-size: .9em;
    color: #888;
}

.career-newsletter input {
    padding: 5px;
    font-size: 12px;
    border: 1px solid #ccc;
    margin-right: 6px;
    vertical-align: middle;
    width: 250px;
}

/* ARTICLE NETMEETING */

#articleNetmeeting {
    float: none;
}

#articleNetmeeting .intro {
    margin-bottom: 10px;
}

#articleNetmeeting.feed ol {
    margin: 0;
}

#articleNetmeeting.feed li h3 {
    margin-top: 20px;
    color: #333;
}

#articleNetmeeting .loading {
    margin-right: -200px;
    left: 50%;
    background: url("../images/main/spinner.gif") no-repeat;
    width: 32px;
    height: 32px;
    position: absolute;
    background-color: #fff;
    top: 50%;
}

#articleNetmeeting .info p {
    margin: 0;
}
#articleNetmeeting .info {
    background: #ddd;
    font-size: 14px;
    padding: 9px;
    margin-bottom: 10px;
}

#articleNetmeeting .message {
    width: 120px;
    padding: 6px 4px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
}

#articleNetmeeting .message.success {
    background-color: #6E8B3D;
    border: 1px solid #BDB76B;
}

#articleNetmeeting .message.error {
    background-color: #CD3333;
    border: 1px solid #8B2323;
}

#articleNetmeeting .image {
    width: auto;
    height: auto;
    float: right;
    padding: 1px;
    border: 1px solid silver;
    margin-top: 23px;
}

#articleNetmeeting .intro h1 {
    margin-bottom: 16px;
}
#articleNetmeeting .intro p {
    margin-bottom: 6px;
}

#articleNetmeeting .question.selected {
    border-left: 5px solid #f55;
    padding-left: 5px;
}
#articleNetmeeting .question {
    margin-top: 10px;
}

#articleNetmeeting li {
    list-style-type: none;
    margin-left: 0;
}
#articleNetmeeting .question li {
    margin-bottom: 8px;
}

#articleNetmeeting textarea,
#articleNetmeeting input[type="text"] {
    width: 100%;
}

#articleNetmeeting textarea {
    height: 200px;
}

#articleNetmeeting label {
    font-weight: bold;
    display: block;
    cursor: pointer;
}

.adminView #nmQuestionsList {
    width: 400px;
    float: right;
    height: 600px;
}

#nmQuestionsList {
    width: 100%;
    padding-right: 10px;
}

#nmQuestionsList ul {
    list-style: none;
    margin-top: 10px;
}

#nmQuestionsList ul li {
    cursor: pointer;
    margin-bottom: 10px;
}

#nmQuestionsList ul li:hover {
    opacity: .8;
}

#nmQuestionsList ul li h3 {
    background-color: #eee;
    padding: 5px;
}

#nmQuestionsList ul li.answered h3 {
    background: #aea;
}

#nmAnswerQuestion label {
    display: block;
}

#nmAnswerQuestion textarea {
    width: 100%;
    height: 300px;
    display: block;
}

#nmQuestionsList ol li {
    margin: 0;
    list-style: none;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #ddd;
}

#answerForm {
    width: 500px;
    font-size: 14px;
    line-height: 1.4em;
}
#articleNetmeeting .question div,
#theQuestion div {
    margin-top: 3px;
    margin-bottom: 3px;
}

#articleNetmeeting .author {
    margin-bottom: 4px;
    margin-left: 7px;
    font-weight: bold;
}

#nmQuestionsList blockquote {
    margin: 6px 0;
}

#nmQuestionsList blockquote span {
    font-weight: bold;
}

#nmQuestionsList .answer {
    margin-bottom: 6px;
}

#nmQuestionsList .answer span {
    font-weight: bold;
}

#nmQuestionsList .answer p {
    word-break: break-word;
    color: #00009c;
}

#nmQuestionsJumpList {
    float: right;
    clear: right;
    width: 200px;
    margin-left: 11px;
    padding-left: 11px;
    padding-bottom: 20px;
    border-left: 1px solid #ddd;
    position: relative;
}

#nmQuestionsJumpList:before {
    content: "";
    border-top: 1px solid #ddd;
    width: 45px;
    display: block;
    top: 0px;
    left: 0px;
    position: absolute;
}

#nmQuestionsJumpList h3 {
    font-size: 16px;
    line-height: 1em;
    margin: 20px 0 14px;
}

/* ARTICLE COMMENT */

.article .articleComment .author {
    margin: 5px;
    text-align: center;
}
.article .articleComment .about {
    font-size: 12px;
    background: #eee;
    padding: 7px;
    margin-bottom: 0;
}

.article .articleComment img {
    width: 100%;
}

.article .articleComment {
    float: right;
    width: 300px;
    border: 1px solid silver;
    margin: 12px 0 7px 24px;
    clear: right;
    line-height: 0;
}

/* Soundcloud player */

.article .soundcloud-player {
    width: 100%;
    margin: 0 0 2em;
}

.article .soundcloud-player.f-right {
    margin-left: 2em;
    width: 300px;
    clear: right;
}

.article.full-width .soundcloud-player.f-right {
    width: 540px;
    margin-right: -22px;
}


/* VIDEO CONTAINER */ 

.article .video-container {
    margin: 0px;
    width: 100%;
    position: relative;
    padding-bottom: 56%;
    padding-top: 0px;
    overflow: hidden;
    z-index: 1;
}

.article .video-container object,
.article .video-container embed,
.article .video-container iframe,
.article .video-container > div { 
    position: absolute !important;
    top: 0px !important;
    left: 0px !important;
    bottom: 0px !important;
    right: 0px !important;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

.neo-content iframe[src*='player.ooyala.com'] {
    height: 430px;
}

.article.full-width #divPageContainer,
.article.full-width .video-player-wrap.video-player-center {
    margin-left: -82px;
    margin-right: -22px;
}
.article.full-width .center .video-container {
    width: 1000px;
}

.article .video-player-wrap.video-player-right,
.article .video-player-wrap.video-player-left {
    width: 300px;
}

.article.full-width .video-player-wrap.video-player-right,
.article.full-width .video-player-wrap.video-player-left {
    width: 540px;
}

.article .video-player-wrap.video-player-right {
    float: right;
    margin-left: 22px;
    clear: right;
}

.article.full-width .video-player-wrap.video-player-right {
    margin-right: -22px;
}

.article.full-width .video-player-wrap.video-player-left {
    margin-left: -82px;
}

.article .video-player-wrap.video-player-left {
    float: left;
    margin-right: 22px;
    clear: left;
}

/* QBRICK SUPER-STRICT CSS ::DO NOT TOUCH:: */

#divPageContainer #divPlayerContainer iframe, 
#divPageContainer #divPlayerContainer object,
#divPageContainer #divPlayerContainer embed {
    height: 100%;
    left: 0em;
    position: absolute;
    top: 0em;
    width: 100%;
}

#divPageContainer #divPlayerContainer > div:first-of-type > div:first-of-type {
    height: 100%;
    width: 100%;
    position: static;
}

#divPageContainer #divPlayerContainer > div:first-of-type > div:first-of-type > div:first-of-type {
    height: 100%;
    width: 100%;
}


/* ARTICLE COMPETITION */

.neo-content .article-competition {
    padding-bottom: 19px;
}

.neo-content .article-competition ol,
.neo-content .article-competition .contactInformation {
    padding-left: 0;
    list-style-type: none;
}

.neo-content .article-competition ol ol {
    padding-bottom: 0;
}

.neo-content .article-competition .contactInformation label {
    display: inline-block;
    width: 140px;
    vertical-align: top;
}
.neo-content .article-competition textarea {
    font-size: 10px;
    width: 300px;
    min-height: 60px;
}
.neo-content .article-competition input[type=text],
.neo-content .article-competition input[type=tel],
.neo-content .article-competition input[type=email] {
    width: 300px;
}

.neo-content .article-competition .question > li:first-child {
    font-weight: bold;
    font-size: 1.2em;
}

.neo-content .article-competition ol li, 
.neo-content .article-competition ul li {
    margin-left: 0;
}

.neo-content .article-competition .question li ol li {
    margin: 2px 0px 2px 20px;
}

.neo-content .compo-error {
    color: red;
}

.neo-content .compo-success {
    color: green;
}

/* ARTICLE POLL */

.tek-article-poll.submitting:before {
    display: block;
    content: "";
    background: #fff;
    opacity: 0.6;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.tek-article-poll .vote-count {
    font-size: 12px;
    color: #999;
}

.tek-article-poll .poll-alt-result {
    height: 7px;
    width: 50%;
    border: 1px solid #ddd;
}

.tek-article-poll .poll-result-bar {
    height: 100%;
    background: #333;
}

/* ARTICLE PRODUCT BOX */

.product-box {
    border-bottom: 1px solid #ccc;
    clear: both;
}

.product-box:first-of-type {
    margin-top: 33px;
}

.product-box:last-of-type {
    margin-bottom: 22px;
    border-bottom: 0px;
}

.product-box header {
    position: relative;
    font-family: "Arial", "Helvetica", "Nimbus Sans", "FreeSans", "Malayalam", sans-serif !important;
    padding: 10px;
    margin: 0;
    background: #f0f0f0 none no-repeat scroll 98% 50%;
}

.product-box:first-of-type header {
    background-image: url("../images/priceguide/prisguideLogo.png");
}

.product-box header .toggle-product-box {
    display: block;
    position: absolute;
    height: 20px;
    width: 20px;
    font-size: 20px;
    font-weight: 700;
    right: 0px;
    top: 15px;
    cursor: pointer;
}

.article h3.product-title {
    line-height: normal;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    vertical-align: middle;
    max-width: 400px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product-box header a {
    color: #000;
    text-decoration: none;
}

.product-box header a:hover {
    text-decoration: underline;
}

.product-data {
    padding: 0 10px 10px;
    border-top: none;
    background: #f0f0f0;
}

.product-data span {
    display: inline-block;
    vertical-align: middle;
}

.article .product-data h4 {
    margin: 0 0 5px;
    border-bottom: 1px dotted #bbb;
    font-size: 1.3em;
}

.article .product-data h4 .pg-stars {
    top: 5px;
}

.product-data .product-image {
    float: left;
    width: 182px;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.full-width .product-data .product-image {
    width: 362px;
    max-width: 50%;
}

.product-data .product-image img {
    max-width: 100%;
    height: auto !important;
}

.product-data .product-image a {
    display: block;
    line-height: 0;
}

.neo-content .product-data ul, .neo-content .product-data ol {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    font-size: 12px;
    line-height: 18px;
}

.product-data li {
    margin: 0px !important;
}

.product-data .product-prices {
    padding-left: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.full-width .product-data .product-prices {
    float: right;
    width: 50%;
}

.article .product-data .product-prices li {
    border-bottom: 1px dotted #ccc;
}

.product-data .product-prices li.more-prices {
    padding-top: 10px;
    border-bottom: 0px none;
    text-align: right;
}

.product-data .product-prices li.more-prices a {
    text-decoration: none;
    font-weight: 700;
}

.product-data .product-prices .shop-name {
    width: 25%;
}

.product-data .product-prices .stock {
    color: #509400;
    width: 37%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-data .product-prices .not-in-stock {
    color: #b72727;
}

.product-data .product-prices .price {
    width: 11.5%;
    text-align: right;
}

.product-data .product-prices .price a {
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

.product-data .product-prices .price a:hover {
    text-decoration: underline;
}

.product-data .product-prices .buy-button {
    width: 26.5%;
    text-align: right;
}

.product-data .more-details,
.product-data .more-reviews {
    margin: 4px 0 0 0;
    padding: 0;
    float: left;
    clear: both;
}

.product-data .product-details {
    float: left;
    width: 50%;
    padding: 0 5px 0 0;
}

.product-data .product-details span:not(.bool) {
    width: 49%;
}

.product-data .product-details .bool {
    position: relative;
    top: 5px;
    display: inline-block;
    text-indent: -9999px;
    width: 11px;
    background: url("http://www.prisguide.no/images/prisguide.no/btn-sprite-20110121.png") no-repeat transparent;
}

.product-data .product-details .bool.bool-1 {
    background-position: -376px -109px;
}

.product-data .product-details .bool.bool-0 {
    background-position: -348px -109px;
}

.product-data .product-reviews {
    float: right;
    width: 50%;
    padding: 0 0 0 5px;
}

/* SIDEBAR PRODUCT INFO */

aside .product-info {
    padding-bottom: 33px;
    line-height: 26px;
}

aside .product-info > ul > li {
    margin-bottom: 33px;
}

aside .product-info .collapsed-product header {
    margin-bottom: 10px;
}

.article aside .product-info h3 {
    font-weight: 700;
    font-size: 16px;
    font-family: Helvetica, Arial, sans-serif;
}

.article aside .product-info h3 > * {
    vertical-align: middle;
    display: inline-block;
}

.article aside .product-info h3 .platform-name {
    font-weight: 400;
}

aside .product-info h3 a {
    color: #333;
    text-decoration: none;
}

aside .product-info h3 a:hover {
    text-decoration: underline;
}

aside .product-info h3 .platform {
    font-size: 0.4em;
}

.article aside .product-info header {
    margin-bottom: 10px;
}

.article aside .product-info .product-image {
    float: left;
    width: 100px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.article aside .product-info .product-image img {
    display: block;
}

.article aside .product-info .product-details {
    float: left;
    width: 190px;
}

aside .product-info h4 {
    clear: both;
    font-size: 14px;
    line-height: 1.2em;
    padding-bottom: 4px;
    margin-bottom: 4px;
    border-bottom: 1px solid #ccc;
}

aside .product-info ul ul {
    margin-bottom: 15px;
}

aside .product-info li {
    list-style-type: none;
    border-bottom: 1px dotted #999;
}

aside .product-info li:last-child {
    border-bottom: none;
    margin-bottom: 0px;
}

aside .product-info span {
    vertical-align: middle;
    display: inline-block;
}

aside .product-info .button {
    margin-bottom: 15px;
}

aside .product-info li:last-child .button {
    margin-bottom: 0px;
}

aside .product-info .price {
    width: 20%;
    text-align: right;
}

aside .product-info .price a {
    color: #333;
    text-decoration: none;
}

aside .product-info .buy-button {
    width: 28%;
    text-align: right;
}

.article aside .product-info .product-prices {
    line-height: 1.3em;
}

.article aside .product-info .product-prices li {
    padding: 3px 0;
}

.article aside .product-info .product-prices li .shop-name {
    width: 47%;
    font-weight: 700;
}

.article aside .product-info .product-prices li .stock {
    width: 5%;
}

.article aside .product-info .product-prices li .shop-name a,
.article aside .product-info .product-prices li .buy-button a {
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.article aside .product-info .product-prices li a:hover {
    text-decoration: underline;
}

.article aside .product-info .product-prices li .buy-button a {
    font-weight: 700;
}

.article aside .product-info .product-prices li.show-all-prices {
    padding-top: 6px;
}

aside .product-info .product-gallery-images {
    margin-bottom: 15px;
}

aside .product-info .product-gallery-images .gallery-image {
    display: block;
    float: left;
    width: 96px;
    margin: 0 6px 6px 0;
}

aside .product-info .product-gallery-images .gallery-image:nth-of-type(3n) {
    margin-right: 0px;
}

aside .product-info .product-gallery-images .gallery-image img {
    display: block;
    margin: 0px;
}

aside .product-info .product-compare {
    margin-top: 0;
    margin-bottom: 33px;
}

aside .product-info .product-compare select {
    width: 210px;
    margin-bottom: 11px;
}

aside .product-info .product-compare .compare-image {
    float: right;
    min-width: 80px;
    min-height: 70px;
    line-height: 0px;
}

aside .product-info .product-compare .button {
    height: auto;
}

.product-user-ratings {
    margin-bottom: 22px;
}

.product-user-ratings .pg-stars {
    margin-top: -7px;
}

.product-user-rating-bars {
    height: 50px;
    display: table-cell;
}

.product-user-rating-bars div {
    width: 22px;
    background-color: #ccc;
    min-height: 1px;
    display: inline-block;
    vertical-align: bottom;
}

/* NEW PRODUCT BOX */

.product-rating-placement .placement-value {
    margin: 15px 0;
    font-size: 24px;
}

.article > .product-rating-placement {
    margin: 0 0 22px;
    padding: 22px 0 0;
    border-top: 1px solid #ddd;
}

.product-rating-box {
    border-top: 1px solid #ddd;
    padding-top: 22px;
}

.product-rating-box.outdated {
    filter: gray;
    -o-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    opacity: 0.6;
}

.product-rating-box > h3 {
    font-size: 2em;
    margin: 0 0 0.5em;
}

.product-rating-box > .review-publish-time {
    margin: 0 0 2em;
}

.product-rating-box .rating-texts {
    margin: 0 22px 22px 0;
    line-height: 1.4em;
    color: #555;
}

.product-rating-box .rating-texts i {
    font-size: 14px;
}

.product-rating-box .rating-score {
    background: #f2f2f2;
    height: 140px;
    padding: 18px 10px;
    margin-top: 60px;
}

.product-rating-box .rating-conclusion {
    padding: 0 10px 0 0;
    font-size: 26px;
    line-height: 1.2em;
}

.product-rating-box .rating-conclusion:before {
    content: "\f10d";
    font-family: 'FontAwesome';
    display: inline-block;
    font-size: 0.6em;
    margin-right: 8px;
}

.product-rating-box .rating-conclusion:after {
    content: "\f10e";
    font-family: 'FontAwesome';
    display: inline-block;
    font-size: 0.6em;
    margin-left: 8px;
}

.product-rating-box .score-badge {
    margin-top: -70px;
}

.product-rating-box .user-score {
    padding: 0 22px;
}

.product-rating-box .user-score h3 {
    font-weight: 400;
    font-size: 16px;
    margin: 0 0 5px;
}

.product-rating-box .user-score p {
    font-size: 12px;
    margin: 0 0 5px;
}

.product-rating-box .user-score p:last-child {
    margin-bottom: 0px;
}

.product-rating-box .user-score p a {
    color: #333;
    font-weight: 700;
}

.product-rating-box .user-score .user-score-value {
    font-size: 40px;
    line-height: 1em;
    margin: 0 0 5px;
}

.product-rating-box .user-score .user-score-value a {
    color: #333;
    text-decoration: none;
}

.product-rating-box .user-score .user-score-value a:hover {
    text-decoration: underline;
}

.product-rating-box .user-score .user-score-value .user-score-top {
    color: #aaa;
}

.product-rating-box .score-extras {
    width: 190px;
}

.product-rating-box .score-extras .user-score {
    background: #f2f2f2;
    padding: 10px 0;
    margin: 0 0 75px;
}

.product-rating-box .sub-ratings {
    width: 190px;
    margin-top: -79px;
    margin-right: -10px;
}

.product-rating-box .sub-ratings.sub-ratings-8 {
    margin-top: -53px;
}

.product-rating-box .sub-ratings:before {
    content: "";
    background: #fff;
    top: 0px;
    min-height: 240px;
    right: 0px;
    width: 150%;
    position: absolute;
}

.product-rating-box .sub-ratings li {
    background: #eee;
    margin: 0 0 2px;
}

.product-rating-box .sub-ratings li > span.block {
    padding: 5px 10px;
}

.product-rating-box .sub-ratings li .sub-rating-value {
    background: #333;
    text-shadow: 1px 1px 0px #333, -1px -1px 0px #333, 1px -1px 0px #333, -1px 1px 0px #333;
}

.product-rating-box .sub-ratings li .price-class-value {
    top: 0;
    bottom: 0;
    right: 10px;
    vertical-align: middle;
    padding: 5px 0;
    position: absolute;
}

.product-rating-box .sub-ratings .price-class.low {
    background: rgb(0, 180, 0);
}
.product-rating-box .sub-ratings .price-class.medium {
    background: rgb(180, 180, 0);
}
.product-rating-box .sub-ratings .price-class.high {
    background: rgb(220, 120, 0);
}
.product-rating-box .sub-ratings .price-class.very-high {
    background: rgb(220, 0, 0);
}

.product-select {
    border-bottom: 1px solid #ddd;
    padding: 0 0 10px;
}

.product-box-bottom {
    clear: both;
    float: left;
    width: 100%;
    margin: 30px 0 22px;
}

.product-box-bottom header {
    padding: 0 0 15px;
    margin: 0;
}

.product-box-bottom header h2 {
    font-size: 22px;
    position: relative;
    font-weight: 400;
}

.product-box-bottom header h2 a {
    text-decoration: none;
    color: #333;
}

.product-box-bottom header h2 a:hover {
    text-decoration: underline;
}

.product-box-bottom header h2 span.platform-title {
    color: #888;
}

.product-box-bottom header h2 .other-platforms {
    position: absolute;
    bottom: -3px;
    right: 0px;
    font-size: 12px;
    margin: 0px;
}

.product-box-bottom header h2 .other-platforms .platform {
    float: left;
}

.product-box-bottom header h2 .other-platforms a.platform {
    margin-left: 5px;
    color: #fff;
}

.product-box-bottom header h2 .other-platforms a.selected-platform {
    color: #333;
}

.product-box-bottom header h2 .other-platforms .no-platform {
    background: #f0f0f0;
}

.product-box-bottom .product-box-content > * {
    float: left;
    width: 50%;
}

.product-box-bottom .product-box-content > *:before {
    height: 22px;
    right: 0px;
}

.product-box-bottom .product-box-content > *:first-child {
    padding-right: 11px;
}

.product-box-bottom .product-box-content > *:last-child {
    padding-left: 11px;
}

.product-box-bottom .product-box-content .product-image {
    float: left;
    margin-right: 14px;
    width: 160px;
    display: block;
}

.product-box-bottom .product-box-content .product-image .no-image,
aside .product-info .product-image .no-image {
    display: block;
    background: #fff;
    background-image: -webkit-repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0,0,0,.05) 4px, rgba(0,0,0,.05) 8px);
    background-image: -moz-repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0,0,0,.05) 4px, rgba(0,0,0,.05) 8px);
    background-image: -ms-repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0,0,0,.05) 4px, rgba(0,0,0,.05) 8px);
    background-image: -o-repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0,0,0,.05) 4px, rgba(0,0,0,.05) 8px);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0,0,0,.05) 4px, rgba(0,0,0,.05) 8px);
    border: 1px solid #ddd;
    height: 200px;
}

aside .product-info .product-image .no-image {
    height: 120px;
}

.product-box-bottom .product-box-content .product-details {
    margin-left: 174px;
}

.product-box-bottom .product-box-content h4 {
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    padding: 0 0 8px;
}

.product-box-bottom .product-box-content ul {
    margin-bottom: 15px;
}

.product-box-bottom .product-box-content ul li {
    list-style-type: none;
    border-bottom: 1px dotted #ddd;
    padding: 5px 0;
}

.product-box-bottom .product-box-content .product-prices li > * {
    display: inline-block;
    min-height: 1px;
    line-height: 1em;
    vertical-align: middle;
}
.product-box-bottom .product-box-content .product-prices li > * * {
    vertical-align: middle;
    display: inline-block;
}

.product-box-bottom .product-box-content .product-prices .shop {
    width: 50%;
}

.product-box-bottom .product-box-content .product-prices .shop a {
    text-decoration: none;
}

.product-box-bottom .product-box-content .product-prices .stock {
    width: 15%;
    text-align: center;
}

.product-box-bottom .product-box-content .product-prices h4 .stock {
    margin-left: 140px;
    font-weight: 400;
    font-size: 12px;
    color: #aaa;
}

.product-box-bottom .product-box-content .product-prices h4 .price-alert {
    float: right;
    font-weight: 400;
    font-size: 12px;
}

.product-prices .stock .icon-ok {
    color: #66c800;
}

.product-prices .stock .icon-remove,
.product-prices .stock .icon-question {
    color: #aaa;
}

.product-box-bottom .product-box-content .product-prices .price {
    width: 15%;
    text-align: right;
}

.product-box-bottom .product-box-content .product-prices .buy {
    width: 20%;
    text-align: right;
}

.product-box-bottom .product-box-content .product-prices .pg-buy {
    font-size: 10px;
    text-transform: none;
}


/* PRISGUIDE STARS */

.pg-stars {
    background: url("http://www.prisguide.no/images/main/rate-sprite.png") -4px -323px no-repeat transparent;
    display: block;
    height: 22px;
    overflow: hidden;
    position: relative;
    width: 125px;
}

.pg-stars a, .pg-stars span, .pg-stars div {
    background: url("http://www.prisguide.no/images/main/rate-sprite.png") -5px -93px no-repeat transparent;
    height: 22px;
    left: 0px;
    position: absolute;
    text-indent: -9999px;
    top: 0px;
}

.pg-stars-small {
    width: 73px;
    height: 12px;
    background-position: -5px -492px;
}

.pg-stars-small a, .pg-stars-small span, .pg-stars-small div {
    height: 12px;
    background: url("http://www.prisguide.no/images/main/rate-sprite.png") no-repeat -5px -355px;
}

.pg-stars-1 {
    width: 11%;
}

.pg-stars-2 {
    width: 18%;
}

.pg-stars-3 {
    width: 31%;
}

.pg-stars-4 {
    width: 38%;
}

.pg-stars-5 {
    width: 51%;
}

.pg-stars-6 {
    width: 58%;
}

.pg-stars-7 {
    width: 71%;
}

.pg-stars-8 {
    width: 80%;
}

.pg-stars-9 {
    width: 90%;
}

.pg-stars-10 {
    width: 100%;
}



/**
 * COMMENTS
 *
 */

#discussion p.citation {
    color: #333;
    margin: 0 15px;
    font-size: 0.9em;
    border-left: 1px solid #ddd;
    padding: 2px 12px;
}

#discussion p.citation .snapback {
    display: none;
}

#discussion .ipsBlockquote {
    border-left: 1px solid #ddd;
    margin: 0 15px 11px;
    color: #888;
    padding: 6px 12px;
}

#comments,
#related {
    font-size: 24px;
    font-weight: 700;
    font-family: Helvetica, Arial, sans-serif;
}

cite {
    display: block;
    font-weight: bold;
}

.diskusjonLogo {
    padding-left: 30px;
    background: url(http://www.diskusjon.no/favicon.ico) no-repeat 0 4px;
}

#discussion {
    max-width: 550px;
    font-size: 13px;
}

#userAction {
    clear: both;
    margin-bottom: 10px;
}

#userAction form p {
    float: none;
    margin: 0;
}

#userAction form p span {
    margin-top: 8px;
    color: #999;
    float: right;
}

#userAction input[type="submit"] {
    margin-right: 10px;
    margin-top: 10px;
}

#userAction .button.tek-register {
    margin-top: 10px;
}

ol.posts #userAction {
    margin-top: 10px;
}

#userAction label {
    display: block;
    font-weight: bold;
}

#userAction input[type=text],
#userAction input[type=password] {
    border: 1px solid #ccc;
    padding: 2px;
    margin-bottom: 4px;
    margin-right: 10px;
}

#discussionSubmit {
    margin-top: 4px;
}

#morePosts.button {
    margin-left: 0;
    margin-right: 0;
    display: block;
    font-weight: 700;
}

#discussionSubmit.button {
    margin-top: 5px;
    font-size: 13px;
    padding: 3px 10px;
    font-weight: 700;
}

#discussion h3 {
    display: none;
}

#discussion .spoilertop {
    background: #E4EAF2 url(http://static.tek.no/diskusjon.no/gfx/css_img_spoiler.gif) no-repeat right;
    border: 1px dotted #000;
    color: #000;
    width: 90%;
    font-weight: bold;
    font-size: 10px;
    margin: 8px auto 0 auto;
    padding: 4px;
    cursor: pointer;
}

#discussion .spoilermain {
    background: #FAFCFE;
    border: 1px dotted #000;
    border-top: 0;
    color: #465584;
    width: 90%;
    padding: 4px;
    margin: 0 auto 8px auto;
}


#discussion textarea {
    box-shadow: inset 0px 2px 4px 0px rgba(0,0,0,0.1);
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    resize: none;
    overflow: hidden;
    padding: 11px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-family: Arial, Verdana, Tahoma, sans-serif;
    font-size: 12px;
    width: 366px;
    height: 80px;
}

#discussion textarea.focus {
    height: 140px;
}

#discussion textarea:focus {
    outline: none;
}

textarea.loading {
    background-color: #ddd;
}

#discussion .posts li.noComments {
    font-size: 15px;
    list-style: none;
    color: #666;
}

#discussion .actions {
    list-style: none;
    float: right;
    margin-top: 22px;
    font-size: 11px;
}

#discussion .actions li {
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    opacity: .5;
    float: left;
    padding: 2px 5px;
    margin-right: 5px;
    margin-bottom: 0px;
}

#discussion .actions li.reputation {
    position: relative;
    margin-right: 0;
    cursor: pointer;
}

#discussion .likeAction {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    top: 0px;
}

#discussion .actions a {
    color: #000;
    text-decoration: none;
}

#discussion a.reply {
}

#discussion .actions li:hover {
    opacity: 1;
}

#discussionSubmit[disabled] {
    color: #777;
}

div.posted {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: #f9f8f3;
    border: 1px solid #b2ab72;
    padding: 4px;
}

#member {
    text-align: right;
    float: right;
    width: 80px;
    margin-left: 14px;
}

#member .avatar img {
    max-width: 80px;
}

ol.posts #member .avatar {
    float: none;
    width: auto;
}

#member a {
    display: none;
}

#discussion ol.posts {
    padding-top: 11px;
    list-style: none;
}

#discussion ol iframe {
    max-width: 100%;
}

#discussion ol {
    clear: right;
    padding: 0;
    margin: 0;
}

#discussion ol.posts > li {
    clear: left;
    line-height: 20px;
    margin-bottom: 22px;
    padding: 4px 1px 0 1px;
}

#discussion .author {
    border-top: 1px dotted #bbb;
    overflow: hidden;
    padding-top: 11px;
    padding-bottom: 11px;
}

#discussion .posts .avatar {
    width: 54px;
    min-height: 25px;
    float: left;
    position: relative;
    margin-right: 10px;
    background: #fff;
    padding: 1px;
    border: 1px solid #ddd;
    text-align: center;
}

#discussion .posts .avatar img {
    display: block;
    max-width: 100% !important;
}

#discussion .tekstra-badge {
    display: none;
}

#discussion .author span {
    margin-top: 11px;
    float: left;
    color: #888;
}

#discussion .loading {
    text-indent: -99999px;
    height: 32px;
    width: 32px;
    display: block;
    margin: 20px auto;
    background: url(../images/main/spinner.gif?1) no-repeat 50% 50%;
}

#discussion .options p {
    float: right;
    margin-top: 10px;
}

#discussion div.content {
    overflow: hidden;
}

#discussion div.content .bbc_emoticon {
    vertical-align: -6px;
}

#discussion .content img {
    max-width: 100%;
}

#discussion strong.sort,
#discussion .changeSort {
    display: inline-block;
    margin: 10px 6px 5px 0;
}

#discussion .changeSort.selected {
    font-weight: bold;
    color: #000;
    text-decoration: none;
    cursor: default;
}


/* SOCIAL SHARE */
.fb-like-box {
    max-width: 300px;
    overflow: hidden;
}

.tek-social-share {
    margin: 0 0 30px;
}

.tek-social-share ul li {
    margin: 0 10px 0 0;
}

.tek-social-share a {
    padding: 5px 10px;
    background: #333;
    color: #fff;
    line-height: 1em;
    border-left: 1px solid rgba(0,0,0,0.1);
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
    text-transform: uppercase;
    position: relative;
}

.tek-social-share a:hover {
    color: #fff;
}

.tek-social-share .facebook-share a {
    background-color: #3b5998;
}

.tek-social-share .twitter-share a {
    background-color: #2c77ba;
}

.tek-social-share .google-share a {
    background-color: #dd4b39;
}

.tek-social-share a:after {
    position: absolute;
    display: block;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    content: "";
    background: -webkit-linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0));
    background: -moz-linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0));
    background: -ms-linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0));
    background: -o-linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0));
    background: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0));
    -webkit-transform: opacity 0.2s;
    -moz-transform: opacity 0.2s;
    -ms-transform: opacity 0.2s;
    -o-transform: opacity 0.2s;
    transform: opacity 0.2s;
}

.tek-social-share a:hover:after {
    opacity: 0;
}

.tek-social-share a span {
    font-size: 12px;
}

.social-share ul > li {
    list-style: none !important;
    margin: 4px 0 10px !important;
    padding: 0 !important;
    display: inline-block;
}

.social-share .mobile-share {
    display: none;
}

.social-share.bottom ul > li {
    line-height: 20px;
    position: relative;
    vertical-align: bottom;
    bottom: 0px;
}

.social-share.bottom ul > li > div,
.social-share.bottom .fb_iframe_widget span {
    position: relative;
    bottom: 0;
    vertical-align: bottom !important;
}

.social-share.vertical {
    position: absolute;
    float: left;
    margin-left: -70px;
}

.social-share.vertical ul > li {
    display: block;
}

.social-share.bottom iframe[src*="twitter"] {
    top: 6px;
    position: relative;
}

.social-share.vertical iframe[src*="twitter"] {
    position: relative;
    left: -3px;
}

.social-share .diskusjon-count {
    text-align: center;
    display: block;
    text-decoration: none;
}

.social-share .diskusjon-count span {
    display: block;
}

.social-share .diskusjon-count .count {
    color: #333;
    background: white;
    border: 1px solid #ccc;
    font-size: 1.2em;
    border-radius: 3px;
    width: 50px;
    padding: 10px;
    position: relative;
    margin-bottom: 7px;
}

.social-share .diskusjon-count .count:after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 17px;
    border-width: 7px 7px 0;
    border-style: solid;
    border-color: white transparent;
    display: block;
    width: 0;
}

.social-share .diskusjon-count .count:before {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 17px;
    border-width: 7px 7px 0;
    border-style: solid;
    border-color: #ccc transparent;
    display: block;
    width: 0;
}

.social-share .diskusjon-count .text {
    color: #fff;
    width: 50px;
    height: 20px;
    font-size: .7em;
    background: #212121 url(../images/main/diskusjonLogo.png) no-repeat scroll 50% 50%;
    background-image: url(../images/main/diskusjonLogo.png), -webkit-linear-gradient(#4e4e4e, #212121);
    background-image: url(../images/main/diskusjonLogo.png), -moz-linear-gradient(#4e4e4e, #212121);
    background-image: url(../images/main/diskusjonLogo.png), -ms-linear-gradient(#4e4e4e, #212121);
    background-image: url(../images/main/diskusjonLogo.png), -o-linear-gradient(#4e4e4e, #212121);
    border-radius: 3px;
}

.social-share .diskusjon-count .text:active {
    box-shadow: inset 1px 1px 5px rgba(0,0,0,0.5);
}

/* AUTHOR PAGE */

.author-page .search-filters {
    border-top: 0px;
}

.author-page .search-filters h1 {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 1.2em;
}

.author-page .author-description {
    line-height: 1.6em;
    color: #666;
    margin: 0 0 15px;
}

.author-page .author-description p {
    margin: 0 0 15px;
}

.author-page .author-description p:last-child {
    margin: 0;
}

.author-page .author-image {
    margin: 0 0 15px;
}

.author-page .search-container {
    padding-left: 22px;
    clear: right;
}

.author-page .search-results thead th {
    color: #fff;
}

.author-page .author-blog > h3 {
    margin: 0 0 22px;
    font-size: 14px;
    background: #333;
    color: #fff;
    padding: 4px;
}

.author-page .preamble {
    border-top: 1px solid #ddd;
    padding: 22px 0 0;
}

.author-page .preamble:first-of-type {
    border-top: 0px;
    padding-top: 0px;
}

.author-page .preamble h2 {
    font-size: 26px;
    margin: 10px 0 15px;
}

/* Feed container */

.feed-container {
    float: left;
    width: 300px;
    margin-left: 14px;
}

.feed-container h4 {
    background: #333;
    color: #fff;
    padding: 5px;
    text-transform: uppercase;
}

.feed-container ul {
    border: 1px solid #ddd;
    padding: 10px;
}

.feed-container li {
    list-style-type: none;
    line-height: 1.4em;
    font-size: 12px;
    margin: 0 0 1em;
    color: #666;
}

.feed-container li:last-child {
    margin: 0px;
}

.feed-container li h5 {
    font-size: 12px;
}

.feed-container a {
    font-weight: 700;
    text-decoration: none;
}

.feed-container a:hover {
    text-decoration: underline;
}


/**
 * Small feed box
 *
 */

.small-feed {
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-right: 14px;
    border-top: 10px solid #333;
    border-bottom: 10px solid #333;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.small-feed .feed-container {
    width: 50%;
    float: left;
    border-right: 1px solid #ddd;
    padding: 15px 10px;
    margin: 0px;
}

.small-feed .feed-container:last-child {
    border-right: none;
}

.small-feed .feed-container h4 {
    background: transparent;
    font-size: 14px;
    text-transform: uppercase;
    color: #333;
    padding: 0px;
    margin-top: 0;
    margin-bottom: 10px;
}

.small-feed .feed-container ul {
    padding: 0px;
    border: 0px none;
}

.small-feed .feed-container li {
    list-style: none;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 10px;
    color: #666;
}

.small-feed .feed-container h5 {
    font-size: 12px;
    font-weight: 400;
    margin: 0 0 5px;
}

.small-feed .feed-container span,
.small-feed .feed-container .post-content {
    display: block;
    font-size: 11px;
    margin: 0 0 5px;
}

.small-feed .feed-container li:last-child,
.small-feed .feed-container span:last-child {
    margin: 0;
}

.small-feed .feed-container .author span {
    display: inline-block;
}

.small-feed .feed-container a {
    font-weight: 700;
    text-decoration: underline;
}



/**
 * Livefeed
 *
 */

.tek-livefeed {
    -webkit-backface-visibility: hidden;
    position: relative;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    background: white;
    width: 300px;
    height: 600px;
    float: right;
    font-size: 11px;
}

.tek-livefeed-468 .tek-livefeed {
    width: 468px;
}

.tek-livefeed > header {
    font-family: Helvetica, sans-serif;
    text-transform: uppercase;
    color: #fff;
    background: #333;
    padding: 4px 5px;
    height: 22px;
    margin: 0px;
}

.tek-livefeed > header h4 {
    font-size: 14px;
}

.tek-livefeed:before {
    content: "";
    height: 45px;
    border-left: 1px solid #ddd;
    top: -21px;
    left: -14px;
    position: absolute;
}

.col-border-top .tek-livefeed:before {
    display: none;
}

.tek-livefeed.tek-active {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transition: opacity .4s;
    -moz-transition: opacity .4s;
    -ms-transition: opacity .4s;
    -o-transition: opacity .4s;
}

.tek-livefeed ol {
    overflow: hidden;
    height: inherit;
    height: 100%;
    list-style: none;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.tek-livefeed ol > * {
    -webkit-transform: translateZ(0px);
}

.tek-livefeed li {
    cursor: pointer;
    padding: 8px 6px 8px 0;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.tek-livefeed a {
    color: #333;
    text-decoration: none;
    display: block;
}

.tek-livefeed li:hover {
    opacity: .7 !important;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -ms-transition: opacity .2s;
    -o-transition: opacity .2s;
    -webkit-backface-visibility: hidden;
}

.tek-livefeed .tek-live-item, 
.tek-livefeed .tek-lazy {
    -webkit-transform: translateZ(0);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
    -ms-transition: opacity .5s;
    -o-transition: opacity .5s;
    -webkit-backface-visibility: hidden;
}

.tek-livefeed .tek-lazy.tek-loaded, 
.tek-livefeed .tek-live-item.tek-live-animate {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.tek-container {
    overflow: hidden;
}

.tek-livefeed h4 {
    font-size: 13px;
    margin: 0 0 5px;
}

.tek-live-details {
    -webkit-transform: translate(0,0) translateZ(0);
    -webkit-backface-visibility: hidden;
    box-shadow: -2px 4px 10px rgba(0, 0, 0, .5);
    padding: 10px;
    border: 1px solid #ccc;
    position: absolute;
    z-index: 100000;
    background-color: #fff;
    width: 300px;
    min-height: 150px;
}

.tek-live-details img {
    float: right;
    margin-right: 10px;
}

.tek-live-details h4 {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 4px;
}

.tek-live-details .count {
    font-size: .8em;
    font-weight: normal;
    white-space: nowrap;
}

.tek-live-details h4 a {
    text-decoration: none;
    color: #333;
}

.tek-live-details h4 a:hover {
    text-decoration: underline;
}

.tek-live-details .authors {
    margin: 10px 0 5px 0;
}

.tek-live-details .authors li {
    font-size: 11px;
    display: inline;
    text-transform: uppercase;
    margin-right: 5px;
}

.tek-live-details p {
    line-height: 20px;
    margin-bottom: 5px;
}

.tek-live-details:before {
    content: '';
    height: 0px;
    width: 0px;
    display: block;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    position: absolute;
    top: 20px;
    z-index: 100002;
}

.tek-live-details:after {
    content: '';
    height: 0px;
    width: 0px;
    display: block;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    position: absolute;
    top: 19px;
    z-index: 100001;
}
.tek-live-details.left-side:before {
    border-left: 10px solid #fff;
    right: -10px;
}
.tek-live-details.left-side:after {
    border-left: 11px solid #ccc;
    right: -11px;
}
.tek-live-details.right-side:before {
    border-right: 10px solid #fff;
    left: -10px;
}
.tek-live-details.right-side:after {
    border-right: 11px solid #ccc;
    left: -11px;
}

/* Specific css for forum items */
.tek-live-details-forum img {
    max-width: 60px;
    float: left;
}

/* Specific css for user review items */
.tek-live-details-user-reviews img,
.tek-live-details-user-streams img,
.tek-live-details-gallery-images img {
    float: none;
    display: block;
    margin: 0 0 10px;
    max-width: 100%;
}

.tek-live-details-user-streams > a {
    position: relative;
    display: block;
}

.tek-live-details-user-streams > a .icon-play-circle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 188px;
    vertical-align: middle;
    text-decoration: none;
    color: #fff;
    opacity: 0.5;
    font-size: 60px;
    text-align: center;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}

.tek-live-details-user-streams > a:hover .icon-play-circle {
    opacity: 1;
}

/* Specific css for article items */
.tek-live-details-article img {
    margin: 10px 0 0 10px;
    max-width: 40%;
}

.tek-live-details-article h4 {
    margin: 10px 0;
    font-size: 18px;
    line-height: 24px;
}

.tek-livefeed li i {
    float: left;
    font-size: 24px;
    color: #ccc;
    margin: 3px 10px 0 0;
}

.tek-livefeed .tek-image {
    float: left;
    width: 50px;
    height: 30px;
    overflow: hidden;
    margin: 3px 10px 0 0;
    position: relative;
}

.tek-livefeed li img {
    width: 50px;
}

.tek-livefeed .tek-description {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.tek-livefeed .tek-live-published {
    margin: 3px 0 0;
    color: #999;
}

.tek-live-tag {
    display: none;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 21px;
    height: 16px;
    border-radius: 2px;
}

.tek-live-tag-diskusjon {
    background: rgba(0,0,0,0.2) url("../images/main/tekLiveTagForum.png") no-repeat scroll 80% 50%; 
}

.tek-live-fade {
    height: 30px;
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.tek-live-fade-top {
    background: -o-linear-gradient(#fff, transparent);
    background: -moz-linear-gradient(#fff, rgba(255,255,255,0));
    background: -ms-linear-gradient(#fff, rgba(255,255,255,0));
    background: -webkit-linear-gradient(#fff, rgba(255,255,255,0));
    background: linear-gradient(#fff, rgba(255,255,255,0));
    display: none;
    top: 22px;
    left: 0px;
}

.tek-live-fade-bottom {
    background: -o-linear-gradient(transparent, #fff);
    background: -moz-linear-gradient(rgba(255,255,255,0), #fff);
    background: -ms-linear-gradient(rgba(255,255,255,0), #fff);
    background: -webkit-linear-gradient(rgba(255,255,255,0), #fff);
    background: linear-gradient(rgba(255,255,255,0), #fff);
    bottom: 0px;
    left: 0px;
}


/* SEARCH TABLE */

.search-container {
    float: right;
    width: 75%;
}

.query-explanation {
    font-size: 11px;
}

.search-results {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 25px;
}

.search-results .even {
    background-color: #f0f0f0;
}

.search-results th,
.search-results td {
    padding: 3px 16px 3px 0;
    text-align: left;
    font-size: 8pt;
    color: #aaa;
}

.search-results thead th {
    background-color: #333;
    text-transform: uppercase;
    font-weight: bold;
    height: 23px;
}

.search-results thead th a {
    text-decoration: none;
    color: #999;
    float: left;
    padding-right: 10px;
}

.search-results thead th a:after {
    content: "▲";
    font-size: .9em;
    margin-left: 2px;
    vertical-align: 1px;
}

.search-results thead th a:hover,
.search-results thead th a.selected {
    color: white;
}

.search-results thead th.desc a:after {
    content: "▼";
}

.search-results thead th.image a:after {
    display: none;
}

.search-results tbody .headline a {
    text-decoration: none;
    color: #444;
    font-size: 12pt;
    letter-spacing: -1px;
}

.search-results tbody .headline a:hover {
    text-decoration: underline;
}

.search-results p a {
    font-weight: bold;
}

.search-results td.image {
    width: 75px;
    height: 50px;
    text-align: center;
}

.search-results div.imageContainer {
    overflow: hidden;
    border: 1px solid #ccc;
    background: white;
    width: 75px;
    margin: 0;
}

.search-results .subscription {
    background: #ABD200;
    color: white;
    padding: 0 5px;
    font-size: 12px;
    text-transform: uppercase;
}

.search-results h4 {
    font-size: 10pt;
    display: inline;
}

.search-results .productReview span {
    float: left;
    width: 63px;
    height: 14px;
}

.search-results .productReview-0 {
    background: url(../images/icons/rating/productReview-0.gif) no-repeat;
}
.search-results .productReview-1 {
    background: url(../images/icons/rating/productReview-1.gif) no-repeat;
}
.search-results .productReview-2 {
    background: url(../images/icons/rating/productReview-2.gif) no-repeat;
}
.search-results .productReview-3 {
    background: url(../images/icons/rating/productReview-3.gif) no-repeat;
}
.search-results .productReview-4 {
    background: url(../images/icons/rating/productReview-4.gif) no-repeat;
}
.search-results .productReview-5 {
    background: url(../images/icons/rating/productReview-5.gif) no-repeat;
}
.search-results .productReview-6 {
    background: url(../images/icons/rating/productReview-6.gif) no-repeat;
}
.search-results .productReview-7 {
    background: url(../images/icons/rating/productReview-7.gif) no-repeat;
}
.search-results .productReview-8 {
    background: url(../images/icons/rating/productReview-8.gif) no-repeat;
}
.search-results .productReview-9 {
    background: url(../images/icons/rating/productReview-9.gif) no-repeat;
}
.search-results .productReview-10 {
    background: url(../images/icons/rating/productReview-10.gif) no-repeat;
}

[class^="dice-"],
[class*=" dice-"] {
    background: url(../images/main/dice-all.png) no-repeat;
    display: inline-block;
    width: 33px;
    height: 33px;
}

[class^="dice-small-"],
[class*=" dice-small"] {
    width: 22px;
    height: 22px;
}

.dice-6 {
    background-position: 0 0;
}

.dice-5 {
    background-position: -33px 0;
}

.dice-4 {
    background-position: -66px 0;
}

.dice-3 {
    background-position: -99px 0;
}

.dice-2 {
    background-position: -132px 0;
}

.dice-1 {
    background-position: -165px 0;
}

.dice-small-6 {
    background-position: 0px -33px;
}

.dice-small-5 {
    background-position: -22px -33px;
}

.dice-small-4 {
    background-position: -44px -33px;
}

.dice-small-3 {
    background-position: -66px -33px;
}

.dice-small-2 {
    background-position: -88px -33px;
}

.dice-small-1 {
    background-position: -110px -33px;
}

.search-results td.headline {
    padding-top: 10px;
    padding-bottom: 10px;
}

.search-filters h3 {
    font-size: 1.2em;
    padding-bottom: 2px;
    margin-bottom: 2px;
    border-bottom: 1px solid #eee;
    color: #333;
}

.search-filters ul {
    list-style: none;
}

.search-results .techinfo,
.search-results p {
    font-weight: normal;
}

.search-results .image {
    padding-right: 3px;
}

.search-results .articleType {
    text-transform: lowercase;
}

.search-results .published {
    width: 80px;
}

.search-results .price {
    width: 40px;
}

.search-results td.price a {
    font-size: 11pt;
    font-weight: bold;
    letter-spacing: -1px;
}

.search-results .headline {
    padding-left: 14px;
    text-align: left;
    width: 360px;
}

.search-results .headline h4 {
    line-height: 1.2em;
}

.search-results .headline .article-type-prefix {
    font-size: 0.8em;
    color: #999;
}

/* FILTERS */
.search-filters {
    float: left;
    width: 25%; 
    padding: 10px 10px 10px 0;
    border-top: 23px solid #333;
}

.search-filters input[type=search] {
    width: 140px;
}

.category-filter {
    color: #999;
    font-size: 8pt;
}

.category-filter .cat {
    padding: 5px 0 5px 0;
}

.category-filter ul {
    padding: 0 0 15px 0;
}

.category-filter .cat a,
.category-filter .selected {
    font-weight: bold;
    font-size: 12pt;
    letter-spacing: -1px;
}

.category-filter .selected {
    color: #444;
}

.category-filter .cat a.unset-category {
    display: block;
    font-size: 9pt;
    letter-spacing: 0;
}

.category-filter ul ul li.cat {
    padding: 0px;
}

.category-filter ul ul .cat a {
    font-weight: normal;
    font-size: 8pt;
    letter-spacing: 0;
    margin-left: 10px;
}

/* OTHER STUFF */

.search-word-filter {
    padding-bottom: 19px;
}

.search-word-filter .text {
    width: 65%;
    float: left;
    border: 1px solid #ccc;
    height: 20px;
}

.search-word-filter .submit {
    width: 30%;
    float: right;
}

/* Review search */

.review-search {

}

.review-search .category-tabs a {
    background: #999;
    color: #eee;
    padding: 5px 10px;
    border: 2px solid #fff;
}

.review-search .category-tabs a.selected {
    color: #333;
    background: #f0f0f0;
    border-color: transparent;
}

.review-search > p {
    color: #666;
    font-size: 14px;
    line-height: 1.6em;
    font-weight: 700;
    margin: 0 0 20px;
    text-align: right;
}

.review-search .review-list {
    list-style-type: none;
    padding: 0 0 22px 14px;
    float: left;
    width: 741px;
}

.review-search .review-list li {
    padding: 0 0 10px;
    border-bottom: 1px solid #ddd;
    margin: 0 0 22px;
}

.review-search .review-list li:last-child {
    border: 0px;
    margin: 0px;
    padding: 0px;
}

.review-search .review-list li.review-sorting {
    text-align: right;
    background: #f0f0f0;
    font-weight: 700;
    padding: 4px 10px;
}

.review-search .review-list li.review-sorting .show-filters {
    display: none;
}

.review-search .review-list li .score-badge .score-value {
    margin-top: 16px;
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 20px;
    height: 20px;
}

.review-search .image {
    float: left;
    width: 100px;
    text-align: center;
}

.review-search .header .image {
    text-align: left;
}

.review-search .image img {
    max-width: 100%;
    max-height: 100px;
    display: inline-block;
}

.review-search .image .platform {
    display: block;
}

.review-search .product-review-details {
    margin-left: 122px;
}

.review-search .score-badge {
    float: right;
}

.review-search .review-list li h2 {
    font-size: 20px;
    margin: 0;
    line-height: 1.2em;
}

.review-search .review-list li h2 a {
    color: #333;
    text-decoration: none;
}

.review-search .review-list li a:hover {
    text-decoration: underline;
}

.review-search .review-list li h2 .platform-name {
    font-weight: 400;
    font-size: 0.8em;
    color: #999;
}

.review-search .review-list li h4 {
    margin: 5px 0 5px;
    font-size: 16px;
}

.review-search .review-list li p {
    color: #aaa;
}

.review-search .review-list li .review-date {
    margin-top: 7px;
}

.review-search .review-list li .flavortext {
    margin: 20px 0 0;
    text-align: right;
    float: right;
}

.review-search .review-list li p .price {
    color: #999;
}

.review-search .review-list li .product-review-details > .price {
    font-size: 1.8em;
    font-weight: 200;
}

.review-search .review-list li .product-review-details > * {
    max-width: 90%;
}

.review-search .review-list li blockquote {
    position: relative;
    font-size: 16px;
    line-height: 1.2em;
    margin: 5px 0 0px;
    font-weight: 300;
    color: #666;
}

.review-search .review-list li blockquote a {
    color: #666;
    text-decoration: none;
}
/*
.review-search .review-list li blockquote:before {
    content: "\f10d";
    font-family: 'FontAwesome';
    display: inline-block;
    font-size: 0.4em;
    margin-right: 3px;
    top: -8px;
    position: relative;
}

.review-search .review-list li blockquote:after {
    content: "\f10e";
    font-family: 'FontAwesome';
    display: inline-block;
    font-size: 0.4em;
    margin-left: 3px;
}
*/
.review-search .aside-one-third {
    width: 215px;
}

.review-search .review-search-filters h4 {
    margin-bottom: 10px;
}

.review-search .review-search-filters ul {
    list-style-type: none;    
}

.review-search .review-search-filters .button {
    margin: 10px 0 22px;
}

.review-search .review-search-filters label {
    display: block;
    padding: 4px 0;
}

.review-search .review-search-filters label:hover {
    background: #f0f0f0;
}

.review-search .review-search-filters label > * {
    display: inline-block;
    vertical-align: middle;
}

.review-search .review-search-filters select {
    margin-bottom: 22px;
}

.review-search .review-search-filters ul ul {
    padding-left: 15px;
    margin: 5px 0 22px;
    list-style-type: disc;
}

.review-search .review-search-filters .category-select {
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 700;
    margin: 0 0 1em;
}

.review-search .review-search-filters .selected-category {
    margin: 0 0 1em;
}

.review-search .review-search-filters .selected-category h3 {
    font-size: 16px;
    margin: 0 0 1em;
}


/* MAIN SEARCH */

.main-search {
    line-height: 1.4em;
}

.main-search-form {
    margin-bottom: 30px;
}

.main-search-form > * {
    display: inline-block;
    vertical-align: middle;
}

.main-search .search-articles.results {
    width: 60%;
    float: left;
    padding-right: 14px;
}

.main-search .search-articles.results:before {
    right: 0px;
}

.main-search .search-articles .no-hits {
    margin: 1em 0;
}

.main-search .search-priceguide.results,
.main-search .search-forums.results,
.main-search .search-shortnews.results,
.main-search .search-teams.results {
    width: 40%;
    float: right;
    clear: right;
    padding-left: 14px;
    margin-bottom: 30px;
}

.main-search .search-priceguide.results:before,
.main-search .search-forums.results:before,
.main-search .search-shortnews.results:before,
.main-search .search-teams.results:before {
    display: none;
}

.main-search header h3 {
    font-size: 16px;
}

.main-search header h3 .hits {
    font-size: .6em;
    color: #888;
}

.main-search ul {
    list-style: none;
}

.main-search li {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.main-search li:last-child {
    border-bottom: 0px;
}

.main-search li > * {
    float: left;
}

.main-search .search-articles .image {
    padding-right: 10px;
    width: 34%;
    max-width: 180px;
}

.main-search .search-articles .image a {
    display: block;
    position: relative;
}

.main-search .search-articles .image img {
    max-width: 100%;
}

.main-search .search-articles .title {
    width: 66%;
}

.main-search .search-articles h2 {
    margin-bottom: 10px;
    line-height: 1.4em;
}

.main-search .search-articles h2 a {
    color: #000;
    text-decoration: none;
}

.main-search .search-articles h2 a:hover {
    text-decoration: underline;
}

.main-search .search-articles p {
    margin-bottom: 10px;
}

.main-search .search-articles time {
    color: #999;
}

.main-search .search-priceguide .product .image {
    width: 20%;
    padding-right: 10px;
}

.main-search .search-priceguide .product .image a {
    max-width: 100%;
}

.main-search .search-priceguide .product .image img {
    max-width: 100%;
}

.main-search .search-priceguide .product .details {
    width: 80%;
}

.main-search .search-priceguide .product h3 {
    margin-bottom: 5px;
}

.main-search .search-priceguide .product h3 a {
    color: #000;
    text-decoration: none;
}

.main-search .search-priceguide .product h3 .platform-name {
    font-weight: 400;
}

.main-search .search-priceguide .product a:hover {
    text-decoration: underline;
}

.main-search .search-priceguide .product .category {
    color: #666;
    text-decoration: none;
    margin-bottom: 5px;
    display: inline-block;
}

.main-search .search-priceguide .product p {
    color: #999;
    margin-bottom: 5px;
}

.main-search .search-teams li {
    border-bottom: 1px solid #ddd;
}

.main-search .search-teams li .image {
    padding: 1px;
    border: 1px solid #ddd;
    margin-right: 10px;
}

.main-search .search-teams li h3 {
    margin: 0 0 10px;
}

.main-search .search-forums.results p {
    margin: 7px 0;
}

.search-forums h3 a {
    color: #000;
    text-decoration: none;
}

.search-forums h3 a:hover {
    text-decoration: underline;
}

.search-forums .meta {
    color: #999;
    font-size: 11px;
}

.main-search .search-shortnews li h3 {
    margin: 0 0 8px;
}

.main-search .search-shortnews .description {
    margin: 0 0 5px;
}

.main-search .search-shortnews .publish-time {
    color: #999;
}

/* Article search */

.search-results .headline .prefixArticleType {
    font-size: 0.8em;
    color: #999;
}

.article-search .results .headline .prefixArticleType {
    display: block;
    font-size: 9pt;
    text-transform: uppercase;
    color: #666;
}
.article-search .results .headline h4 {
    font-size: 13pt;
    padding: 2px 0;
}
.article-search .results .headline h4 a {
    color: #333;
    text-decoration: none;
}
.article-search .results .headline p {
    color: #aaa;
    font-weight: normal;
    font-size: 8pt;
}
.article-search .results .headline {
    vertical-align: top;
}
.article-search .results {
    float: right;
    width: 740px;
}
.article-search .filter {
    width: 200px;
}
.article-search .filter ul {
    list-style-type: none;
}

.article-search .breadcrumbs {
    margin-bottom: 8px;
}

.filter h3 {
    border-bottom: 1px solid #CCCCCC;
    clear: left;
    font-family: Georgia, Times,serif;
    font-size: 11pt;
    font-weight: normal;
    letter-spacing: -1px;
    margin-bottom: 7px;
    padding-bottom: 4px;
    text-transform: uppercase;
}

.filter {
    padding-bottom: 10px;
    font-size: 8pt;
    color: #999;
}

.filter .query button:hover {
    background: #ccc;
}
.filter .query button {
    padding: 4px 8px;
    background: #eee;
    float: right;
    border: 1px solid silver;
}
.filter .query input {
    font-size: 12pt;
    width: 160px;
    border: 1px solid silver;
    height: 24px;
    padding: 0;
    margin: 0;
}
.filter .query {
    padding: 0 0 10px 0;
}
.filter ul {
    padding-bottom: 15px;
}

.filter a {
    font-size: 9pt;
}

.filter li {
    padding: 3px 3px 3px 7px;
}
.filter .selected {
    font-size: 10pt;
    font-weight: bold;
    background-color: ghostWhite;
    padding: 3px 3px 3px 7px;
    -webkit-background-clip: content-box;
    -moz-background-clip: content-box;
    -ms-background-clip: content-box;
    -o-background-clip: content-box;
    background-clip: content-box;
    border-bottom: 1px solid #eee;
}

.filter .selected a {
    font-weight: normal;
}

/* JOB FEED */

.job-feed {
    position: relative;
    width: 300px;
    float: right;
}

.job-feed-468 .job-feed {
    width: 468px;
}

.job-feed header {
    font-family: Helvetica, sans-serif;
    text-transform: uppercase;
    color: #fff;
    background: #333;
    padding: 4px 5px;
    height: 22px;
    margin: 0px;
}

.job-feed header h2 {
    font-size: 14px;
}

.job-feed header h2 a {
    color: #ccc !important; 
    float: right;
    text-decoration: none;
    text-transform: lowercase;
    font-size: 12px;
    font-family: helvetica;
}

.job-feed ul {
    list-style-type: none;
}

.job-feed .jobs {
    font-size: 12px;
    line-height: 18px;
    overflow: hidden; 
    height: 250px;
    border: 1px solid #ddd;
}

.job-feed-468 .job-feed .jobs {
    height: 220px;
}

.job-feed .job {
    -o-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -webkit-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    transition: opacity 0.2s;
    -webkit-backface-visibility: hidden;
    border-bottom: 1px solid #ddd;
}

.job-feed .job:hover {
    background: #f9f9f9;
}

.job-feed .job.focused {
    opacity: 0.4;
}

.job-feed .job a {
    display: block;
    width: 283px;
    padding: 10px 5px;
    height: 100%;
    text-decoration: none;
}

.job-feed-468 .job-feed .job a {
    width: 451px;
}

.job-feed .job img {
    float: right;
    margin: 0 0 5px 5px;
    position: relative;
    right: -10px;
}

.job-feed .job h3 {
    font-size: 1.25em;
    line-height: 1.3em;
    margin: 0px;
    color: #333;
}

.job-feed .job-description {
    color: #333;
    margin-top: 0.3em;
    line-height: 1.6em;
}

.job-feed .link-text {
    text-decoration: underline;
}

.job-feed .job-categories {
    line-height: 16px;
    font-size: 10px;
    padding: 5px;
    position: relative;
    background: #f7f7f7;
    border: 1px solid #ddd;
}

.job-feed .job-categories.faded::before {
    content: "";
    display: block;
    position: absolute;
    background: -o-linear-gradient(transparent, #fff);
    background: -moz-linear-gradient(rgba(255,255,255,0), #fff);
    background: -webkit-linear-gradient(rgba(255,255,255,0), #fff);
    background: -ms-linear-gradient(rgba(255,255,255,0), #fff);
    background: linear-gradient(rgba(255,255,255,0), #fff);
    top: -31px;
    left: 0px;
    width: 100%;
    height: 30px;
    pointer-events: none;
}

.job-feed .job-categories a {
    display: inline-block;
}

.job-feed .job-categories span {
    color: #ccc;
}

.job-feed .view-all-notice {
    font-weight: 700;
    background: #f7f7f7;
    font-size: 12px;
    padding: 10px;
}

.col-border-top .job-feed {
    margin-bottom: 11px;
}

.tek-jobs-promo {
    display: none;
}

/* Compare feed */
.compare-products-feed {
    width: 300px;
}

.compare-products-feed header h2 {
    margin-bottom: 20px;
}

.compare-products-feed select {
    width: 100%;
    margin-bottom: 4px;
}

.compare-products-feed .compare-products {
    position: relative;
}

.compare-products-feed .product {
    text-align: center;
    display: inline-block;
    width: 100px;
    height: 80px;
    margin-right: 5px;
}

.compare-products-feed .vs {
    position: absolute;
    font-size: 32px;
    font-family: "Crete Round";
    display: block;
    color: white;
    background-color: #333;
    width: 60px;
    height: 60px;
    padding-top: 20px;
    text-align: center;
    border-radius: 30px;
    left: 50%;
    margin-left: -30px;
    top: 50%;
    margin-top: -30px;
}

.compare-products-feed .button {
    padding: 10px;
    height: auto;
    margin-top: 6px;
}

/* Shortnews */

.shortnews-feed {
    width: 300px;
    float: right;
    margin: 0 0 2em;
    position: relative;
}

.shortnews-feed:before {
    content: "";
    height: 45px;
    border-left: 1px solid #ddd;
    top: -21px;
    left: -14px;
    position: absolute;
}

.col-frontpage-top .shortnews-feed:before {
    display: none;
}

.shortnews-page .col-two-thirds {
    padding-right: 14px;
}

.shortnews-page .col-one-third {
    padding-left: 19px;
}

.shortnews-page .col-one-third > * {
    float: right;
    margin: 0 0 1.6em;
}

.shortnews ul {
    padding: 10px 0;
}

.shortnews ul li {
    padding: 5px;
    border-bottom: 1px solid #eee;
    line-height: 1.6em;
}

.shortnews ul li:last-child {
    border-bottom: 0px;
}

.shortnews ul li:first-child {
    padding-top: 0px;
}

.shortnews ul li:nth-child(2n) {
    background: #f5f5f5;
}

.shortnews h3 {
    background: #333;
    color: #fff;
    text-transform: uppercase;
    padding: 4px;
}

.shortnews h4 {
    font-size: 1.2em;   
    margin: 0px;
}

.shortnews.item h4 {
    font-size: 1.6em;
    line-height: 1.4em;
    margin: 0 0 0.4em;
}

.shortnews.item .timestamp {
    color: #777;
    margin-left: 10px;
}

.shortnews p {
    margin: 3px 0;
    line-height: 1.6em;
}

.shortnews .source {
    font-size: 12px;
}
.shortnews .readmore {
    margin: 5px;
}
.shortnews .readmore a {
    color: #aaa;
    text-decoration: none;
}

.shortnews-nav {
    margin: 20px 0 0;
    border-top: 1px solid #ddd;
    padding: 20px 0 0;
    line-height: 1.6em;
}

.shortnews-page .view-all {
    margin-top: 20px;
}

.shortnews .product-title {
    font-size: 1.2em;
    color: #555;
    margin: 0 0 1em;
}

/* COMPO PAGE */
#competition {
    width: 768px;
}

#competition p {
    margin: 10px 0;
}

#competition h2 {
    margin: 10px 0;
}

#competition div {
    margin: 10px 0;
    padding: 5px;
}

#competition div p {
    margin: 2px 0 2px 5px;
}

#competition div.odd {
    background-color: #f3f1e9;
}

#competition .error {
    font-weight: bold;
    font-size: 9pt;
    color: red;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#competition form .error {
    margin-left: 5px;
}

/* Responsive */
@media screen and (max-width: 1380px) {
    body:not(.disabled-ads) #wrapper {
        margin: 0;
    }
    body:not(.disabled-ads) .neo-content.full-width .articleImageCenter img {
        max-width: 100%;
        height: auto !important;
    }
    body:not(.disabled-ads) .neo-content.full-width .articleImageCenter figcaption {
        padding: 8px 0;
    }
    body:not(.disabled-ads) .ad-top-ad {
        margin: 0;
    }
    body:not(.disabled-ads) #wallpaper {
        background-position: -460px 0;
    }
}

@media screen and (max-width: 1000px) {
    #wrapper {
        overflow: hidden;
    }
}


.ipad #wrapper,
.ipad .ad-top-ad {
    float: none !important;
}

.ipad #wallpaper {
    background-position: 50% 0px;
}

.ipad .ad-col-right { 
    display: none;
}

.theme-feed ol {
    list-style-type: none;
    margin-bottom: 15px;
    margin-right: 5px;
}

.theme-feed li {
    overflow: auto;
    padding: 5px 0;
}

.theme-feed img {
    float: right;
}

.theme-link {
    display: block;
    position: absolute;
    right: 6px;
    top: 0px;
    width: 80px;
    height: 100%;
}

/* 404 */
.section-404 #main .image-404 {
    width: 100%;
}

.section-404 #main > * {
    padding: 6px 10px;
}

.section-404 #main li {
    margin: 4px 20px;
}

.section-404 #main > h1 {
    text-transform: none;
    text-shadow: none;
    letter-spacing: 0;
    margin-bottom: 0;
    font-family: "Crete Round";
    font-size: 4em;
    line-height: 2em;
}

.dictionary .wordlist p {
    padding: 5px;
}
.dictionary .search {
    margin: 5px 0;
}
.dictionary .pagination {
    overflow: auto;
    list-style-type: none;
    padding: 5px 0;
}

.dictionary .pagination li {
    float: left;
    padding: 5px;
}

.error {
    color: red;
    font-weight: 700;
}

/* USER ACCOUNT */

.user-account ul {
    line-height: 1.8em;
    list-style-type: none;
    margin-bottom: 2em;
}
.user-account h2,
.user-account h3 {
    margin-bottom: 0.8em;
}
.user-account p {
    margin-bottom: 1.2em;
}
.user-account > ul li > span {
    display: inline-block;
    vertical-align: middle;
    float: left;
}
.user-account > ul .headlines {
    font-weight: 700;
    border-bottom: 1px dashed #ddd;
}
.user-account form {
    margin: 0 0 20px 0;
}

.user-account form label {
    display: block;
    font-weight: 700;
    margin-bottom: 1em;
    color: #555;
}
.user-account form label input[type="text"],
.user-account form label input[type="email"],
.user-account form label input[type="tel"],
.user-account form label textarea,
.user-account form label select {
    display: block;
    width: 100%;
    max-width: 368px;
    font-weight: 400;
}
.user-account form label input[type="checkbox"] {
    margin-right: 5px;
}
.user-account form label input[disabled] {
    background: #ddd;
    color: #999;
}
.user-account form label input[type="checkbox"],
.user-account form label span {
    display: inline-block;
    vertical-align: middle;
}
.user-account form.details .button {
    margin-right: 10px;
}
.user-account form.details {
    line-height: 1.8em;
}

.profile-nav {
    border-bottom: 4px solid #333;
    margin: 0 0 1.6em;
}

.profile-nav ul {
    margin: 0;
}

.profile-nav li {
    float: left;
}

.profile-nav a {
    display: block;
    font-size: 1.2em;
    padding: 2px 6px;
    margin: 0 4px 0 0;
    font-weight: 700;
    text-decoration: none;
}

.profile-nav a.selected {
    color: #fff;
    background: #333;
}

/* CES 2013 */
.ces #main > .top-header,
#main > .top-header.ces-header {
    display: block;
    text-decoration: none;
    padding-left: 93px; 
    text-align: left;
    font-size: 1.8em;
}

#main > .top-header.ces-header:before, 
.ces .top-header:before {
    background: #fff url(../images/main/ces-2013.png) no-repeat;
    content: "";
    width: 86px;
    height: 54px;
    position: absolute;
    left: 0;
    top: -4px;
}

/* Product review form */

body > .product-review-form-wrap {
    background: #f0f0f0;
    padding: 22px;
    position: absolute;
    width: 100%;
    max-width: 635px;
    z-index: 100;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}

.product-review-form-wrap header {
    margin: 0 0 15px;
}

.product-review-form-wrap form[role="login"] label {
    display: block;
    margin: 0 0 10px;
}

.product-review-form-wrap form[role="login"] input[type="email"],
.product-review-form-wrap form[role="login"] input[type="password"] {
    display: block;
}

.product-review-form-wrap form[role="login"] .button-facebook {
    margin-top: 10px;
}

.product-review-form.posting:after {
    content: "";
    background: rgba(255,255,255,0.8) url(http://static.tek.no/images/main/spinner.gif) no-repeat scroll 50% 50%;
    display: block;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    position: absolute;
}

.product-review-form .mce-edit-area {
    padding: 3px;
}

.product-review-form h2 {
    margin-bottom: 22px;
}

.product-review-form h4 {
    margin-bottom: 2px;
}

.product-review-form .image-select {
    margin: 15px 0;
}

.product-review-form .image-select .images {
    overflow: auto;
    white-space: nowrap;
}

.product-review-form .image-select .images .image {
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
}

.product-review-form .image-select .images .image.selected {
    border: 2px solid #82b620;
}

.product-review-form .image-select .images .image img {
    display: block;
}

.product-review-form .rating-input {
    float: left;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
    margin: 0 0 15px;
}

.product-review-form .rating-value {
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    cursor: pointer;
    background: #ccc;
    color: #fff;
    height: 28px;
    width: 28px;
    line-height: 28px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    font-family: "Oswald", Helvetica, Arial;
}

.product-review-form .rating-value:after {
    content: "";
    border: 1px solid #f0f0f0;
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    position: absolute;
    display: block;
}

.product-review-form .rating-value:active {
    box-shadow: inset 0px 0px 5px #fff;
}

.product-review-form .rating-value.highlighted {
    background: #444;
    background: -webkit-linear-gradient(#818183,#3B393C);
    background: -moz-linear-gradient(#818183,#3B393C);
    background: -ms-linear-gradient(#818183,#3B393C);
    background: -o-linear-gradient(#818183,#3B393C);
    background: linear-gradient(#818183,#3B393C);
    color: #fff;
}

.product-review-form .rating-value.highlighted.selected,
.product-review-form .rating-value.highlighted.selected:before {
    background: #333;
    background: -webkit-linear-gradient(#4d4d4f,#1a171b);
    background: -moz-linear-gradient(#4d4d4f,#1a171b);
    background: -ms-linear-gradient(#4d4d4f,#1a171b);
    background: -o-linear-gradient(#4d4d4f,#1a171b);
    background: linear-gradient(#4d4d4f,#1a171b);
}

.product-review-form input.headline {
    border: none;
    font: 40px/1em "Crete Round",Times,sans-serif;
    height: 1.5em;
    background: white;
    box-shadow: none;
}
.product-review-form input.review-preamble {
    border: none;
    font-size: 22px;
    font-weight: bold;
    height: 35px;
    background: white;
    box-shadow: none;
}
.product-review-form input.headline,
.product-review-form input.review-preamble {
    width: 100%;
    margin: 0 0 5px;
}

.product-review-form input.review-preamble {
    margin: 0 0 15px;
}

.product-review-form textarea {
    width: 100%;
    max-width: 100%;
    margin-bottom: 22px;
    overflow: auto;
    max-height: 500px;
    min-height: 250px;
}

.product-review-form > .mce-panel {
    margin-bottom: 22px;
}

.product-review-form .rating {
    position: relative;
}

.product-review-form .rating span {
    font-size: 30px;
}

.product-review-form input[type="range"] {
    background: #ccc;
    box-shadow: inset 0 0 0px rgba(0,0,0,0);
}

.product-review-form input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    background: #333;
    height: 20px;
    width: 20px;
}

/* Native ads */

article.preamble.sponset-bilag h2, 
.preamble.sponset-bilag p,
.preamble.sponset-bilag ul {
    font-family: "Open Sans", Geneva, Tahoma, sans-serif;
    margin-left: 10px;
    margin-right: 10px;
}

article.preamble.sponset-bilag .source-info {
    text-align: right;
}
article.preamble.sponset-bilag .source-info:before {
    content: "Avsender: ";
}

article.preamble .tek-tag-sponset-bilag {
    background-color: black;
}

article.preamble.sponset-bilag {
    background-color: #eee;
    border-radius: 0 0 4px 4px;
}

.sponsored .article p, .sponsored .article .headline {
    font-family: "Open Sans", Geneva, Tahoma, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    letter-spacing: 0.05px;
}

.sponsored .article .headline {
    font-weight: bold;
}

.sponsored .article .native-ads-information {
    background-color: #fff;
    height: 100%;
}

.sponsored .article .native-ads-information .native-ads-label {
    font-size: 26px;
    line-height: 26px;
    font-weight: bold;
    color: #aaa;
    text-transform: uppercase;
    padding: 5px 0;
}

.sponsored .article .native-ads-information .native-ads-partner {
    border-right: 5px solid #eee;
    float: left;
    min-height: 100px;
    padding: 5px;
    margin-right: 10px;
    display: table-cell;
    vertical-align: middle;
}

.sponsored .article .native-ads-information .native-ads-description {
    color: #aaa;
    padding: 5px 0;
}

.sponsored .article .native-ads-information .native-ads-description a.native-ads-url {
    display: block;
    padding-top: 5px;
}

.sponsored #wrapper {
    background: #eee;
}

/* User product review list */

.user-review-list .col-main-width {
    padding-top: 22px;
}

.user-review-list article {
    margin-right: 14px;
    padding-top: 22px;
    border-bottom: 1px solid #ddd;
}

.user-review-list article:first-child {
    padding-top: 0px;
}

.user-review-list article:last-child {
    border-bottom: 0px;
}

.user-review-list article .image-container {
    float: left;
    width: 180px;
    color: #999;
    position: relative;
    margin-bottom: 10px;
}

.user-account .user-review-list article .image-container {
    width: 230px;
}

/* USER PRODUCT REVIEW FEED */

.col-main-width .feed-user-product-reviews:last-child {
    margin: 0 0 0 10px;
}

.col-main-width .feed-user-product-reviews {
    width: 468px;
    border-top: 10px solid #333;
    background: #f5f5f5;
}

.feed-user-product-reviews h4 a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.feed-user-product-reviews h4 a:hover {
    text-decoration: underline;
}

.feed-user-product-reviews .product-title {
    margin-bottom: 0px;
}

.feed-user-product-reviews .author {
    color: #666;
}

.feed-user-product-reviews .author .show-comments {
    color: #666;
}

.col-main-width .feed-user-product-reviews ul {
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px 10px 0 10px;
}

.feed-user-product-reviews li {
    list-style-type: none;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    line-height: 1.6em;
}

.feed-user-product-reviews li:last-child {
    border-bottom: 0px;
}

.feed-user-product-reviews li img {
    margin: 0 10px 0 0;
}

.feed-user-product-reviews .more-reviews {
    text-align: center;
    padding: 5px 10px;
    border: 1px dashed #ddd;
    background: #fff;
    line-height: 1.6em;
}

.feed-user-product-reviews .more-reviews .button {
    font-size: 12px;
    padding: 4px 8px;
    line-height: 1em;
}



/* CONTACT FORM */

body > .tek-contact-form {
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    width: 500px;
    position: fixed;
    z-index: 100;
    left: 0px;
    top: 0px;
    padding: 22px;
}

.tek-contact-form h2 {
    font-weight: normal;
    font-family: "Crete Round";
    font-size: 20px;
    line-height: 1.2em;
    margin-bottom: 12px;
}

.tek-contact-form input {
    width: 100%;
    margin-bottom: 10px;
}

.tek-contact-form textarea {
    width: 100%;
    max-width: 100%;
    min-height: 100px;
    margin-bottom: 22px;
}

.tek-contact-form form {
    position: relative;
}

.tek-contact-form .sending:before {
    content: "";
    background: #fff;
    opacity: 0.8;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: block;
}

.tek-white-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: #fff;
    opacity: 0.6;
    z-index: 20;
}

.tek-black-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: #000;
    opacity: 0.7;
    z-index: 20;
}

/* USER TERMS */

.user-terms {
    padding-top: 22px;
    width: 628px;
}

.user-terms h1 {
    font-size: 25px;
    margin-bottom: 40px;
}

.user-terms h3 {
    margin: 0 0 0.5em;
}
.user-terms p {
    margin-bottom: 1.6em;
    line-height: 1.8em;
}
.user-terms ul {
    margin-left: 1.6em;
    margin-bottom: 1.6em;
}
    
#to-top {
    display: none;
}


/* Product rating score */

.product-score-tag {
    background: #333;
    background: -webkit-linear-gradient(#4e4e4e, #212121);
    background: -moz-linear-gradient(#4e4e4e, #212121);
    background: -ms-linear-gradient(#4e4e4e, #212121);
    background: -o-linear-gradient(#4e4e4e, #212121);
    background: linear-gradient(#4e4e4e, #212121);
    color: #fff;
    padding: 5px;
    font-family: "Oswald", Helvetica, Arial;
    font-size: 14px;
    border-radius: 2px;
    line-height: 1em;
}

.product-score-tag span {
    color: #ccc;
}

.score-badge {
    background: #333;
    background: -webkit-linear-gradient(#4d4d4f,#1a171b);
    background: -moz-linear-gradient(#4d4d4f,#1a171b);
    background: -ms-linear-gradient(#4d4d4f,#1a171b);
    background: -o-linear-gradient(#4d4d4f,#1a171b);
    background: linear-gradient(#4d4d4f,#1a171b);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    color: #fff;
    position: relative;
    z-index: 1;
    text-align: center;
    line-height: 14px;
    cursor: default;
    display: block;
}

.score-badge:hover {
    color: #fff;
}

a.score-badge {
    cursor: pointer;
}

.score-badge a {
    color: #fff;
    text-decoration: none;
}

.score-badge:before {
    background: #fff;
    height: 5px;
    content: "";
    left: -10px;
    right: -10px;
    top: 50%;
    position: absolute;
    display: block;

    -o-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.score-badge:after {
    background: #fff;
    height: 5px;
    content: "";
    left: -10px;
    right: -10px;
    top: 50%;
    position: absolute;
    display: block;

    -o-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.score-badge .inner-score {
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 5px;
    top: 5px;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
    padding: 15px 0 0;
}

.score-badge .inner-score > * {
    position: relative;
}

.score-badge .inner-score:before {
    content: "";
    background: #333;
    background: -webkit-linear-gradient(#49484b,#1e1c1f);
    background: -moz-linear-gradient(#49484b,#1e1c1f);
    background: -ms-linear-gradient(#49484b,#1e1c1f);
    background: -o-linear-gradient(#49484b,#1e1c1f);
    background: linear-gradient(#49484b,#1e1c1f);
    position: absolute;
    top: 5px;
    left: 5px;
    bottom: 5px;
    right: 5px;
    border-radius: 50%;
    display: block;
}

.score-badge .inner-score img {
    max-height: 22px;
}

.score-badge .inner-score .score-value {
    font-size: 30px;
    font-weight: 700;
    margin: 8px 0;
    display: block;
    font-family: "Oswald", Helvetica, Arial;
    line-height: 18px;    
    height: 18px;
}

.score-badge .inner-score .score-value.score-4 {
    padding-right: 4px;
}

.score-badge .inner-score .score-value .score-top {
    color: #bbb;
}

.score-badge .inner-score .score-text {
    position: relative;
    display: block;
    text-transform: uppercase;
    font-size: 8px;
    font-family: "Oswald", Helvetica, Arial;
    letter-spacing: 1px;
    color: #eee;
}

.score-badge .inner-score .platform {
    font-size: 11px;
    background: transparent;
    padding: 0px;
}

.score-badge .score-link {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    text-align: center;
}
.score-badge .score-link a {
    color: black;
    text-decoration: underline;
    font-size: 10px;
}

.score-badge.score-badge-large {
    width: 240px;
    height: 240px;
}

.score-badge.score-badge-large:before,
.score-badge.score-badge-large:after {
    height: 10px;
}

.score-badge.score-badge-large .inner-score {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 35px 0 0;
}

.score-badge.score-badge-large .inner-score:before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.score-badge.score-badge-large .inner-score .platform,
.score-badge.score-badge-large .inner-score .score-text {
    font-size: 17px;
    line-height: 1em;
}

.score-badge.score-badge-large .inner-score .score-value {
    font-size: 80px;
    line-height: 1em;
    margin: 12px 0;
    height: 1em;
}

.score-badge.score-badge-large .inner-score .score-value.score-4 {
    padding-right: 10px;
}

.score-badge.score-badge-small {
    height: 40px;
    width: 40px;
}

.score-badge.score-badge-small:after,
.score-badge.score-badge-small:before {
    height: 2px;
}

.score-badge.score-badge-small .inner-score {
    padding-top: 2px;
    left: 2px;
    right: 2px;
    top: 2px;
    bottom: 2px;
}

.score-badge.score-badge-small .inner-score .score-value {
    font-size: 12px;
}

.score-badge.score-badge-small .inner-score:before {
    left: 2px;
    right: 2px;
    top: 2px;
    bottom: 2px;
}

.user-score-badge {
    background: #999;
    color: #fff;
    white-space: nowrap;
    padding: 5px 0;
    position: relative;
    font-family: "Oswald", Helvetica, Arial;
    font-size: 13px;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 100px;
    text-decoration: none;
}

.user-score-badge:hover {
    color: #fff;
}

.user-score-badge:before {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), rgba(0,0,0,0));
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.user-score-badge:after {
    left: 1px;
    right: 1px;
    bottom: 1px;
    top: 1px;
    border: 1px solid #fff;
    position: absolute;
    content: "";
    display: block;
}

.user-score-badge.score-low {
    background: #d22c2c;
}

.user-score-badge.score-mid {
    background: #cb7b0a;
}

.user-score-badge.score-high {
    background: #4ea940;
    background: #62d162;
}

.user-score-badge .inner-score,
.user-score-badge .inner-score > * {
    display: block;
}

.user-score-badge .inner-score .platform {
    padding: 0px;
}

.user-score-badge .inner-score .score-value {
    font-size: 22px;
    margin: 5px 0;
    line-height: 1em;
}

.user-score-badge.score-badge-small {
    padding: 5px;
}

.user-score-badge.score-badge-small .inner-score .score-value {
    font-size: 16px;
}


/* Tek services banner */

.tek-services-banner {
    position: relative;
    display: block;
    border-top: 1px solid #ddd;
    padding: 15px 0;
}

.tek-services-banner ul {
    list-style-type: none;
}

.tek-services-banner ul li {
    text-align: center;
    width: 16.6%;
    float: left;
}

.tek-services-banner ul li h4 {
    font-weight: 400;
    font-size: 10px;
}

.tek-services-banner img {
    height: auto;
    max-width: 100%;
    margin-bottom: 5px;
}

aside .tek-services-banner {
    border: 0px none;
    padding: 0px;
}

aside .tek-services-banner ul li {
    width: 50%;
    margin-bottom: 22px;
}

aside .tek-services-banner ul li:nth-child(2n+1) {
    clear: left;
}


/* Upload section */

.tek-upload {
    line-height: 1.8em;
}

.tek-upload label.block {
    margin: 0 0 1em;
}


/* Casting promo */

.casting-promo {
    margin: 0 0 33px;
    background: rgba(16,25,34,1) url(../images/casting/background.jpg) scroll no-repeat 50% 35%;
    border: 10px solid rgba(16,25,34,0.5);
    position: relative;
}

.casting-promo .casting-logo {
    width: 300px;
    padding: 45px 22px 22px;
}

.casting-promo .casting-logo .gamer-logo {
    margin: 0 0 30px;
}

.casting-promo .casting-logo .elkjop-logo {
    margin: 20px 0 0;
}

.casting-promo .casting-games {
    padding: 0 10px;
    width: 636px;
    background: rgba(16,25,34,0.5);
    font-size: 1.14em;
}

.casting-promo .casting-games .casting-game:first-child {
    padding-bottom: 20px;
}

.casting-promo .casting-games .game-logo {
    margin-right: 20px;
}

.casting-promo .casting-games .casting-game:first-child .game-logo {
    margin-top: 15px;
}

.casting-promo .candidates {
    padding: 20px 0 0;
}

.casting-promo .casting-candidate {
    border: 1px solid #444;
    background: rgba(16,25,34,0.8);
    margin: 0 5px 3px 0;
}

.casting-promo .casting-candidate .tek-error {
    font-size: 40px;
    top: 0px;
    left: 0px;
    right: 0px;
}
