@charset "UTF-8";

/* 0. RESET
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

* { 
	margin: 0; 
	padding: 0; 
}

/* HTML5 elements */
article, aside, canvas, details, figcaption, figure, footer, header,
hgroup, menu, nav, section, summary {
	display: block;
}

pre, code, var, samp, kbd {
	font-family: monospace, sans-serif; 
}

button, input, select, textarea {
	font: inherit;
}


/* 1. BASE
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

body {
	font: normal 12px "Tahoma", "Helvetica Neue", "Geneva", sans-serif;
	line-height: 1.5em;
    background: #f1f1f1; 
    color: #777;
}

input, textarea { padding: 5px; }

fieldset { border: none; }

p {
	margin-bottom: 1em;

	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-o-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto; 
}

q, blockquote p { quotes: "\201E" "\201D"; }

q:before, blockquote p:before { content: open-quote; }

q:after, blockquote p:after { content: close-quote; }

ul ul, ol ol { padding-left: 1.2em; }

h1, h2, h3, h4, h5, h6 { padding: 0 0 0.5em; }

li { list-style-position: inside; }

a { text-decoration: none; color: #414E8B; }
a:hover { text-decoration: underline; }

button, input[type="submit"] { cursor: pointer; }

img { border: none; }


/* 2. LAYOUT
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

#wrapper,
.center { 
	margin: auto; 
	width: 940px;
}

.main-header { 
	height: 105px;
	border-top: 5px solid #767676;
	border-bottom: 2px solid #e2e2e2;
	background: #fff; 
}
.main-header + #content-wrapper {
	position: relative;
	top: -2px;
}
.full-content {
	float: none;
clear:both;
	width: 100%;
}
.main-content {
	float: left;
	width: 617px;
}
.aside-left + .main-content {
	float: right;
	width: 695px;
}

.aside-right {
	float: right;
	width: 246px;
}
.aside-right .form-main {padding-bottom:26px;}
.aside-left {
	float: left;
	width: 170px;
}

footer {
	clear: both;
	overflow: hidden;
	min-width: 915px;
	padding: 20px 0 20px 25px;
	border-top: 2px solid #777;
	border-bottom: 5px solid #767676;
	color: #464646;
}

/*----- 2.2 Navigations ----*/
/* navigation main */
#navigation { 
	float: right;
	margin-right: 20px;
}
	.navigation ul > li { 
		float: left; 
		display: inline; 
		margin: 0 0.1em;
	}
		#navigation a {
			position: relative;
			display: block;
			height: 107px;
			padding: 0 15px;
			font-size: 14px;
			line-height: 107px;
			color: #474747; 
		}
			#navigation a span {
				display: block;
			}
		#navigation a:hover,
		#navigation .active {
			text-decoration: none;
			background: url("../../css/images/main-nav-li-hover.png") repeat-x;
		}
			#navigation a:hover span,
			#navigation li:hover > a span,
			#navigation .active span {
				background: url("../../css/images/arrow-bottom.png") center top no-repeat;
			}
			#navigation li:hover > a {background:#f1f1f1;}

		.navigation a {
			-moz-transition: color 0.2s ease-out 0s;
			-webkit-transition: color 0.2s ease-out 0s;
			-o-transition: color 0.2s ease-out 0s;
			transition: color 0.2s ease-out 0s;
		}
		
/* navigation left */
.navigation.left ul > li {
	float: none;
	display: block;
	margin: 0;
}
	.navigation.left a {
		display: block;
		margin-bottom: 15px;
		font-size: 16px;
		text-transform: uppercase;
		color: #464646;
	}
	.navigation.left a:hover,
	.navigation.left .menuactive,
	.navigation.left .a {
		text-decoration: none;
		color: #e95030;
	}
		.navigation.left ul ul {
			margin-bottom: 15px;
		}
			.navigation.left ul ul li a {
				margin-bottom: 5px;
				font-size: 14px;
			}
	

