﻿/******************************************************************

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of LESS' great features: 
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques like box shadow and
border-radius.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more. 

******************************************************************/
/*********************
CLEARFIXIN'
*********************/
/* Contain floats: nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix {
  /* for IE */
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/*********************
TOOLS
*********************/
/* http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement/ */
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*********************
TYPOGRAPHY
*********************/
/* 	To embed your own fonts, use this syntax
	and place your fonts inside the 
	library/fonts folder. For more information
	on embedding fonts, go to:
	http://www.fontsquirrel.com/
	Be sure to remove the comment brackets.
*/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('../fonts/font-name.eot');
    	src: url('../fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('../fonts/font-name.woff') format('woff'),
             url('../fonts/font-name.ttf') format('truetype'),
             url('../fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
/* 
use the best ampersand 
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, 'Goudy Old Style', Palatino, 'Book Antiqua', serif;
  font-style: italic;
}
/* text alignment */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
/* alerts & notices */
.alert {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}
.help {
  border-color: #e8dc59;
  background: #ebe16f;
}
.info {
  border-color: #bfe4f4;
  background: #d5edf8;
}
.error {
  border-color: #f8cdce;
  color: #c80000;
  /*background: @alert-red; */
}
.success {
  border-color: #deeaae;
  background: #e6efc2;
}
/*********************
BORDER RADIUS
*********************/
/* 
NOTE: For older browser support (and some mobile), 
don't use the shorthand to define *different* corners. 

USAGE: .rounded(4px); 

*/
/* 
Instead of having a seperate mixin for the different
borders, we're using the mixin from 320 & Up to make
things easier to use.

USAGE: .border-radius(4px,4px,0,0);

*/
/*********************
TRANISTION
*********************/
/* .transition(all,2s); */
/*********************
CSS3 GRADIENTS
Be careful with these since they can 
really slow down your CSS. Don't overdue it.
*********************/
/* .css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* .boxSizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So 
probably best not to use it. I mean, were you going to anyway? */
/*********************
BOX SHADOW
*********************/
/* .boxShadow(0 0 4px #444); */
/*********************
BUTTONS
*********************/
.box-btn {
  font: 300 3rem/1.2em "Open Sans", Tahoma, arial, sans-serif;
}
@media handheld, only screen and (max-width: 1200px) {
  .box-btn {
    font: 300 2.5rem/1.2em "Open Sans", Tahoma, arial, sans-serif;
  }
}
@media handheld, only screen and (max-width: 992px) {
  .box-btn {
    font: 300 1.8rem/1.2em "Open Sans", Tahoma, arial, sans-serif;
  }
}
.box-btn,
.box {
  /*.rounded(4px); */
  display: block;
  margin: 0 0 20px;
  padding: 20px;
  position: relative;
}
.box-btn {
  background: none repeat scroll 0 0 #23AFDB;
  color: #FFFFFF;
}
.box-btn:hover {
  background: #6fd1ed;
  text-decoration: none;
  color: #FFFFFF;
}
/*----------------------  OVERSTYRING AV BOOTSTRAP  ----------------------*/
.btn {
  border: none;
  border-radius: 0px;
  padding: 7px 25px;
  line-height: 21px;
  margin-bottom: 5px;
  margin-top: 5px;
}
.button,
.button:visited,
.btn-primary,
.btn-primary:visited {
  padding: 7px 25px;
  border: none;
  display: block;
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
  /*border:1px solid @basecolor-dark;*/
  /*text-shadow: 0 1px rgba(0,0,0, .75);*/
  cursor: pointer;
  /*margin: 10px 0px 20px 0px;*/
  line-height: 21px;
  background-color: #1bb0db;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  /*.rounded(4px);*/
  /*.css-gradient(darken(@basecolor, 5%),@basecolor);*/
}
.button a,
.button:visited a,
.btn-primary a,
.btn-primary:visited a {
  color: #ffffff;
  text-decoration: none;
}
.button:hover,
.button:visited:hover,
.btn-primary:hover,
.btn-primary:visited:hover,
.button:focus,
.button:visited:focus,
.btn-primary:focus,
.btn-primary:visited:focus {
  color: #ffffff;
  text-decoration: none;
  background: #6fd1ed;
}
.button:active,
.button:visited:active,
.btn-primary:active,
.btn-primary:visited:active {
  background-color: #1bb0db;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#189ec4), to(#1bb0db));
  background-image: -webkit-linear-gradient(top, #189ec4, #1bb0db);
  background-image: -moz-linear-gradient(top, #189ec4, #1bb0db);
  background-image: -o-linear-gradient(top, #189ec4, #1bb0db);
  background-image: linear-gradient(to bottom, #189ec4, #1bb0db);
}
.btn-success,
.btn-success:visited {
  border: none;
  background-color: #50bc07;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-success a,
.btn-success:visited a {
  color: #ffffff;
}
.btn-success:hover,
.btn-success:visited:hover,
.btn-success:focus,
.btn-success:visited:focus,
.btn-success:active,
.btn-success:visited:active,
.btn-success .open .dropdown-toggle.btn-success,
.btn-success:visited .open .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #47a807;
}
/*.buy, .buy:visited {

	background-color:@buttonSubmitColor;
	&:hover, &:focus {
		background: lighten(@buttonSubmitColor, 10%);
	}
	
	&:active {
		.css-gradient(darken(@buttonSubmitColor, 5%),@buttonSubmitColor);
	}	
}*/
.box {
  background: none repeat scroll 0 0 #E5E5E5;
}
.box .headline {
  color: #106780;
}
/*------ GREEN ADMIN BUTTON ------*/
.adminSubmitButton {
  background-color: #50bc07;
  border-radius: 4px;
  color: #FFFFFF !important;
  cursor: pointer;
  display: inline-block;
  line-height: 1 !important;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
  margin: 10px 0px 10px 5px;
  padding: 8px;
  min-width: 165px;
}
.adminSubmitButton hover {
  background-color: #dcfdc5;
}
/* CHRISTMAS - JUL - JULELUE P� LOGO */
.christmasIcon {
  position: absolute;
  left: 0px;
  top: 7px;
  display: none;
}
#slogan {
  font: 300 20px/1.4 "Open Sans", Tahoma, arial, sans-serif;
  left: 190px;
  position: absolute;
  top: 26px;
}
input,
textarea,
input[type=submit] {
  /*-webkit-appearance: none;*/
  -webkit-border-radius: 0;
}
/*==================================== GLOBALMENU / SITENAV / FELLES TOPP ====================================*/
.navbar {
  min-height: 40px;
  font-family: "Segoe UI", Tahoma, arial, sans-serif;
}
.navbar-header {
  float: right;
}
.div_LoginTop {
  float: right;
  margin-top: 6px;
}
.a_LoginTop_LogIn,
.a_LoginTop_Register {
  text-transform: uppercase;
}
.div_LoginTop a {
  color: #fff;
}
.div_LoginTop p {
  padding: 0px;
  margin: 0px;
}
.div_LoginTop span {
  color: #C1C1C1;
  text-transform: none;
}
.div_LoginTop .a_LoginTop_LogOut {
  font-weight: normal;
}
/*==================================== GLOBALMENU / SITENAV / FELLES TOPP ====================================*/
.header {
  padding-top: 40px;
}
/*********************
GENERAL STYLES
*********************/
body {
  font-family: Arial,serif;
  font-size: 14px;
  line-height: 20px;
  color: #7F7F7F;
  margin: 0px;
  padding: 0px;
  /*background:@lightgreyBackground;*/
  width: 100%;
  z-index: 3;
  padding-bottom: 0px;
}
p {
  margin: 0px 0px 20px 0px;
  padding: 0px;
}
hr {
  /*background-color:#F7F7F7;*/
  border: 2px dotted #C4C4C4;
  border-style: none none dotted;
  color: #fff;
}
.ContentNewline {
  display: none;
}
.mainContent select,
.mainContent textarea,
.mainContent input:not([type=submit]):not([type=file]):not([type=radio]):not([type=checkbox]):not([type=button]) {
  border: 1px solid #AFD1FF;
  border-radius: 4px 4px 4px 4px;
  font-size: 1.1em;
  margin: 0px 5px 10px 5px;
  padding: 8px;
  color: #444444;
  font-family: arial, verdana;
}
.category_723 .mainContent select,
.category_621 .mainContent select,
.category_723 .mainContent textarea,
.category_621 .mainContent textarea,
.category_723 .mainContent input:not([type=submit]):not([type=file]):not([type=radio]):not([type=checkbox]):not([type=button]),
.category_621 .mainContent input:not([type=submit]):not([type=file]):not([type=radio]):not([type=checkbox]):not([type=button]) {
  margin-left: 0px;
}
.mainContent select {
  min-width: 268px;
}
.mainContent textarea,
.mainContent input:not([type=submit]):not([type=file]):not([type=radio]):not([type=checkbox]):not([type=button]) {
  min-width: 250px;
}
.admin #sms_length,
.admin #sms_count {
  border: none;
  width: 70px;
  background: #f7f7f7;
}
.mainContent input:focus:not([type=submit]):not([type=file]) {
  border: 1px solid #F25D22;
}
/* TYPES THAT YOU MAY NOT WANT TO STYLE

input[type=text],
input[type=url],
input[type=tel],
input[type=number],
input[type=color],
input[type=email]
*/
.imgParamDesc {
  cursor: pointer;
}
.sectionWrapper {
  padding-bottom: 40px;
}
.TableOutputWrapper .sectionWrapper {
  padding-bottom: 10px;
}
/* ------------------  PRICES / PRISER ------------------  */
.ng-cloak {
  display: none !important;
}
.topFlag {
  /*position:absolute;
	left:50px;
	top:107px;*/
  margin-bottom: 8px;
}
.phead-bottom p {
  margin: 0px;
  text-align: center;
  padding-left: 0px;
}
.phead-bottom-content {
  margin: 0 auto;
}
.priceWrapper .blightblue {
  background: none repeat scroll 0 0 #52B9E9 !important;
  border: 0 none !important;
  color: #FFFFFF !important;
  display: block;
}
.priceWrapper .pricel {
  margin-top: 10px;
  /*text-align: center;*/
}
.priceWrapper .price-a {
  /*float: left;
    margin-right: 14px;
    width: 48%;*/
}
.priceWrapper .pricel .phead-top h4 {
  color: #FFFFFF;
  font-size: 23px;
}
.priceWrapper .pricel .phead-top .smallH4 {
  font-size: 20px;
}
.priceWrapper .pricel .phead-top {
  display: block;
}
.priceWrapper .pricel .phead-top {
  margin: 0;
  padding: 15px 10px;
}
.priceWrapper .blightblue {
  background: none repeat scroll 0 0 #52B9E9 !important;
  border: 0 none !important;
  color: #FFFFFF !important;
}
.priceWrapper .pricel .phead-bottom {
  background: none repeat scroll 0 0 #333333;
  border-bottom: 1px solid #DDDDDD;
  /*border-left: 3px solid #FFFFFF;
    border-right: 3px solid #FFFFFF;*/
  color: #FFFFFF;
  font-size: 40px;
  line-height: 45px;
  margin: 0;
  padding: 20px 30px 10px;
}
.priceWrapper .pricel .phead-bottom-small {
  background: none repeat scroll 0 0 #333333;
  border-bottom: 1px solid #DDDDDD;
  /*border-left: 3px solid #FFFFFF;
    border-right: 3px solid #FFFFFF;*/
  color: #FFFFFF;
  font-size: 30px;
  line-height: 25px;
  margin: 0;
  padding: 25px 10px 5px;
}
.priceWrapper .pricel .phead-bottom-smaller {
  background: none repeat scroll 0 0 #333333;
  border-bottom: 1px solid #DDDDDD;
  /*border-left: 3px solid #FFFFFF;
    border-right: 3px solid #FFFFFF;*/
  color: #FFFFFF;
  font-size: 26px;
  line-height: 25px;
  margin: 0;
  padding: 25px 10px 5px;
}
/*.phead-bottom-small {
    font-size: 30px;
	line-height: 0px;
}*/
.phead-underline {
  font-size: 16px;
  font-weight: normal;
}
.priceWrapper .pricel .pst {
  font-size: 25px;
  font-weight: bold;
  position: relative;
  top: -5px;
}
.priceWrapper .pricel .psb {
  font-size: 16px;
  font-weight: bold;
}
.priceWrapper .pricel .plist {
  background: none repeat scroll 0 0 #FCFCFC;
  border: 1px solid #DDDDDD;
  border-top: none;
}
.priceWrapper .pricel .plist ul {
  list-style-type: none;
  margin-bottom: 0 !important;
  margin-left: 0;
  margin-top: 0;
}
.priceWrapper .pricel .plist li {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  border-bottom: 1px solid #E8E8E8;
  font-size: 13px;
  line-height: 20px;
  padding: 12px 0;
}
.smallUnderline {
  font-size: 13px;
  line-height: 20px;
  padding: 5px 0;
  display: block;
}
.priceWrapper .pricel .pbutton {
  background: none repeat scroll 0 0 #F3F3F3;
  border: 1px solid #DDDDDD;
  color: #777777;
  font-size: 20px;
  margin-top: 0;
  padding: 15px 0;
  text-align: center;
}
.priceWrapper .pricel .pbuttonInfo {
  /*background: none repeat scroll 0 0 #F3F3F3;*/
  /*background: none repeat scroll 0 0 #52B9E9;*/
  background: none repeat scroll 0 0 #1bb0db;
  border: 0px;
  /*color: #777777;*/
  color: #fff;
  font-size: 16px;
  margin-top: 0;
  padding: 8px;
  text-align: left;
  cursor: pointer;
}
.priceWrapper .pricel .pbuttonInfo .pbuttonInfo :hover {
  background-color: #caeef8;
}
.priceWrapper .pricel .pbuttonInfo .plus,
.priceWrapper .pricel .pbuttonInfo .minus {
  float: right;
  padding-top: 3px;
  opacity: 0.5;
}
.priceWrapper .pricel .pbutton a,
.pbuttonInfo a {
  font-weight: bold;
  text-transform: uppercase;
}
.priceWrapper .btn.btn-danger {
  background: none repeat scroll 0 0 #FA3031 !important;
}
.priceWrapper .pricel .pbutton a {
  font-weight: bold;
  text-transform: uppercase;
}
.priceWrapper .btn.btn-danger {
  background: none repeat scroll 0 0 #FA3031 !important;
}
.priceWrapper .number {
  font-weight: bold;
  color: #000;
}
.priceWrapper .table {
  font-size: 13px;
  margin-bottom: 0px;
}
.priceWrapper .table td:nth-child(2) {
  white-space: nowrap;
  text-align: right;
}
.priceWrapper .table .green,
.priceWrapper .green .number {
  background-color: #e6f1d5;
  color: #41A62D;
}
.phead-bottom,
.phead-bottom-small,
.phead-bottom-smaller,
.blightblue {
  text-align: center;
}
/*--------------------------------------------*/
.priceDiv {
  margin-bottom: 30px;
}
.priceDivImage {
  float: right;
}
.paymentForm {
  margin-top: 20px;
}
/*********************
LINK STYLES
*********************/
a {
  color: #1bb0db;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a a:hover {
  color: #6fd1ed;
  text-decoration: none;
}
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  margin: 4px 0px;
  padding: 0px;
  font: 300 27px/1.5 "Open Sans", Tahoma, arial, sans-serif;
  color: #222222;
  /*
	if you're going to use webfonts, be sure to check your weights
	http://css-tricks.com/watch-your-font-weight/
	*/
  /* removing text decoration from all headline links */
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a {
  text-decoration: none;
}
h1,
.h1 {
  font-size: 2.6em;
  line-height: 1em;
  font-weight: 300;
  margin: 0px 0px 10px 0px;
}
h2,
.h2,
.smsGridTopText {
  margin-bottom: 0.200em;
  font: 300 22px/1.4 "Open Sans", Tahoma, arial, sans-serif;
}
h3,
.h3 {
  font-size: 1.125em;
}
h4,
.h4 {
  font-size: 1.1em;
  font-weight: 700;
}
h5,
.h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}
header h2 {
  border-bottom: 1px solid #DEDEDE;
  padding: 16px 0 8px;
}
#footer h2 {
  color: #FFFFFF;
  font-size: 1.3em;
}
.IntroHeader h2,
.ArticleListWrapper .headline1,
.category_1 h1 {
  font-weight: 300;
  margin: 0px;
  font: 300 27px/1.5 "Open Sans", Tahoma, arial, sans-serif;
  font-style: normal;
  line-height: normal;
}
.admin h1,
.admin .h1 {
  font-size: 2.2em;
}
.admin h2,
.admin .h2 {
  margin-bottom: 0.200em;
  font: 400 21px/1.4 "Open Sans", Tahoma, arial, sans-serif;
}
.introBox a:visited {
  margin: 0px;
  color: #444;
}
.category_1 .TitleTag,
.category_680 .TitleTag {
  display: none;
}
.headline1 {
  color: #000;
  font-size: 21px;
  margin-bottom: 10px;
}
.rightHighlights {
  margin-bottom: 10px;
}
.articlewrap_pubnewsmodule .headline1 {
  color: #000;
  font-size: 14px;
  margin-bottom: 0;
}
/******************************************************************************
NEWS / NYHETER / ARTIKLER
******************************************************************************/
.articletextwrap1_1 {
  margin-bottom: 30px;
  max-width: 800px;
}
.rightSectionContentBlock .scrollernews .headline1 {
  color: #222222;
}
.rightSectionContentBlock .scrollernews .ingress1 {
  display: none;
}
.category_751 .TitleTag {
  display: none;
}
/******************************************************************************
CONTAINERS
******************************************************************************/
header,
section,
footer,
article,
figure,
figcaption {
  display: block;
  overflow: hidden;
}
section .first {
  padding-top: 0px;
}
.leftSectionContentBlock,
.admin .serviceSelectItemWrapper {
  border-bottom: 1px dotted #C4C4C4;
  padding: 30px 0px;
}
.admin .serviceSelectImage {
  width: 116px;
}
.lastBlock {
  border-bottom: none;
}
.mainWrapper {
  position: relative;
  height: 100%;
  margin-bottom: -330px;
}
.admin .mainWrapper {
  width: 1180px;
  margin: 0 auto;
}
.mainWrapperTop {
  width: 1180px;
  margin: 0 auto;
  padding: 0px 20px;
}
.text2 {
  overflow: hidden /* fjernet pga. brede tabeller */;
}
.category_725 .text2 {
  overflow: scroll;
  /* �pnet pga. infoskjerm i admin p� iPad */
}
/*.admin .text2
	{
	
	}	*/
.wrap {
  padding: 20px;
}
.IntroText a {
  color: #7F7F7F;
  font-family: Arial,serif;
  text-decoration: none;
}
.itemWrapper {
  overflow: hidden;
  clear: both;
}
.category_424 .item1,
.category_424 .item2,
.category_424 .item {
  border-bottom: none;
  min-height: 80px;
  padding-bottom: 20px;
}
.mainContent {
  min-height: 600px;
}
.mainContent ul {
  padding-left: 15px;
  margin-bottom: 20px;
}
/*
		.admin .mainContent .row
		{overflow:visible;}	
	*/
.introbanner img {
  float: right;
  margin: 0px;
}
.introbanner {
  overflow: hidden;
}
.intro {
  /*border-bottom: 1px solid #DEDEDE;*/
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 22px;
  font-style: italic;
  line-height: 30px;
  padding-bottom: 30px;
  /*float:left;*/
}
.intro em {
  color: #037BB7;
  font-size: 28px;
  font-weight: normal;
}
.clearRight {
  overflow: hidden;
}
/*.category_530 .introbannerImage {
	background-image:url(/files/vianett/global/images/sms_heading.png);
	background-repeat:no-repeat;
	background-position:right;
	width:330px;
	height:300px;
}*/
.dividebottom,
.dividebottomslim {
  border-bottom: 1px dotted #C4C4C4;
}
.dividetop,
.dividebottom,
.dividebottomslim {
  color: #333333;
  line-height: 1.2em;
  list-style: none outside none;
  padding: 0;
  margin: 35px 0;
  text-shadow: 1px 1px 0 #FFFFFF;
}
.dividebottomslim {
  margin: 20px 0;
}
/*  FRONT PAGE - SLIDER*/
.slideWrapper {
  background: #000;
  margin-bottom: 20px;
  padding-bottom: 5px;
}
/*
.slideWrapper 
{
	background:url(/files/vianett.com/01_images/shadow_slider.png) #E5E5E5 repeat-x top center;
	padding-top:10px;
	margin-bottom:20px;
}

.slideBottom 
{
	background:url(/files/vianett.com/01_images/shadow_slider_bottom.png) repeat-x bottom center;
	padding-bottom:10px;
}
*/
/* --- PRODUCT OVERVIEW --- */
.serviceWrapper .serviceBlock {
  float: left;
}
#serviceUlLeft {
  padding: 0px;
}
#serviceUlLeft a:hover,
#serviceUlLeft a:active {
  background-color: #6fd1ed;
  text-decoration: none;
  color: #FFFFFF;
}
#serviceUlLeft li {
  list-style: none;
}
#serviceUlLeft .bulk {
  background: url("/files/vianett/global/images/products/service_bulk.png") no-repeat scroll center top;
}
#serviceUlLeft .payment {
  background: url("/files/vianett/global/images/products/service_payment.png") no-repeat scroll center top;
}
#serviceUlLeft .longnumber {
  background: url("/files/vianett/global/images/products/service_longnumber.png") no-repeat scroll center top;
}
#serviceUlLeft .donation {
  background: url("/files/vianett/global/images/products/service_donation.png") no-repeat scroll center top;
}
#serviceUlLeft .two-way {
  background: url("/files/vianett/global/images/products/service_two-way.png") no-repeat scroll center top;
}
#serviceUlLeft .credit {
  background: url("/files/vianett/global/images/products/service_credit.png") no-repeat scroll center top;
}
#serviceUlLeft .hlr {
  background: url("/files/vianett/global/images/products/service_hlr.png") no-repeat scroll center top;
}
#serviceUlLeft .mms {
  background: url("/files/vianett/global/images/products/service_mms.png") no-repeat scroll center top;
}
#serviceUlLeft .location {
  background: url("/files/vianett/global/images/products/service_location.png") no-repeat scroll center top;
}
#serviceUlLeft .consulting {
  background: url("/files/vianett/global/images/products/service_consulting.png") no-repeat scroll center top;
}
#serviceUlLeft .world {
  background: url("/files/vianett/global/images/products/service_world.png") no-repeat scroll center top;
}
#serviceUlLeft .scandinavia {
  background: url("/files/vianett/global/images/products/service_scandinavia.png") no-repeat scroll center top;
}
#serviceUlLeft .serviceBlock,
#serviceUlLeft .serviceBlockBlank {
  background-color: #1bb0db;
  /*.rounded(4px);*/
  background-position: 50% 27%;
  margin-bottom: 25px;
  height: 170px;
  list-style: none outside none;
  overflow: hidden;
  z-index: -1;
  display: block;
}
.serviceBlock h2 {
  color: #FFFFFF;
  padding-top: 100px;
  text-align: center;
  font: 400 19px/1.4 "Open Sans", Tahoma, arial, sans-serif;
  padding-left: 5px;
  padding-right: 5px;
}
.serviceBlockBlank h2 {
  color: #FFFFFF;
  padding-top: 10px;
  text-align: center;
  font: 400 15px/1.4 "Open Sans", Tahoma, arial, sans-serif;
  padding-left: 5px;
  padding-right: 5px;
}
.apitextwrapper {
  margin-bottom: 20px;
}
/*================================================================*/
/* FREE DEMONSTRATION ACCOUNT - REGISTRARION DEMO - FORM*/
/*================================================================*/
.category_485 .leftMenu {
  display: none;
}
.registerTopWrapper {
  /*background-color: #FFFFFF;*/
  /*border: 1px solid #DEE6EB;*/
  position: relative;
  border-radius: 5px 5px 0px 0px;
  padding: 0px;
}
.cap {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 15px;
  margin: -3px -1px;
  position: relative;
  top: -2px;
  background-color: #117FB8;
}
.ribbon {
  background: none repeat scroll 0 0 #69BFED;
  color: #015F90;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  border-radius: 0 5px 5px 0;
  display: block;
  float: right;
  font-weight: bold;
  padding: 28px 45px 28px 58px;
  position: relative;
  right: -4px;
  text-transform: uppercase;
  top: 38px;
  line-height: 23px;
}
.ribbon h2 {
  color: #015F90;
  float: right;
  font-size: 17px;
  font-weight: bold;
  line-height: 27px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}
