* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

html {
	overflow-y: scroll;
	overflow-x: hidden;
	background: #fbfbfb url(../img/bg.png) repeat;
	width: 100%;
	height: 100%;
}

body {
	position: relative;
	font-family: "Arial", sans-serif;
	font-size: 14px;
	line-height: 24px;
	color: #4f4f4f;
	width: 100%;
	height: 100%;
}


#footer {
	position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
	height: 30px;
    width: 100%;
	background: #1a1a1a;;
}

#footer-text {
	color: #FFFFFF;
	margin-left: 100px;
	font-size: 15px;
	font-family: "Arial", sans-serif;
	margin-top: 2px;
}

#info-image {
	background: url(../img/info-i.png) no-repeat center top;
	height: 17px;
	width: 18px;

	position: absolute;
	display: inline;
	left: 75px;
	margin-top: 5px;
}

/*	Basic styling
********************/

a {
	color: #717171;
	text-decoration: none;
}

	a:hover {
		color: #0f8edd;
	}

i, em {
  font-style: italic;
}

b, strong {
  font-weight: bold;
}

.wrapper {
	width: 1300px;
	margin: 0 auto;
	position: relative;
}

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

.floatleft {
	float: left;
}

.floatright {
	float: right;
}

.clear {
	clear: both;
}

.hidden {
	display: none;
}

.abel {
	font-family: 'Abel', sans-serif;
}

.title1 {
	font: 24px/42px 'Abel', sans-serif;
	text-shadow: 0px 1px 1px #fff;
}

.title2 {
	font: 18px/24px 'Abel', sans-serif;
	text-shadow: 0px 1px 1px #fff;
    margin-bottom: 8px;
}

.warninglabel {
	color: #ee0202;
	text-align: right;
}

.whitebutton {
	background-color: #fff;
	height: 36px;
	border-radius: 3px;
	color: #0587d8;
	line-height: 36px;
	font-size: 16px;
	padding: 0 10px;
	transition: box-shadow 0.2s;
	-webkit-transition: box-shadow 0.2s;
	font-family: 'Abel', sans-serif;
}

	.whitebutton:hover {
		-webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.2);
	}

.bluebutton {
	display: inline-block;
	height: 36px;
	border-radius: 3px;
	color: #fff;
	line-height: 24px;
	font-size: 16px;
	padding: 5px 20px 7px;
	border: 1px solid #1280c5;
	font-family: 'Abel', sans-serif;

	text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);

    -webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.3);
    box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.3);

    background: rgb(60,170,239);
	background: -moz-linear-gradient(top,  rgba(60,170,239,1) 0%, rgba(2,133,215,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(60,170,239,1)), color-stop(100%,rgba(2,133,215,1)));
	background: -webkit-linear-gradient(top,  rgba(60,170,239,1) 0%,rgba(2,133,215,1) 100%);
	background: -o-linear-gradient(top,  rgba(60,170,239,1) 0%,rgba(2,133,215,1) 100%);
	background: -ms-linear-gradient(top,  rgba(60,170,239,1) 0%,rgba(2,133,215,1) 100%);
	background: linear-gradient(to bottom,  rgba(60,170,239,1) 0%,rgba(2,133,215,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3caaef', endColorstr='#0285d7',GradientType=0 );

	transition: box-shadow 0.2s, color 0.2s, border-color 0.2s;
	-webkit-transition: -webkit-box-shadow 0.2s, color 0.2s, border-color 0.2s;
}

	.bluebutton:hover {
		-webkit-box-shadow: inset 0px 0px 1px 0px rgba(0, 50, 80, 0.5);
    	box-shadow: inset 0px 0px 1px 0px rgba(0, 50, 80, 0.5);
    	color: #fafafa;
    	border-color: #138bd6;
	}

.darkbutton {
	display: inline-block;
	height: 36px;
	border-radius: 3px;
	color: #fff;
	line-height: 24px;
	font-size: 16px;
	padding: 5px 20px 7px;
	border: 1px solid #3b3b3b;
	font-family: 'Abel', sans-serif;

	text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);

    -webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.3);
    box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.3);

	background: #585858; /* Old browsers */
	background: -moz-linear-gradient(top,  #585858 0%, #3b3b3b 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#585858), color-stop(100%,#3b3b3b)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #585858 0%,#3b3b3b 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #585858 0%,#3b3b3b 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #585858 0%,#3b3b3b 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #585858 0%,#3b3b3b 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#585858', endColorstr='#3b3b3b',GradientType=0 ); /* IE6-9 */

	transition: box-shadow 0.2s, color 0.2s, border-color 0.2s;
	-webkit-transition: -webkit-box-shadow 0.2s, color 0.2s, border-color 0.2s;
}

	.darkbutton:hover {
		-webkit-box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.5);
    	box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.5);
    	color: #fafafa;
    	border-color: #202020;
	}