/*----- 2.4 Lists -----*/
/* list grid module */
.l-grid {
	margin-bottom: 20px;
    list-style: outside none;
clear:both; overflow:auto;
}
#product .l-grid p {padding:0 0 8px 0; margin:0;}
.text-box .l-grid {margin-bottom:0;}
	.l-grid > li {
		float: left;
		width: 197px;
		margin: 0 0 30px 12px;
		text-align: center;
		border-bottom: 2px solid #ababab;
		background: #f1f1f1;
		min-height: 200px;
	}
.LG-varmepumper-Multisplit .l-grid > li, .LG-varmepumper-Singlesplit .l-grid > li, .Panasonic-varmepumper-Singlesplit .l-grid > li {min-height:260px;}

#front .l-grid > li { min-height: 230px; }
	.l-grid.sec > li {
		margin: 0 0 30px 50px;
	}
	.l-grid > li:first-child,
	.l-grid > li.first {
		margin-left: 0;
	}
		.l-grid img {
			margin-bottom: 5px;
		}
		.l-grid.sec img {
			margin-bottom: 10px;
		}
		.l-grid h2, .l-grid > li h2 a {
			font-size: 14px;
			font-weight: normal;
			text-transform: uppercase;
			color: #df3f1e;
		}
		.l-grid > li a {
			color: #777;
		}
		.l-grid > li a:hover {
			text-decoration: none;
		}

/*----- 2.6 Colors -----*/
.cw { color: #fff; }


/* 3. MODULES
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

/* Logo module */
#logo { 
	float: left;
	padding-bottom: 0;
	margin: 15px 0 20px 20px;
}
	#logo img {
		display: block;
	}
		
.inner {
	overflow: hidden;
	clear: both;
	padding: 20px 25px;
	background: #fff;
}
.tel {
	text-align: right;
	font-size: 22px;
	text-transform: uppercase;
	color: #df3f1e;
}
.tel a {
	color: #df3f1e;
}

.slide,
#slider {
	position: relative;
}
.slides_container {height:253px;}
	.slide-text {
		position: absolute;
		left: 570px; top: 80px;
		width: 270px;
		color: #464646;
	}
		.slide-text h1 {
			font-size: 30px;
			font-weight: normal;
			text-transform: uppercase;
			color: #df3f1e;
		}
		.more {
			float: left;
			height: 37px;
			line-height: 37px;
			padding: 0 10px;
			font-size: 18px;
			background: url("../../css/images/more-bg.png") repeat-x;
			border: 1px solid #6fc633;
			color: #fff;
		}
			.more span {
				display: block;
				padding-right: 15px;
				background: url("../../css/images/more-arrow.png") right center no-repeat;
			}
	#slider .bx-controls-direction a, #slider .button {
		position: absolute;
		left: 25px; top: 50%;
		margin-top: -18px;
		width: 36px;
		height: 36px;
		text-indent: -9999px;
		z-index: 5;
		background: url("../../css/images/button-prev.png") no-repeat;
	}
	#slider .button.next, #slider .bx-controls-direction a.bx-next {
		left: auto; right: 25px;
		background: url("../../css/images/button-next.png") no-repeat;
	}
	
.border {
	border-bottom: 2px solid #e2e2e2;
}

.box {
	padding: 10px 20px;
	background: #f1f1f1;
}
	.box h2 {
		font-size: 26px;
		font-weight: normal;
		text-transform: uppercase;
		line-height: 1em;
		text-align: center;
		color: #df3f1e;
	}