.chevron {
  border-color: transparent transparent transparent #FFFFFF;
  border-style: solid;
  border-width: 72px 0 72px 33px;
  font-size: 0;
  height: 0;
  left: 0;
  line-height: 0;
  position: absolute;
  top: 0;
}
.ContentNewline {
  display: none;
}
.category_724 #pnlStep1,
.category_724 #pnlStep2 {
  background-color: #fff;
  border: 1px solid #DEE6EB;
  padding: 30px;
  border-radius: 5px;
}
#pnlStep1,
#pnlStep2 {
  background-color: transparent;
  border: none;
  padding: 0px;
  border-radius: 5px;
}
.productinterest,
.productComment {
  display: none;
}
#pnlNoteInfo {
  float: right;
}
.category_754 #pnlNoteInfo {
  float: left;
}
.category_754 .freeDemoAccountWrapper {
  margin-top: 0px;
}
.category_754 .freeDemoLeftWrapper {
  list-style: none;
  border-right: none;
}
.category_754 #pnlStep1,
.category_754 #pnlStep2 {
  padding: 0px;
}
.tblRegInfo span {
  margin-bottom: 8px;
  display: block;
}
.freeDemoLeftContent {
  padding-right: 20px;
}
.tblRegInfo input[type=submit] {
  font-size: 1.1em;
  padding: 8px;
  border-radius: 4px;
  min-width: 165px;
  margin-bottom: 10px;
}
#ProductInterest input,
#Volum input,
#TimeFrame input {
  width: 15px;
  border: none;
  padding: 0px;
  border-radius: 0px;
}
#btnNext,
#btnFinnish {
  background-color: #50bc07;
  border-radius: 4px;
  color: #FFFFFF !important;
  cursor: pointer;
  display: inline-block;
  line-height: 1 !important;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
  margin: 10px 0px 10px 5px;
  padding: 8px;
  min-width: 165px;
}
#btnNext hover,
#btnFinnish hover {
  background-color: #dcfdc5;
}
#RadCaptcha1_CaptchaImageUP {
  border: 1px solid #ccc;
}
#_RadCaptcha1__ctl1 {
  margin-bottom: 5px;
  width: 180px;
}
.form-step1,
.form-step2 {
  /* STEPS */
  background: none repeat scroll 0 0 #8CAC52;
  border-radius: 100px 100px 100px 100px;
  color: #FFFFFF !important;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  margin: -2px 5px 0 5px;
  text-align: center;
  vertical-align: middle;
  width: 30px;
}
.form-step2 {
  /* STEPS */
  background: none repeat scroll 0 0 #777;
}
#pnlStep2 .form-step2 {
  background: none repeat scroll 0 0 #8CAC52;
}
#pnlStep2 .form-step1 {
  background: none repeat scroll 0 0 #777;
}
.registerheadline {
  margin: 0px 0px 20px 0px;
  font-size: 22px;
  font-weight: normal;
}
/* ---------- FREE DEMO NEW ---------- */
.freeDemoAccountWrapper {
  margin-top: 20px;
}
.freeDemoLeftWrapper {
  list-style: none;
  /*border-right:2px dotted #ccc;*/
}
.freeDemoLeftWrapper li {
  background: url("/files/vianett/global/images/check.png") no-repeat scroll 0px transparent;
  font-size: 17px;
  display: block;
  list-style-position: inside;
  list-style-type: disc;
  padding-left: 25px;
  line-height: 27px;
  background-position: top left;
}
.category_764 #sitenav,
.category_765 #sitenav {
  display: none;
}
.category_764 .freeDemoLeftWrapper,
.category_765 .freeDemoLeftWrapper {
  border: 0px;
}
.category_764 .freeDemoLeftWrapper li,
.category_765 .freeDemoLeftWrapper li {
  line-height: 21px;
  margin-bottom: 10px;
}
.category_764 .mainContent,
.category_765 .mainContent {
  margin-top: 25px;
}
.category_764 .header,
.category_765 .header {
  margin-top: 0px;
}
.category_764 .freeDemoAccountWrapper,
.category_765 .freeDemoAccountWrapper {
  margin-top: 0px;
}
.category_764 .caseWrapper,
.category_765 .caseWrapper {
  padding: 10px;
  background-color: #eaeaea;
  border: 1px dotted #ccc;
}
.category_764 .caseWrapper a h2,
.category_765 .caseWrapper a h2,
.category_764 .caseWrapper .bold,
.category_765 .caseWrapper .bold {
  color: #1BB0DB;
  font: 600 26px/1.4 "Open Sans", Tahoma, arial, sans-serif;
}
.category_764 h1,
.category_765 h1 {
  font-size: 2.8em;
}
.freeDemoAccountWrapper .mainContent {
  min-height: 600px;
}
.freeDemoAccountWrapper .mainContent ul {
  padding-left: 0px;
  margin-bottom: 15px;
}
/*================================================================*/
/* RIGHT COLUMN WRAPPER - DEVELOPER VIP  */
/*================================================================*/
.bodytemplate_22 .rightColumnWrapper {
  float: right;
}
.bodytemplate_22 .text2 {
  overflow: visible;
}
.bodytemplate_22 h1 {
  max-width: 745px;
}
.bodytemplate_22 .vip_robots {
  float: right;
}
.bodytemplate_22 .vip_robots_mobile {
  display: none;
}
.vipBullets {
  list-style: none;
}
.vipBullets ul {
  margin: 0px;
  padding: 0px;
}
.vipBullets li {
  list-style-position: inside;
  list-style-type: disc;
  line-height: 23px;
}
/*================================================================*/
/* RIGHT COLUMN WRAPPER - DEVELOPER VIP END  */
/*================================================================*/
.divMobileLoginBox {
  max-width: 320px;
  margin: 40px 0px;
  background-color: #fff;
  border: 1px solid #E5E5E5;
}
#talkLoginBody span {
  margin: 0px 3px 10px 0px;
  display: block;
}
.divMobileLoginBox input:not([type=submit]):not([type=file]):not([type=radio]):not([type=checkbox]):not([type=button]) {
  min-width: 200px;
}
#MobileControlValidationSummary1,
#MobileControlPhoneValidator,
#MobileControlPasswordValidator,
#valMobileControlInput,
.error {
  color: #c80000;
}
/*================================================================*/
/* ADMINISTRATION STYLES - ADMIN */
/*================================================================*/
.admin #lblSMSAmount,
.admin #CharactersLeftLabel,
.admin #sms_length,
.admin #sms_count {
  font-weight: bold;
  color: #71ae3b;
}
.admin .RadPicker .rcCalPopup {
  margin-left: 15px;
}
.mainContent input[type=submit],
.mainContent input[type=button],
.divMobileLoginBox input[type=submit] {
  background-color: #50bc07;
  border-radius: 4px;
  color: #FFFFFF !important;
  cursor: pointer;
  display: inline-block;
  line-height: 1 !important;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
  margin: 10px 0px 10px 5px;
  padding: 8px;
  min-width: 165px;
}
.mainContent input[type=submit] hover,
.mainContent input[type=button] hover,
.divMobileLoginBox input[type=submit] hover {
  background-color: #dcfdc5;
}
/*================================================================*/
/* ADMINISTRATION STYLES - ADMIN END */
/*================================================================*/
/*========================== TABLE DESIGN - TABELL =============================*/
.smsGrid td {
  border: 1px solid #fff;
  padding-left: 5px;
  padding-right: 5px;
}
.smsGrid {
  font-size: 12px;
  overflow-x: auto;
  width: 100%;
  display: block;
  margin: 20px 0px 30px 0px;
  border: #fff;
}
.smsGridHeader {
  background-color: #1bb0db;
  color: #FFFFFF;
  height: 30px;
}
.smsGrid th {
  border: 1px solid white;
  padding-left: 5px;
  padding-right: 5px;
}
.smsGridHeader {
  color: #FFFFFF;
}
.smsGridRow {
  background-color: #e9f8fc;
  height: 30px;
}
.smsGridAlternatingRow {
  background-color: #bceaf7;
  height: 30px;
}
.category_498 .smsGrid tr:nth-child(2) {
  font-weight: bold;
  color: #444;
}
/*===========================================================*/
/* RIGHT SUB TEMPLATE - RIGHT COLUMN  */
/*===========================================================*/
.leftSectionContentBlock {
  overflow: hidden;
}
.leftSectionContentText {
  font-size: 16px;
  line-height: 23px;
}
.leftSectionContentText a h2:hover {
  color: #1bb0db;
}
/*===========================================================*/
/* RIGHT SUB TEMPLATE - RIGHT COLUMN  */
/*===========================================================*/
div.itemBody {
  border: 2px solid #FFFFFF;
  box-shadow: 1px 1px 6px #DDDDDD;
  /*margin:0px;*/
  padding: 15px 0;
  margin-bottom: 25px;
  min-height: 180px;
}
div.itemBody h3 {
  border-bottom: 1px solid #E1E3E2;
  font-size: 24px;
  margin: 0;
  padding: 0;
}
div.itemBody h3 span {
  border-bottom: 3px solid #E1E3E2;
  display: inline-block;
  margin-left: 15px;
  padding: 0 12px 6px 0;
}
div.itemFullText {
  border-top: 1px solid #FFFFFF;
  padding: 15px;
}
div.itemFullText img {
  float: left;
  margin: 0px 5px 5px 0px;
}
.clr {
  clear: both;
  display: block;
  float: none;
  height: 0;
  line-height: 0;
}
div.itemSocialLinksBlock ul.itemSocialLinks {
  float: right;
  list-style: none outside none;
  margin: 0;
  padding: 0;
}
div.itemSocialLinksBlock ul.itemSocialLinks li {
  float: left;
  list-style: none outside none;
  margin: 0;
  padding: 4px 0;
}
div.itemSocialLinksBlock ul.itemSocialLinks li a {
  background-position: 0 0;
  background-repeat: no-repeat;
  display: block;
  float: left;
  height: 21px;
  padding-right: 24px;
}
div.itemSocialLinksBlock ul.itemSocialLinks A {
  color: #353936;
}
div.itemSocialLinksBlock ul.itemSocialLinks .facebook {
  background: url("/files/vianett/global/images/social/facebook_small.gif") no-repeat scroll right 49% transparent;
  margin-right: 18px;
}
div.itemSocialLinksBlock ul.itemSocialLinks .twitter {
  background: url("/files/vianett/global/images/social/twitter_small.gif") no-repeat scroll right 49% transparent;
  margin-right: 17px;
}
div.itemSocialLinksBlock ul.itemSocialLinks .linkedin {
  background: url("/files/vianett/global/images/social/linkedin_small.gif") no-repeat scroll right 49% transparent;
  margin-right: 17px;
}
/*=================================================*/
/* REFERENCES - REFERANSER */
/*=================================================*/
.item1 {
  float: left;
}
.item1,
.item2,
.item {
  margin-bottom: 20px;
  min-height: 110px;
}
.category_677 .item1,
.category_677 .item2,
.category_677 .item {
  margin-bottom: 20px;
  height: 340px;
}
.item {
  float: left;
}
.item2 {
  float: left;
}
.itemImageWrapper {
  width: 250px;
  height: 120px;
  display: table-cell;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #DBDBDB;
}
.itemBottom {
  max-width: 220px;
  height: 11px;
  background: url('/files/vianett/global/images/shadow_box.png') bottom transparent no-repeat;
}
.itemImageWrapper img {
  margin: auto;
  display: block;
}
.customerBox .category_657 {
  display: none;
}
#clients {
  color: #333333;
  line-height: 1.2em;
  list-style: none outside none;
  margin: 30px 0px 0px 0px;
  padding: 20px 0px 0px 0px ;
  text-shadow: 1px 1px 0 #FFFFFF;
  border-top: 1px dotted #C4C4C4;
}
#clients .client1 {
  background: url('/files/vianett/global/images/references-front/hafslund.png') bottom;
}
#clients .client1:hover {
  background: url('/files/vianett/global/images/references-front/hafslund_hover.png') bottom;
}
#clients .client2 {
  background: url('/files/vianett/global/images/references-front/ryg.png') bottom;
}
#clients .client2:hover {
  background: url('/files/vianett/global/images/references-front/ryg_hover.png') bottom;
}
#clients .client3 {
  background: url('/files/vianett/global/images/references-front/sparebank1.png') bottom;
}
#clients .client3:hover {
  background: url('/files/vianett/global/images/references-front/sparebank1_hover.png') bottom;
}
#clients .client4 {
  background: url('/files/vianett/global/images/references-front/ice.png') bottom;
}
#clients .client4:hover {
  background: url('/files/vianett/global/images/references-front/ice_hover.png') bottom;
}
#clients .client5 {
  background: url('/files/vianett/global/images/references-front/stabburet.png') bottom;
}
#clients .client5:hover {
  background: url('/files/vianett/global/images/references-front/stabburet_hover.png') bottom;
}
#clients .client6 {
  background: url('/files/vianett/global/images/references-front/statoil.png') bottom;
}
#clients .client6:hover {
  background: url('/files/vianett/global/images/references-front/statoil_hover.png') bottom;
}
#clients {
  /*height:150px;*/
}
#clients a {
  cursor: pointer;
}
#clients .client1:hover,
#clients .client2:hover,
#clients .client3:hover,
#clients .client4:hover,
#clients .client5:hover,
#clients .client6:hover {
  text-indent: -99999px;
  background-position: center;
  background-repeat: no-repeat;
}
#clients .client1,
#clients .client2,
#clients .client3,
#clients .client4,
#clients .client5,
#clients .client6 {
  /*float: left;*/
  height: 115px;
  min-width: 153px;
  display: block;
  text-indent: -99999px;
  background-position: center;
  background-repeat: no-repeat;
}
/*.category_657 .introbanner {
	width:940px;
	height:350px;
	background-image:url(/files/vianett.com/01_images/illustrasjonsbilde.png);
	background-repeat:no-repeat;
	background-position:right;
}*/
/*=================================================*/
/* S�K / SEARCH */
.itemTopWrapper {
  position: relative;
  padding-bottom: 15px;
}
#q {
  background: url("/files/vianett/global/images/bg_inputSearch.png") no-repeat scroll left top transparent;
  border: 0 none;
  color: #999999;
  font-size: 12px;
  height: 25px;
  left: 0;
  line-height: 25px;
  margin: 0;
  outline: medium none;
  padding: 0 10px;
  position: absolute;
  top: 0;
  vertical-align: middle;
  width: 180px;
}
.searchboxWrapper {
  position: absolute;
  right: 130px;
  top: 5px;
}
.socialIconWrapper {
  position: absolute;
  right: 0px;
  top: 5px;
}
.socialicon {
  margin: 0px 0 0 3px;
}
.btnSearch {
  border: 0 none;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  vertical-align: middle;
}
#searchContent {
  position: relative;
  width: 220px;
}
#SearchButton {
  padding: 7px 15px;
}
#SearchTextBox {
  width: 400px;
  border: 3px solid #ddd;
  padding: 5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #666;
  outline: none;
  background: url(/files/vianett/global/images/bg_searchTextBox.png) top left repeat-x;
}
#SearchTextBox:focus {
  border: 3px solid #c2c2c2;
}
.search_item {
  margin-bottom: 20px;
}
.search_link {
  color: #008000;
}
.search_headline {
  font-size: 17px;
}
/*=================================================*/
/* KNAPPER / BUTTONS */
/*=================================================*/
.icons-circle-arrow,
.icons-circle-phone {
  display: inline-block;
  height: 57px;
  overflow: hidden;
  position: absolute;
  right: 10px;
  top: 10px;
  white-space: nowrap;
  width: 57px;
}
.icons-circle-arrow {
  background: url("/files/vianett/global/images/icons.png") no-repeat scroll 0 -286px transparent;
}
.icons-circle-phone {
  background: url("/files/vianett/global/images/icons.png") no-repeat scroll 0 -172px transparent;
}
/*--------------------------------- TOP RIGHT WHY --------------------------------*/
.div_LoginTop .smsAmount {
  color: #41c2e8;
  font-weight: bold;
}
.div_LoginTop .smsAmountHeading {
  color: #fff;
}
.div_LoginTop {
  float: right;
  margin-top: 13px;
}
.a_LoginTop_LogIn,
.a_LoginTop_Register {
  text-transform: uppercase;
}
.div_LoginTop a {
  color: #fff;
}
.div_LoginTop a:hover {
  color: #9cdff3;
}
.div_LoginTop p {
  padding: 0px;
  margin: 0px;
}
.div_LoginTop span {
  color: #C1C1C1;
  text-transform: none;
}
.div_LoginTop .a_LoginTop_LogOut {
  font-weight: normal;
}
.div_LoginTop .a_LoginTop_Why {
  color: #d3d3d3;
}
.div_WhyRegisterBottom {
  width: 254px;
  background: url(/files/vianett.com/01_images/LoginTop/whyRegisterBottom.png) center bottom;
  background-repeat: no-repeat;
  color: #555555;
}
.div_WhyRegisterBottom div {
  margin-left: 20px;
  padding-bottom: 20px;
}
.div_WhyRegisterTop {
  width: 254px;
  height: 67px;
  background-image: url(/files/vianett.com/01_images/LoginTop/whyRegisterTop.png);
}
.div_WhyRegisterTop_Header {
  margin-left: 25px;
  padding-top: 45px;
}
.div_WhyRegisterTop_Header p {
  font-weight: bold;
  color: #000000;
}
/*--------------------------------- TOP RIGHT WHY END --------------------------------*/
/*********************
HEADER
*********************/
.header {
  /*height:90px;*/
  position: relative;
  margin-bottom: 10px;
}
#logo {
  background: url("/files/vianett/global/images/logo.png") no-repeat scroll 0 0 transparent;
  display: block;
  width: 155px;
  height: 28px;
  margin-top: 25px;
}
/*********************
TITLES
*********************/
/*********************
TABLES
*********************/
/*********************
NAVIGATION - MENU
*********************/
/*--------- TOPMENU ADMIN ---------*/
#topmenu {
  margin-top: 3px;
}
#topmenu #nav_div {
  white-space: nowrap;
}
#topmenu #nav_divMain {
  width: 100%	 ;
  height: 16px;
  text-transform: none;
}
#topmenu #nav {
  margin: 0px;
  padding: 0;
}
#topmenu li {
  border-right: 1px solid #DCDCDC;
  float: left;
  height: 16px;
  list-style: none outside none;
  padding: 0 0 0 8px;
}
#topmenu .menu_first {
  padding: 0px;
}
#topmenu li.last {
  border: medium none;
}
#topmenu a {
  display: block;
  font-size: 12px;
  height: 14px;
  line-height: 14px;
  margin-right: 8px;
  text-decoration: none;
  color: #444444;
}
#topmenu .active a,
#topmenu a:hover {
  color: #1bb0db;
}
/*--------- MAIN MENU - MOBILE ---------*/
.mainMenuWrapper {
  border-bottom: 1px solid #f25d22;
}
#mainMenu #nav_divMain {
  text-transform: uppercase;
  float: right;
  margin-top: 40px;
}
#mainMenu #navMain {
  padding: 0 0 0 0px;
  margin: 0px;
  list-style: none;
  position: relative;
  /*background:url(bg_navMain.png) top left no-repeat;*/
}
#mainMenu #navMain li {
  float: left;
  display: inline;
  /*background:url(bg_navMain_divider.png) right center no-repeat; */
  padding: 0 17px 0 15px;
  height: 32px;
  line-height: 32px;
}
#mainMenu #navMain li.menu_last {
  margin-right: 0;
  background: none;
  padding: 0px 0px 0px 15px;
}
#mainMenu #navMain li a {
  color: #444444;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
  cursor: pointer;
  font-size: 16px;
  text-shadow: 1px 1px 0px #fff;
  background-color: none;
}
#mainMenu #navMain li a:hover,
#mainMenu #navMain li.menu_selected a {
  text-shadow: 1px 1px 0px #fff;
  color: #1bb0db;
  text-decoration: none;
}
#mainMenu #navMain li.menu_selected a {
  /*border-bottom:4px solid lighten(@menu-grey, 60%);*/
}
#mainMenu #navMain #liMain_1 {
  padding-left: 0px;
}
#mainMenu #navMain .menu_last {
  padding-right: 0px;
}
/*--------- MAIN MENU ADMIN ---------*/
.admin #mainMenu #navMain li {
  padding: 0 17px 0 15px;
  height: 32px;
  line-height: 32px;
}
.admin #mainMenu #navMain li.menu_last {
  margin-right: 0;
  background: none;
  padding: 0px 0px 0px 15px;
}
.admin #mainMenu #navMain li a {
  font-size: 21px;
  text-transform: none;
}
/*--------- MENU SUBSCRIPTION GROUP ADMIN ---------*/
.admin #subscriptionmenu {
  border-bottom: 1px solid #f25d22;
  padding: 0 0 0 0px;
  margin: 25px 0px;
  list-style: none;
  overflow: hidden;
  position: relative;
  /*background:url(bg_navMain.png) top left no-repeat;*/
}
.admin #subscriptionmenu li {
  border-right: 1px solid #DCDCDC;
  float: left;
  list-style: none outside none;
}
.admin #subscriptionmenu li.menu_last {
  margin-right: 0;
  background: none;
  padding: 0px 0px 0px 15px;
}
.admin #subscriptionmenu li a {
  color: #444444;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
  cursor: pointer;
  background-color: none;
  display: block;
  font-size: 14px;
  padding: 5px 7px;
  text-decoration: none;
}
.admin #subscriptionmenu li a:hover,
.admin #subscriptionmenu li a:active,
.admin #subscriptionmenu li a:focus {
  color: #1bb0db;
  text-decoration: none;
}
.admin #subscriptionmenu li.menu_selected a {
  /*border-bottom:4px solid lighten(@menu-grey, 60%);*/
}
.admin #subscriptionmenu #liMain_1 {
  padding-left: 0px;
}
.admin #subscriptionmenu .menu_last {
  padding-right: 0px;
}
.bottomMenu #nav_divMain,
.footerContainerSmall {
  display: none;
}
.mobile-menu {
  display: none;
}
/*--------- LEFT MENU ---------*/
.leftMenu ul {
  list-style: none;
}
.leftMenu #nav {
  margin: 0px 0px 20px 0px;
}
.leftMenu #nav ul {
  list-style: none;
}
.leftMenu #nav li a {
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #DCDCDC;
  padding: 8px 0px 8px 15px;
  display: block;
  background-image: url(/files/vianett/global/images/bullet.png) no-repeat scroll left center transparent;
  font-size: 14px;
  color: #444444;
}
.leftMenu #nav li a:hover {
  color: #1bb0db;
}
.leftMenu #nav .menu_selected > a {
  color: #f25d22;
}
.leftMenu #nav ul li {
  background-color: #eaeaea;
  text-transform: none;
}
.leftMenu #nav ul li:hover {
  background-color: #f7f7f7;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.leftMenu #nav ul li a,