.greybutton {
	display: inline-block;
	height: 36px;
	border-radius: 3px;
	color: #717171;
	line-height: 24px;
	font-size: 16px;
	font-family: 'Abel', sans-serif;
	padding: 5px 10px 7px;
	border: 1px solid #d5d5d5;
	cursor: pointer;
	position: relative;

	background: rgb(245,245,245);
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(235,235,235,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(235,235,235,1)));
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(235,235,235,1) 100%);
	background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(235,235,235,1) 100%);
	background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(235,235,235,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(235,235,235,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ebebeb',GradientType=0 );

	text-shadow: 0px 1px 0px #fff;
}

	.greybutton:hover {
		border-color: #c5c5c5;
		color: #616161;
	}
	
.savebutton {
	display: block;
	height: 28px;
	border-radius: 3px;
	color: #717171;
	line-height: 24px;
	font-size: 16px;
	font-family: 'Abel', sans-serif;
	padding: 6px 10px 6px 36px;
	border: 1px solid #d5d5d5;
	cursor: pointer;
	width:150px;
	position: absolute;
	background: rgb(245,245,245);
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(235,235,235,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(235,235,235,1)));
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(235,235,235,1) 100%);
	background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(235,235,235,1) 100%);
	background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(235,235,235,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(235,235,235,1) 100%);
	background: url(../img/save.png) no-repeat left top;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ebebeb',GradientType=0 );
	
	text-shadow: 0px 1px 0px #fff;
}


	.savebutton:before {
		content: "";
		height: 28px;
		width: 28px;
		position: absolute;
		left: 0px;
		top: 0px;
		
	}

	.savebutton:hover {
		border-color: #c5c5c5;
		background-position: left bottom;
		color: #616161;
	}

.plusbutton {
	padding: 6px 10px 6px 36px;
}

	.plusbutton:before {
		content: "";
		display: block;
		height: 15px;
		width: 14px;
		position: absolute;
		left: 10px;
		top: 10px;
		background: url(../img/plus.png) no-repeat center top;
	}

	.plusbutton:hover:before {
		background-position: center bottom;
	}


.trashcanbutton {
	padding: 6px 10px 6px 26px;
}

	.trashcanbutton:before {
		content: "";
		display: block;
		height: 15px;
		width: 14px;
		position: absolute;
		left: 10px;
		top: 10px;
		background: url(../img/trashcan.png) no-repeat center top;
	}

	.trashcanbutton:hover:before {
		background-position: center bottom;
	}
	
.editbutton {
	padding: 6px 10px 6px 26px;
}

	.editbutton:before {
		content: "";
		display: block;
		height: 16px;
		width: 16px;
		position: absolute;
		left: 10px;
		top: 10px;
		background: url(../img/edit.png) no-repeat center top;
	}

	.editbutton:hover:before {
		background-position: center bottom;
	}
	