.contactform label,
.form-main label {
	display: inline-block;
	width: 45px;
	font-size: 13px;
	color: #464646;
}
.contactform label {width:100px; margin-right:20px;}
.contactform select,
.contactform input[type="text"],
 .form-main input[type="text"] {
	padding: 3px 5px;
	width: 145px;
	margin-bottom: 5px;
	border: 1px solid #c8c8c8;
	background: #fefefe;
	
	-moz-box-shadow: inset 0 5px 10px 0 #ececec;
	-webkit-box-shadow: inset 0 5px 10px 0 #ececec;
	box-shadow: inset 0 5px 10px 0 #ececec;
}
.contactform input[type="submit"],
.form-main input[type="submit"],
.buttons a {
	padding: 0;
	display: block;
	width: 75px;
	height: 25px;
	margin: 20px auto 10px auto;
	line-height: 25px;
	font-size: 13px;
	text-align: center; 
	border: 1px solid #e74b2b;
	background: url("../../css/images/button-bg.png") repeat-x;
	color: #fff;
	
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}
.contactform input[type="submit"]{
margin-left:120px;
width:100px;
}
.footer-top {
	clear: both;
	padding-top: 10px;
	border-top: 5px solid #767676;
	background: url("../../css/images/arrow-bottom.png") center top no-repeat;
}
	.footer-top .inner {
		background: #f1f1f1;
	}
	.search-bar {
		padding: 10px 20px;
		margin-bottom: 35px;
		border: 1px solid #d8d8d8;
		background: #d7d7d7 url("../../css/images/search-bar-bg.png") repeat-x;
	}
		.search-bar h2 {
			padding-bottom: 10px;
			font-size: 14px;
			font-weight: normal;
			text-align: center;
			color: #464646;
		}
		.search-bar .form-main div {
			float: left; display:inline;
		}
.search-bar fieldset {float:left; display:inline;}
.search-bar {overflow:auto;}
			.search-bar .form-main label {
				width: auto;
				margin-right: 10px;
			}
			.search-bar .form-main input[type="text"] {
				width: 115px;
				margin: 0 20px 0 0;
			}
		.search-bar .form-main input[type="submit"] {
			display: inline-block;
			margin: 0;
		}
		
	.footer-box {
		float: left;
		margin: 0 0 20px 45px;
	}
	.search-bar + .footer-box {
		margin-left: 0;
	}
		.footer-box ul {
			list-style: outside none;
		}
			.footer-box ul li {
				line-height: 1.6em;
			}
				.footer-box ul a {
					color: #464646;
				}
		.footer-box h3 {
			padding-bottom: 15px;
			font-size: 18px;
			font-weight: normal;
			color: #464646;
		}
.fnav > ul > li > a  {
			padding-bottom: 10px;
			font-size: 16px;
			display:block;
			font-weight: bold;
			color: #464646;
		}
.fnav > ul > li {float:left; display:inline; margin:0 6px; max-width:135px;}		
.fnav ul ul {padding:0;}
.fnav ul ul ul {display:none;}
.fnav {margin:0;}


/* Footer Module */
footer p {
	float: left;
	margin: 0;
	line-height: 40px;
}