.leftMenu #nav ul li a:hover {
  padding-left: 20px;
  text-transform: none;
  color: #444;
  text-decoration: none;
}
.leftMenu #nav ul li li {
  background-color: #ccc;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.leftMenu #nav ul li li:hover {
  background-color: #dcdcdc;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.leftMenu #nav ul li li a,
.leftMenu #nav ul li li a:hover {
  background: url(/files/vianett/global/images/bullet.png) no-repeat scroll left center;
  background-position: 11% 50%;
  text-transform: none;
  padding-left: 37px;
  color: #444;
}
.leftMenu ul {
  padding: 0px;
  margin: 0px;
}
/*********************
MISQ
*********************/
/*********************
FOOTER
*********************/
.footerContainer {
  margin: 0 auto;
  padding-top: 70px;
}
footer {
  position: relative;
  color: #999999;
  height: 330px;
  background: url("/files/vianett/global/images/footer.png") repeat scroll 0 0 #202020;
}
#footer {
  background: url("/files/vianett/global/images/bobler.png") no-repeat scroll 0 0 #202020;
  background-position: right bottom;
}
.clearfooter {
  height: 370px;
  clear: both;
}
#footer a {
  color: #999999;
}
#footer a:hover {
  color: #1e89da;
}
#footer p {
  /*font-size: 1.4em;*/
}
#footer .col_1 p {
  margin: 0 0 0.5em;
}
#footer p a {
  /*color: #999999;*/
}
#footer strong {
  color: #FFFFFF;
}
#footer .col_1 {
  float: left;
  margin: 0 2.30263% 0 0;
  width: 23%;
}
#footer .col_2 {
  float: left;
  margin: 0 2.30263% 0 0;
  width: 23%;
}
#footer .col_3 {
  float: left;
  margin: 0 2.30263% 0 0;
  width: 23%;
}
#footer .col_4 {
  float: left;
  margin: 0 2.30263% 0 0;
  width: 21%;
}
@media handheld, only screen and (max-width: 1190px) {
  .priceWrapper .pricel .phead-bottom {
    padding: 20px 10px 10px;
  }
}
/* ======================================================================================= */
/* ! Layout for ipad version   */
/* =======================================================================================  (max-width: 767px) */
@media handheld, only screen and (max-width: 992px) {
  .leftMenu #nav {
    margin: 0px 0px 20px 0px;
  }
  .leftMenu #nav ul {
    list-style: none;
  }
  .leftMenu #nav li a {
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #DCDCDC;
    padding: 8px 0px 8px 15px;
    display: block;
    background-image: url(/files/vianett/global/images/bullet.png) no-repeat scroll left center transparent;
    font-size: 12px;
  }
  .priceWrapper .pricel .phead-bottom {
    padding: 20px 10px 10px;
  }
}
/* ======================================================================================= */
/* ! Layout for ipad version   */
/* =======================================================================================  (max-width: 768px) */
@media handheld, only screen and (max-width: 768px) {
  .dividebottom,
  .leftSectionContentImages,
  .searchboxWrapper,
  .socialIconWrapper,
  .registerTopWrapper,
  #slogan {
    display: none;
  }
  .header {
    margin-bottom: 20px;
  }
  #logo {
    margin-top: 20px;
  }
  h1 {
    font-size: 1.7em;
  }
  h2 {
    font-size: 1.2em;
    font: 400 1.2em "Open Sans", Tahoma, arial, sans-serif;
  }
  .TitleTag {
    display: block;
  }
  .mainContent textarea,
  .mainContent input:not([type=submit]):not([type=file]):not([type=radio]):not([type=checkbox]):not([type=button]) {
    min-width: 170px;
    /*width:170px;*/
  }
  /*=================================================*/
  /* FREE REGISTRATION DEMO ACCOUNT */
  /*=================================================*/
  #pnlStep1,
  #pnlStep2,
  .category_754 #pnlStep1,
  .category_754 #pnlStep2 {
    padding: 20px;
  }
  .freeDemoLeftWrapper {
    border-right: none;
  }
  .freeDemoLeftContent {
    padding-right: 0px;
  }
  /*=================================================*/
  /* NDC 2013 DEMO ACCOUNT */
  /*=================================================*/
  .bodytemplate_25 .SMSDemo_item {
    margin-bottom: 50px;
    /*background-image:url(/files/sms.vianett.com/images/grad.png);*/
    background-position: bottom;
  }
  .bodytemplate_25 .SMSDemo_wrapper .savedtxt {
    color: #89BC3E;
    font-size: 24px;
  }
  .SMSDemo_wrapper span {
    display: block;
  }
  .bodytemplate_25 .SMSDemo_wrapper textarea,
  .mainContent input:not([type="submit"]):not([type="file"]):not([type="radio"]):not([type="checkbox"]):not([type="button"]) {
    min-width: 170px;
    /*width: 250px;*/
    margin-left: 0px;
  }
  .bodytemplate_25 .mainContent input[type=submit] {
    border: 0px;
    border-radius: 0px;
    font-size: 1.4em;
    margin: 0px 5px 10px 0px;
    padding: 15px;
  }
  /*=================================================*/
  /* REFERANSER */
  /*=================================================*/
  .itemImageWrapper {
    width: 270px;
    height: 120px;
    margin: 0px auto;
    display: block;
  }
  .itemBottom {
    max-width: 270px;
  }
  .itemBottom {
    max-width: 270px;
    margin: auto;
  }
  /*=================================================*/
  /* REFERANSER END */
  /*=================================================*/
  .item1,
  .item2,
  .item,
  .category_424 .item1,
  .category_424 .item2,
  .category_424 .item {
    border-bottom: 2px dotted #C4C4C4;
    padding-bottom: 20px;
    min-height: 80px;
  }
  .category_424 .item1,
  .category_424 .item2,
  .category_424 .item {
    float: none;
  }
  .footerContainerSmall {
    display: block;
    padding-top: 10px;
    text-align: center;
  }
  .mainWrapper {
    margin-bottom: -140px;
  }
  footer {
    height: 140px;
  }
  .clearfooter {
    height: 140px;
  }
  .tabelDiv {
    overflow: hidden;
  }
  #mainMenu {
    padding-left: 0px;
    padding-right: 0px;
    border-top: none;
    margin-top: 10px;
  }
  #mainMenu #nav_divMain {
    text-transform: uppercase;
    margin-top: 0px;
    float: none;
    width: 100%;
    background-color: #1bb0db;
  }
  #mainMenu #navMain {
    padding: 0 0 0 0px;
    margin: 0;
    list-style: none;
    height: none;
    position: relative;
    /*background:url(bg_navMain.png) top left no-repeat;*/
  }
  #mainMenu #navMain li {
    padding: 0px;
    height: ;
    line-height: 0px;
    float: none;
    display: inline;
    height: 32px;
    line-height: 32px;
  }
  #mainMenu #navMain li.menu_last {
    margin-right: 0;
    background: none;
    padding: 0px;
  }
  #mainMenu #navMain li a {
    color: #caeef8;
    -webkit-transition: color 0.3s linear;
    -moz-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear;
    cursor: pointer;
    font-size: 13px;
    text-shadow: none;
    display: block;
    font-size: 17px;
    padding: 0px;
    text-align: center;
    border-bottom: 0px solid #ccc;
  }
  #mainMenu #navMain li a:hover,
  #mainMenu #navMain li.menu_selected a {
    text-shadow: none;
    color: #fff;
    text-decoration: none;
    background-color: #41c2e8;
  }
  #mainMenu #navMain #liMain_1 {
    padding-left: 0px;
  }
  #mainMenu #navMain .menu_last {
    padding-right: 0px;
  }
  .navbar-toggle {
    margin-right: 0px;
    margin-left: 15px;
  }
  .itemWrapper {
    overflow: hidden;
    clear: both;
    text-align: center;
  }
  .bottomMenu #nav_divMain {
    display: block;
  }
  .clearfix {
    display: block;
    clear: both;
  }
  .introbanner img {
    display: none;
  }
  .mobile-menu {
    background: url(/files/vianett/global/images/smallmenu.png) no-repeat scroll left center transparent;
    display: block;
    height: 45px;
    margin-top: -30px;
    position: absolute;
    right: 20px;
    text-indent: -99999px;
    top: 43px;
    width: 82px;
  }
  .category_764 .mobile-menu,
  .category_765 .mobile-menu {
    background: url(/files/vianett/global/images/smallmenu_prices.png) no-repeat scroll left center transparent;
  }
  /*.header #nav_divMain
	{
	display:none;
	}*/
  .intro {
    font-size: 17px;
    line-height: 23px;
    max-width: 100%;
  }
  .chartHeading {
    padding: 30px 0px;
    border-top: 1px solid #ccc;
    overflow: hidden;
    text-align: center;
  }
  .chartHeading img {
    float: none;
  }
  .chartHeading h2,
  .chartHeading span {
    float: none;
    margin-top: 16px;
    padding-left: 0px;
  }
  .timelineWrapper {
    display: none;
  }
  .kreatifLogo {
    display: block;
  }
  .bodytemplate_22 .vip_robots {
    float: none;
    display: none;
  }
  .bodytemplate_22 .vip_robots_mobile {
    display: block;
    margin-bottom: 20px;
  }
}
/* ======================================================================================= */
/* ! Layout for ipad version   */
/* =======================================================================================  (max-width: 320px) */
@media handheld, only screen and (max-width: 610px) {
  .div_LoginTop .smsAmountHeading,
  .div_LoginTop .smsAmount,
  .div_LoginTop .welcomeID {
    display: none;
  }
}
@media handheld, only screen and (max-width: 360px) {
  .div_LoginTop .a_LoginTop_Register,
  .div_LoginTop > span {
    display: none;
  }
}
/* ========================================== */
/* ! Provide higher res assets for iPhone 4   */
/* ========================================== */
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  /*	.logo {
		background: url(logo2x.jpg) no-repeat;
		background-size: 212px 303px;
	}*/
}
/*# sourceMappingURL=base.css.map */