.clonebutton {
	padding: 3px 6px 3px 42px;
}

	.clonebutton:before {
		content: "";
		display: block;
		height: 28px;
		width: 36px;
		position: absolute;
		left: 5px;
		top: 4px;
		background: url(../img/clone.png) no-repeat center top;
	}

	.clonebutton:hover:before {
		background-position: center bottom;
	}
	
.infobutton {
	padding: 8px 10px 6px 36px;
}

	.infobutton:before {
		content: "";
		display: block;
		height: 24px;
		width: 28px;
		position: absolute;
		left: 2px;
		top: 6px;
		background: url(../img/info.png) no-repeat center top;
	}

	.infobutton:hover:before {
		background-position: center bottom;
	}
	
.backbutton {
	padding: 8px 10px 6px 36px;
}

	.backbutton:before {
		content: "";
		display: block;
		height: 26px;
		width: 28px;
		position: absolute;
		left: 4px;
		top: 5px;
		background: url(../img/back.png) no-repeat center top;
	}

	.backbutton:hover:before {
		background-position: center bottom;
	}
	

	
/*	Content
********************/

#simple-header {
	padding: 40px 0 30px;
}

	#logo2 {
		display: block;
		height: 62px;
		width: 350px;
		margin: 0 auto;
	}

#demo-bar-container {
	height: 50px;
	width: 100%;
	background: rgb(55,168,239);
	background: -moz-linear-gradient(top,  rgba(55,168,239,1) 0%, rgba(1,133,215,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(55,168,239,1)), color-stop(100%,rgba(1,133,215,1)));
	background: -webkit-linear-gradient(top,  rgba(55,168,239,1) 0%,rgba(1,133,215,1) 100%);
	background: -o-linear-gradient(top,  rgba(55,168,239,1) 0%,rgba(1,133,215,1) 100%);
	background: -ms-linear-gradient(top,  rgba(55,168,239,1) 0%,rgba(1,133,215,1) 100%);
	background: linear-gradient(to bottom,  rgba(55,168,239,1) 0%,rgba(1,133,215,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#37a8ef', endColorstr='#0185d7',GradientType=0 );
}

	#demo-bar {
		background: url(../img/exclamationmark.png) no-repeat left center;
		height: 50px;
		padding: 7px 0px 7px 45px;
	}

		#demo-bar p {
			line-height: 36px;
			color: #fff;
			font-size: 20px;
			text-shadow: 0px 1px 1px #0f77b7;
		}

#ideal-link {
			line-height: 36px;
			color: #fff;
			font-size: 20px;
			text-shadow: 0px 1px 1px #0f77b7;
			text-decoration:underline;
	}