.energi {
  float: right;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.energi li {float:left; display:inline; margin-left:15px;}

.social-ul {
	float: right;
}
	.social-ul li {
		float: left;
		margin-left: 15px;
		list-style: outside none;
	}
		.social-ul li a {
			display: block;
			width: 40px;
			height: 38px;
			text-indent: -9999px;
			background: url("../../css/images/social-sprites.png") left top no-repeat;
		}
		.social-ul li .sec {
			background-position: -57px top;
		}
		.social-ul li .twitter {
			background-position: -114px top;
		}
		.social-ul li .fb {
			background-position: right top;
		}

.text-box {
	margin-bottom: 30px;
}
	footer a, .text-box a {
		color:#df3f1e;
	}
.text-box .buttons a {
		color:#FFFFFF;
	}
	.text-box h1 {
		margin-bottom: 10px;
		font-size: 26px;
		font-weight: normal;
		text-transform: uppercase;
line-height:27px;
	}
	.text-box h2 {
		margin-bottom: 0px;
		font-size: 22px;
		font-weight: normal;
		text-transform: uppercase;
	}
	.text-box h2 + img {
		margin-bottom: 20px;
	}
	.text-box p {
		margin-bottom: 20px;
	}

.buttons {
	padding-top: 20px;
	text-align: center;
}
	.buttons a {
		display: inline-block;
		width: 80%;
		padding: 0 10px;
		margin: 0 10px 10px 10px;
	}

/* 4. SPECIFIC
•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• */

/* vertical center element */
.v-am {
  	text-align: center;
}
.v-am:before {
  	content: '';
  	display: inline-block;
  	height: 100%;
  	vertical-align: middle;
  	margin-right: -0.25em; /* adjusts for spacing */
}
	.v-am-centered {
	  	display: inline-block;
	  	vertical-align: middle;
	  	width: 300px;
	}
		
/* class for clearing issue */
.cf {
    zoom:1;
}
.cf:before,
.cf:after {
    content:"";
    display:table;
}
.cf:after {
    clear:both;
}

/* hide text */
.hide-text {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

/* opacity hover */
.op {
	opacity: 1;
	
	-moz-transition: all 0.25s ease-in-out 0s;
	-webkit-transition: all 0.25s ease-in-out 0s;
	-o-transition: all 0.25s ease-in-out 0s;
	transition: all 0.25s ease-in-out 0s;
}
.op:hover {
	text-decoration: none;
	opacity: .7;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
}

/* input & textarea focus state */
input[type=text],
textarea {
  	border: 1px solid #DDDDDD;
  
  	-moz-transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
input[type=text]:focus,
textarea:focus {
	outline: none;
  	border: 1px solid #007EFF;
  
  	-moz-box-shadow: 0 0 3px #007EFF;
	-webkit-box-shadow: 0 0 3px #007EFF;
	box-shadow: 0 0 3px #007EFF;
}



@media only screen and (min-width : 0px) and (max-width : 640px) {
#wrapper {
	width: auto;
}
	.main-header + #content-wrapper {
		top: 0;
	}
	.main-header {
		height: auto;
		overflow: hidden;
	}
	.main-content {
		float: none;
		width: auto;
	}
	.aside-left + .main-content {
		float: none;
		overflow: hidden;
		width: auto;
	}
	#logo {
		margin: 35px 0 10px 10px;
	}
		#logo img {
			width: 120px;
			height: 40px;
		}
	#navigation {
		margin-right: 10px;
		text-align: right;
	}
		.navigation ul > li {
			float: none;
			display: block;
			margin: 10px 0;
		}
			#navigation a {
				height: auto;
				line-height: 1em;
				padding: 0 5px;
				font-size: 12px;
			}
			#navigation a:hover,
			#navigation .active  {
				text-decoration: underline;
				background: none;
			}
				#navigation a:hover span,
				#navigation .active span {
					background: none;
				}
	.tel {
		margin-bottom: 10px;
		text-align: center;
		font-size: 16px;
	}
	.slide img {
		max-width: 100%;
	}
	#slider .button {
		top: 45px;
	}
	.l-grid > li,
	.l-grid.sec > li {
		float: none;
		width: auto;
		margin: 0 0 10px 0;
		font-size: 11px;
	}
		.l-grid h2 {
			font-size: 12px;
		}
		.l-grid img {
			max-width: 100%;
		}
	.aside-right,
	.aside-left {
		display: none;
	}
	.inner {
		padding: 12px;
	}
	.search-bar .form-main div {
		float: none;
		text-align: center;
	}
		.search-bar .form-main label {
			display: inline-block;
			width: 40px;
			margin-right: 5px;
			text-align: left;
		}
		.search-bar .form-main input[type="text"] {
			width: 120px;
			margin-bottom: 5px;
		}
		.search-bar .form-main input[type="submit"] {
			display: block;
			width: 180px;
			margin: auto;
		}
	.text-box img {
		max-width: 100%;
	}
	.text-box h2 {
		font-size: 16px;
	}
	.footer-box {
		float: none;
		margin-left: 0;
		font-size: 11px;
	}
		.footer-box h3 {
			font-size: 14px;
		}
	footer {
		padding: 10px;
		min-width: auto;
	}
		footer p {
			float: none;
			margin-bottom: 10px;
			font-size: 11px;
			line-height: 1em;
			text-align: center;
		}
		.social-ul {
			float: none;
			width: 230px;
			margin: auto;
		}
}
.slide img {
        display: block;
    }
    .slide-text {
        position: absolute;
        right: -2px; top: 0;
        width: 220px;
        height: 184px;
        padding: 80px 80px 0 25px;
        background: url("../../css/images/overlay-slider.png") repeat;
        color: #464646;
    }
@media only screen and (min-width : 480px) and (max-width : 640px) {
	#slider .button {
		top: 25%;
	}
}

@media only screen and (min-width : 641px) and (max-width : 1024px) {
#wrapper {
	width: 640px;
}
	.main-header + #content-wrapper {
		top: 0;
	}
	.aside-left + .main-content {
		float: none;
		overflow: hidden;
		width: auto;
	}
	#logo {
		margin: 25px 0 10px 10px;
	}
		#logo img {
			width: 150px;
			height: 50px;
		}
	#navigation {
		margin-right: 10px;
	}
		.navigation ul > li {
			margin: 0 0.1em;
		}
			#navigation a {
				padding: 0 5px;
				font-size: 12px;
			}
	.tel {
		margin-bottom: 10px;
		font-size: 16px;
	}
	.slide img {
		max-width: 100%;
	}

	.l-grid > li {
		margin-bottom: 10px;
	}
	.l-grid.sec > li {
		width: 140px;
		margin: 0 0 10px 12px;
	}
	.l-grid.sec > li:first-child,
	.l-grid.sec > li.first {
		margin-left: 0;
	}
		.l-grid.sec img {
			max-width: 100%;
		}
	.aside-right {
		display: none;
	}
	.text-box h2 {
		font-size: 16px;
	}
	.text-box img {
		max-width:100%;
	}
	.navigation.left a {
		font-size: 14px;
	}
		.navigation.left ul ul li a {
			font-size: 12px;
		}
	.inner {
		padding: 12px;
	}
	.search-bar .form-main label {
		margin-right: 5px;
	}
	.search-bar .form-main input[type="text"] {
		width: 100px;
		margin-right: 10px;
	}
	.footer-box {
		margin-left: 15px;
		font-size: 11px;
	}
		.footer-box h3 {
			font-size: 14px;
		}
	footer {
		padding: 10px;
		min-width: 580px;
	}
		footer p {
			font-size: 11px;
		}

}
@media only screen and (max-width : 1024px) {
		.search-bar .form-main div {
			float: none; display:block; padding-bottom:3px;
		}	
.search-bar .form-main label {width:100px;}
.search-bar fieldset {display:block; float:none;}
		body .slide-text {
		display: block;
		clear:both; 
		position:static;
padding:20px 0 0 0;
height:auto;
width:100%;
min-height:110px;
	}
body .slides_container{ height:auto;;}
body #slider .button, #slider .bx-controls-direction a {top:25%;}
}
.text-box ul {padding-bottom:12px;}

ul.listing {margin:0; padding:0; list-style-type:none; clear:both; overflow:auto;}
ul.two li {float:left; display:inline; width:50%;}
#forhandlere li {background:#f1f1f1; border-bottom:1px solid #ababab; padding:12px 12px 0 12px; margin:12px 0}
.listing li h3 {color:#df3f1e;}
.listing li a {font-size:12px; color:#df3f1e;}
.listing li p a {text-decoration:underline;}
.listing strong {color:#303030;}

.navi ul {display:none;}
.navi .a ul {display:block;}
#iframe .main-content {width:100%;}
#iframe .l-grid > li:first-child, 
#iframe .l-grid > li.first,
#iframe .l-grid.sec > li {
    margin: 0 50px 30px 0;
}
#iframe {background:#fff;}


#navigation ul li { 
	position: relative;
}
	#navigation li ul {
		display: none;
		padding: 5px;
		width: 167px;
		
		background: #f1f1f1;
	}
	#navigation li:hover ul {
		display: block;
		position: absolute;
		top: 105px; right: 0;
		z-index: 13; padding:0; 
background:#f1f1f1 url("../../css/images/main-nav-li-hover.png") 0 -105px repeat-x ;
	}
		#navigation li li {
			display: block;
			width: 167px;
			height:auto; padding:0; margin:0;
border-bottom:1px solid #c6c6c6;
		}
		#navigation li li.first {
			border-top: none;
		}
			#navigation li li a {
				padding: 5px 5px;
				border: none !important;
				font-size: 12px;
				height:auto; line-height:20px; 
				display:block;
			}
			#navigation li li a:hover {
				color:#fff; background:#df3f1e;
			}
			#navigation li li a:hover span{
				background:none;
			}