#header-bar-container {
	height: 112px;
	width: 100%;
	background-color: #1a1a1a;
	position: relative;
}

	#white-line {
		height: 1px;
		width: 100%;
		background-color: #fff;
		position: absolute;
		left: 0px;
		bottom: 0px;
	}

	#logo {
		display: inline-block;
		height: 36px;
		width: 200px;
		background: url(../img/logo.png) no-repeat center center;
		margin-top: 35px;
	}

	.menu-item {
		display: block;
		margin: 20px 0 0 10px;
		height: 92px;
		width: 130px;
		background-color: #fff;
		border-radius: 3px 3px 0 0;
		text-align: center;
		padding-top: 60px;
		font-size: 16px;
		position: relative;
		border-bottom: 1px solid #fff;

		-webkit-box-shadow: inset 0px -2px 8px -2px rgba(0, 0, 0, 0.3);
        box-shadow: inset 0px -2px 8px -2px rgba(0, 0, 0, 0.3);

        transition: color 0.4s, border-color 0.4s, box-shadow 0.4s;
        -webkit-transition: color 0.4s, border-color 0.4s, -webkit-box-shadow 0.4s;
	}

		.menu-item:hover,
		.menu-item.active {
        	color: #0f7abc;
        	border-bottom: 1px solid transparent;
        	background: #fff url(../img/bg.png) repeat;
			-webkit-box-shadow: inset 0px -1px 8px -2px rgba(0, 0, 0, 0);
       		box-shadow: inset 0px -1px 8px -2px rgba(0, 0, 0, 0);
        }

        .menu-item .menu-logo,
        .menu-item .menu-logo-colored {
        	display: block;
        	position: absolute;
        	left: 35px;
        	top: 4px;
			height: 60px;
			width: 60px;
			background-image: url(../img/menuitems.png);
			background-repeat: no-repeat;
        }

        	.menu-item .menu-logo-colored {
				opacity: 0;
				transition: opacity 0.4s;
        		-webkit-transition: opacity 0.4s;
        	}

        		.menu-item:hover .menu-logo-colored,
        		.menu-item.active .menu-logo-colored {
					opacity: 1;
	        	}

        	#menu-playlists .menu-logo 				{ background-position: 0px 0px; }
        	#menu-playlists .menu-logo-colored 		{ background-position: 0px -62px; }

        	#menu-exclude .menu-logo 				{ background-position: -62px 0px; }
        	#menu-exclude .menu-logo-colored 		{ background-position: -62px -62px; }

        	#menu-planner .menu-logo 				{ background-position: -122px 0px; }
        	#menu-planner .menu-logo-colored 		{ background-position: -122px -62px; }

			#menu-devices .menu-logo 				{ background-position: -242px 0px; }
        	#menu-devices .menu-logo-colored 		{ background-position: -242px -62px; }

        	#menu-commercials .menu-logo 			{ background-position: -182px 0px; }
        	#menu-commercials .menu-logo-colored 	{ background-position: -182px -62px; }
			
			#menu-announcements .menu-logo 		    { background-position: -312px 0px; }
        	#menu-announcements .menu-logo-colored 	{ background-position: -312px -62px; }

        	#menu-listen .menu-logo 				{ background-position: -240px 0px; }
        	#menu-listen .menu-logo-colored 		{ background-position: -240px -62px;}

    #options-container {
    	width: 120px;
    	height: 90px;
    	margin-top: 22px;
    }

    	.options-link {
    		display: inline-block;
    		height: 26px;
    		padding-left: 32px;
    		font-size: 16px;
    		line-height: 26px;
    		color: #f4f4f4;
    		background-position: left top;
    		background-repeat: no-repeat;
    		transition: color 0.2s;
    		-webkit-transition: color 0.2s;
    	}

    		.options-link:hover,
    		.options-link.active {
	    		background-position: left bottom;
	    		color: #259de7;
	    	}

	    	#options-user 		{ background-image: url(../img/user.png); }
	    	#options-order 		{ background-image: url(../img/order.png); }
	    	#options-logout 	{ background-image: url(../img/logout.png); }
			#options-edit 	{ background-image: url(../img/order.png); }

#content {
	margin-top: 16px;
	padding-bottom: 50px;
}

	.content-header {
		padding-bottom: 10px;
		background: url(../img/border.png) repeat-x bottom;
	}

.checkmark {
	line-height: 28px;
	display: block;
	padding-left: 32px;
	position: relative;
	color: #8b8b8b;
	cursor: pointer;
}

	.checkmark:hover {
		color: #717171;
	}

	.checkmark:before {
		content: "";
		display: block;
		height: 24px;
		width: 24px;
		position: absolute;
		left: 0px;
		top: 2px;
		background: url(../img/checkmark.png) no-repeat center top;
	}

	.checkmark:hover:before {
		background-position: center center;
	}

	.checkmark.active:before {
		background-position: center bottom;
	}


.demo_arrow {
		display:none;
		position:fixed;
		z-index:4999;
}

.demo_tekst {
		display:none;
		position:fixed;
		z-index:6000;
		color:#f9d835;
		font-size:21px;
		font-weight: bold;
}