#navigation ul ul ul {display:none !important;}			
@media only screen and (max-width : 640px) {
	#navigation li:hover ul {display:none;}
.fnav > ul > li {display:block; float:none;}
}
table {width:100%;}

.fancybox-inner {overflow:visible !important;}

.pris img {
    float: left;
    margin-left: 24px; margin-bottom:7px;
}
.pris {background:#fff;  overflow: auto;
    padding-top: 7px;position: absolute;
    width: 100%; bottom:0; left:0; height: 28px;}
.pris span {
    float: right;
    margin-right: 24px;
}
.l-grid.sec > li {position:relative;}

.text-box #forhandlere span.buttons a {
margin: 5px 0 0;
    width: 130px;
}

#forhandlere .listing li {position:relative;}
#forhandlere .kon {
position: absolute;
    right: 20px;
    top: 20px;
}
#forhandlere .bigbtn a { background: none repeat scroll 0 0 #DF3F1E;
    color: #FFFFFF;
    display: block;
    font-size: 24px;
    line-height: 30px;
    padding: 20px;
    text-align: center;}
#forhandlere .lin {
position: absolute;
    right: 220px;
    top: 20px;
}
@media only screen and (max-width : 1024px) {
#forhandlere .lin {
    right: 140px;
top:35px;
}
#forhandlere .kon {
top:35px;
}

#forhandlere .bigbtn a {
font-size: 14px;
    line-height: 20px;
}
}
@media only screen and (max-width : 480px) {
#forhandlere .listing li {overflow:auto;}
#forhandlere .bigbtn a {
font-size: 18px;
    line-height: 24px;
}
#forhandlere .bigbtn {
    display: inline;
    float: left;
    height: auto;
    margin-bottom: 5%;
    margin-right: 5%;
    position: static;
    width: 40%;
}
}

#fbrp__113 {display:none; opacity:0;}
.small-gallery .main-img {width:491pxl height:251px; float:left; display:inline;}
.small-gallery {clear:both; overflow:auto;}
.small-gallery .thumbs {width:178px; list-style-type:none; margin:0; padding:0; 
float:right;}
.small-gallery .thumbs li {float:left; margin-bottom:12px;}
@media only screen and (max-width : 1024px) {
.small-gallery .main-img {width:100%; float:none;}
.small-gallery .main-img img {width:100%;}
.small-gallery .thumbs {width:100%; float:none; margin:0 auto; text-align:center;}
.small-gallery .thumbs li {margin:0 auto; width:50%;}
}



.kontakt-float{
 background: url("../../css/images/vert.png") no-repeat scroll 0 0 #DF3F1E;
    display: block;
    height: 244px;
    left: 50%;
    margin-left: 470px;
    position: fixed;
    text-indent: -9999px;
    top: 110px;
    width: 50px;
}
@media only screen and (max-width : 1024px) {
.kontakt-float{
margin-left: 320px;
}

.main-header{position:relative;}
#navigation {position:absolute; right:0;}
}
@media only screen and (max-width : 640px) {
#navigation {position:static; right:0;}
}

@media only screen and (max-width : 740px) {

.kontakt-float{
margin-left:0;
    background: none repeat scroll 0 0 #DF3F1E;
    bottom: 0;
    color: #FFFFFF;
    display: block;
    font-size: 2em;
    left: 0;
    padding: 0.8em;
    position: fixed;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    width:auto;
    top:auto;
    height:auto;
    text-indent:0;
}
}

#ctl00_CPHCnt_WebPubArea3_Admn .buttons a{
background: #DF3F1E;
border-radius: 0;
color: #FFFFFF;
display: block;
font-size: 16px;
height:auto;
margin: 20px auto 10px;
padding: 0;
text-align: center;
text-transform: uppercase;
padding:10px 16px;
}
@media only screen and (max-width : 480px) {
#ctl00_CPHCnt_WebPubArea3_Admn .buttons a{
font-size:15px;
width:90%;
}
}
/* Stylesheet: CSS Modified On 2014-03-10 22:20:41 */