
*, *::before, *::after {box-sizing: inherit;}

html, body {
	background-color: #FFFFFF;
	--color: #444;
	--color2: #AAA;
	--color4: #EEE;
	--color-darkgray: #555555;
	--color-lightgray: #d0d0d0;
	--color-lightestgray: #f0efec;
	--box-shadow1: 0px 2px 15px rgba(0,0,0,0.2);
	color: var(--color);
	margin: 0px;
	padding: 0px;
	height: 100%;
	min-height: 100%;
	max-height: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 1.4;
}
td {
	/*font-size: 14px;*/
}
img {
	border: 0px;
}
a:link {
	color: #0b82e6;
	text-decoration: none;
}
a:visited {
/*	color: #0000FF;*/
	text-decoration: none;
}
a:hover {
/*	color: #0000FF;*/
	text-decoration: underline;
}
h1 {
/*	color: #000000;*/
	font-size: 270%;
	line-height: 1em;
	font-weight: normal;
}
h1 span {
	font-size: 18px;
}
h2 {
/*	color: #000000;*/
	font-size: 175%;
/*	font-weight: normal;*/
}
h3 {
/*	color: #000000;*/
	font-size: 100%;
	font-weight: bold;
}
input, textarea {
	color:  #777777;
	padding: 8px 3%;
	box-sizing: border-box;
	border: 1px #C9C9C9 solid;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
input[type=checkbox] {
	transform: scale(1.2);
	vertical-align: 0.1em;
	margin-right: 0.3em;
}
pre.pp {
	background-color: #CCCCCC;
}

/* ------------------------------------------- */

.pagewidth {
	width: 80%;
	max-width: 1100px;
	max-width: 1200px;
	margin: auto;
}
.table {
	display: table;
}
.cell {
	display: table-cell;
	vertical-align: top;
}
.alignc { text-align: center; }
.nowrap { white-space: nowrap; }
.p5{padding:5%;}
.m5{margin:5%;}
.m5b{margin-bottom:5%;}
.m0t{margin-top:0;}
.m0h{margin-left:0;margin-right:0;}

.w100 {width: 100%;}
.w90 {width: 90%;}
.w85 {width: 85%;}
.w80 {width: 80%;}
.w77 {width: 77%;}
.w75 {width: 75%;}
.w65 {width: 65%;}
.w58 {width: 58%;}
.w25 {width: 25%;}

.flex {display: flex;}
.gap1em {gap: 1em;}
.gap05em {gap: 0.5em;}
.alignic {align-items: center;}

.grid-tc-1-1 {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.checkbox { display: block; position: relative; padding-left: 33px; margin-bottom: 12px; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
.checkbox input[type=checkbox] { position: absolute; opacity: 0.1; cursor: pointer; height: 2px; /* > 0px a required funkció miatt "látszódjon"! */ width: 2px; /* > 0px a required funkció miatt "látszódjon"! */ }
.checkbox .checkmark { position: absolute; top: 5px; left: 0; height: 16px; width: 16px; background-color: transparent; border: 1px #FFF solid; /*border-radius: 5px;*/ /*-webkit-border-radius: 5px;*/ /*-moz-border-radius: 5px;*/ }
.checkbox:hover input:not([disabled]) ~ .checkmark { background-color: rgba(255, 255, 255, 0.2); transition: all  .25s; -moz-transition: all  .25s;  -webkit-transition: all  .25s;  -o-transition: all  .25s;  }
.checkbox input:checked ~ .checkmark { background-color: transparent; }
.checkbox .checkmark:after { content: ""; position: absolute; display: none; }
.checkbox input:checked ~ .checkmark:after { display: block; }
.checkbox .checkmark:after { left: 7px; top: 1px; width: 2px; height: 9px; border: solid white; border-width: 0 3px 3px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); }

.checkbox-swicher+span { --size: 0.9rem; position:relative; display: inline-block; width: calc(var(--size) * 2.5); height: var(--size); line-height: var(--size); background-color: var(--color-lightgray); -moz-border-radius: var(--size); -webkit-border-radius: var(--size); border-radius: var(--size); cursor: pointer; vertical-align: middle;}
.checkbox-swicher+span:before, .checkbox-swicher+span:after { content: "ki"; position:absolute; top: 0; left:calc(var(--size) * 0.3); right:calc(var(--size) * 0.55); text-transform: uppercase; font-size: calc(var(--size) * 0.7); line-height:calc(var(--size) * 1.1); -webkit-transition: all .25s; -moz-transition: all .25s; -o-transition: all .25s; transition: all .25s; }
.checkbox-swicher+span:before { left:unset; }
.checkbox-swicher+span:after { content: ""; top:0; left:0; width: var(--size); height: var(--size); border: 1px solid var(--color-lightgray); box-sizing: border-box; background-color: #FFFFFF; -moz-border-radius: var(--size); -webkit-border-radius: var(--size); border-radius: var(--size); }
.checkbox-swicher { position: absolute; width: calc(var(--size) * 2.5); height:3px; opacity:0.1; }
.checkbox-swicher:checked+span { background-color: green; color: #FFFFFF; }
.checkbox-swicher:checked+span:after { left:calc(100% - var(--size)); }
.checkbox-swicher:checked+span:before { content: "be"; left:calc(var(--size) * 0.35); right:unset; }
.checkbox-swicher+span:hover:after { opacity: 0.8; }

.radiobutton { display: block; position: relative; padding-left: 33px; margin-bottom: 12px; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
.radiobutton input[type=radio] { position: absolute; opacity: 0.1; cursor: pointer; height: 2px; /* > 0px a required funkció miatt "látszódjon"! */ width: 2px; /* > 0px a required funkció miatt "látszódjon"! */ }
.radiobutton .radiomark { position: absolute; top: 5px; left: 0; height: 16px; width: 16px; background-color: transparent; border: 1px #FFF solid; border-radius: 50%; -webkit-border-radius: 50%; -moz-border-radius: 50%; }
.radiobutton:hover input:not([disabled]) ~ .radiomark { background-color: rgba(255, 255, 255, 0.2); transition: all  .25s; -moz-transition: all  .25s;  -webkit-transition: all  .25s;  -o-transition: all  .25s;  }
.radiobutton input:checked ~ .radiomark { background-color: transparent; }
.radiobutton .radiomark:after { content: ""; position: absolute; display: none; }
.radiobutton input:checked ~ .radiomark:after { display: block; }
.radiobutton .radiomark:after { left: 3px; top: 3px; width: 0px; height: 0px; border: solid white; border-width: 5px; border-radius: 50%; -webkit-border-radius: 50%; -moz-border-radius: 50%; }

.radiobutton2 span { display: inline-block; position: relative; cursor: pointer; background-color: transparent; padding: 7px 10px; margin-right: 5px; -moz-border-radius: 8px; -webkit-border-radius: 8px; border: 1px solid transparent; border-radius: 8px; -moz-transition: all  .25s;  -webkit-transition: all  .25s;  -o-transition: all  .25s;  transition: all  .25s; }
.radiobutton2:not([disabled]):hover span { background-color: #D79EAB; color: #FFF; }
.radiobutton2 input:checked ~ span { background-color: #d58a9c; color: #FFF; }
.radiobutton2 input[type=radio] { position: absolute; opacity: 0.1; cursor: pointer; height: 2px; width: 2px; }

.inline-label { position: relative; }
.inline-label input, .inline-label textarea { position: relative; background-color: transparent; z-index: 1; padding-left: 0; transition: all .1s; -moz-transition: all .1s; -webkit-transition: all .1s; -o-transition: all .1s; }
.inline-label input:focus, .inline-label textarea:focus { padding-left: 10px; }
.inline-label input + label, .inline-label textarea + label { position: absolute; color: var(--light-font-color); z-index: 0; left: 0px; top: 2px; transition: all .25s; -moz-transition: all .25s; -webkit-transition: all .25s; -o-transition: all .25s; }
.inline-label input:focus + label, .inline-label textarea:focus + label,
.inline-label input:not(:placeholder-shown) + label, .inline-label textarea:not(:placeholder-shown) + label { font-size: 0.85rem; color: var(--light-font-color); top: -1em; left: 0; }
.inline-label input:focus + label:after, .inline-label textarea:focus + label:after,
.inline-label input:not(:placeholder-shown) + label:after, .inline-label textarea:not(:placeholder-shown) + label:after { content: ":"; }

.draw-x { --size: 0.8em; --color: #000; width: var(--size); height: var(--size); --line-width: 1px; position: relative; display: inline-block; }
.draw-x:before, .draw-x:after { content: " "; width: 100%; position: absolute; display: block; margin-top: calc(var(--size) / 2); border-top: var(--line-width, 1px) var(--color) solid; transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -o-transition: all .3s; }
.draw-x:before {  -moz-transform: rotate(45deg); -webkit-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); }
.draw-x:after {  -moz-transform: rotate(-45deg); -webkit-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); }

.draw-arrow { position: relative; display: inline-block; --size: 0.7em; --color: #000; --line-width: 1px; width: var(--size); height: var(--size); box-sizing: border-box; transform-origin: center; }
.draw-arrow:before, .draw-arrow:after { content: " "; display: block; position: absolute; top: 50%; left: 77%; width: 70%; height: 70%; margin: 0; padding: 0; border-top: var(--line-width) var(--color) solid; transition: border-color .25s; }
.draw-arrow:before { top: calc(15% - var(--line-width) * 0.14645); left: calc(-7.5% - var(--line-width) * 0.35355); -moz-transform: rotate(45deg); -webkit-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); transform-origin: center; }
.draw-arrow:after { -moz-transform: rotate(135deg); -webkit-transform: rotate(135deg); -o-transform: rotate(135deg); transform: rotate(135deg); transform-origin: 0 0; }
.draw-arrow.arrow-top {  -moz-transform: rotate(-90deg); -webkit-transform: rotate(-90deg); -o-transform: rotate(-90deg); transform: rotate(-90deg); }
.draw-arrow.arrow-left {  -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); }
.draw-arrow.arrow-bottom {  -moz-transform: rotate(90deg); -webkit-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); }

.draw-triangle { position: relative; --size: 16px; --color: #000; --line-width: 1px; width: var(--size); height: var(--size); border-left: var(--line-width) var(--color) solid; box-sizing: border-box; }
.draw-triangle:before, .draw-triangle:after { content: " "; display: block; position: absolute; top: 0; left: 0; width: var(--size); height: var(--size); margin: 0; padding: 0; border-top: var(--line-width) var(--color) solid; }
.draw-triangle:before { -moz-transform: rotate(30deg); -webkit-transform: rotate(30deg); -o-transform: rotate(30deg); transform: rotate(30deg); transform-origin: top left; }
.draw-triangle:after { -moz-transform: rotate(-30deg); -webkit-transform: rotate(-30deg); -o-transform: rotate(-30deg); transform: rotate(-30deg); transform-origin: 0 0; top: var(--size); left: calc(var(--line-width) * -1); }

.draw-triple { --size: 1rem; --color: #000; --line-width: 2px; border-bottom: var(--line-width) solid var(--color); position: relative; display: block; width: calc(var(--size) * 1.2); height: var(--size); }
.draw-triple:before, .draw-triple:after { content: ""; position: absolute; width: calc(var(--size) * 1.2); top: 0; border-bottom: var(--line-width) solid var(--color); }
.draw-triple:before { top: 50%; width: calc(var(--size) * 1.2); }

.draw-order-icon { --size: 1em; --color: #000; --line-width: 2px; border-bottom: var(--line-width) solid var(--color); position: relative; display: block; width: var(--size); height: var(--size); }
.draw-order-icon:before, .draw-order-icon:after { content: ""; position: absolute; width: calc(var(--size) / 1.5); top: 0; border-bottom: var(--line-width) solid var(--color); }
.draw-order-icon:before { top: 50%; width: calc(var(--size) * 1.2); }

.thinscrollbar { scrollbar-width: thin; }
.thinscrollbar::-webkit-scrollbar { width: 8px; }
.thinscrollbar::-webkit-scrollbar-track { box-shadow: inset 0 0 8px var(--color-lightestgray); border-radius: 10px; }
.thinscrollbar::-webkit-scrollbar-thumb { background: var(--color-gray); border-radius: 10px; }
.thinscrollbar::-webkit-scrollbar-thumb:hover { background: var(--color-darkgray); }


/* ------------------------------------------- */

#container {
	margin: auto;
}
#head {
/*	background-image: url(images/head-bg.jpg);*/
/*	background-position: center center;*/
/*	background-color: #DDDDDD;*/
/*	background-size: 100% 100%;*/
	background: #0b82e6;
    background: linear-gradient(0deg, #0b82e696 0%, hsl(207 91% 43% / 1) 93%);
	width: 100%;
	min-height: 175px;
	margin-bottom: 2em;
}
#head .inner {
	padding-top: 1.55em;
	/*width: 920px; */
	margin: auto;
}
#head h1 {
	font-weight: normal;
	white-space: nowrap;
}
#head * {
	color: #FFF !important;
}
#head h1 span {
	display: block;
	margin-bottom: 5px;
}
#head h2 {
	font-size: 133%;
}
#main {
	/*width: auto;*/
	/*float: left;*/
	border-right: 1px var(--color2) dotted;
	padding: 5px 25px 0px 0px;
	
}
#content {
	/*line-height: 19px;*/
	/*margin-top: 20px;*/
}
#content > h1:first-child {
	margin-top: 0;
}
#content img {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px; 
	max-width: 100%;
}
#right {
	width: 300px;
	margin-top: 5px;
	padding-left: 25px;
}
#right .box h2 {
	font-size: 125%;
	font-weight: normal;
}
#right .box ul {
	padding-left: 20px;
}
#right .box img {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px; 
}

#foot {
	background-color: var(--color4);
	width: 100%;
	box-sizing: border-box;
	margin: auto;
	padding: 2em 0;
	margin-top: 2em;
	padding-top: 2em;
	border-top: 1px var(--color2) dotted;
	clear: both;
	color: #000;
	line-height: 2em;
}

#menu {
	padding: 10px 0px 10px 0px;
}
#menu a {
	display: block;
	padding: 10px 0px;
	/*font-size: 13px;*/
}
#menu a.akt {
	background-color: #FFF;
}

.freeperiods {
	background-color: #e7f2de;
}

.content.nyitoszoveg ul {
	margin-top: 2em;
}

.module-message,
.content.urlap {
	max-width: 800px;
	padding: 20px 0px; 
	margin: 20px auto;
	background-color: var(--color4);
	/*background: rgba(243,243,243,1);*/
	/*background: -moz-radial-gradient(center, ellipse cover, rgba(243,243,243,1) 0%, rgba(238,238,238,1) 74%, rgba(232,232,232,1) 100%);*/
	/*background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(243,243,243,1)), color-stop(74%, rgba(238,238,238,1)), color-stop(100%, rgba(232,232,232,1)));*/
	/*background: -webkit-radial-gradient(center, ellipse cover, rgba(243,243,243,1) 0%, rgba(238,238,238,1) 74%, rgba(232,232,232,1) 100%);*/
	/*background: -o-radial-gradient(center, ellipse cover, rgba(243,243,243,1) 0%, rgba(238,238,238,1) 74%, rgba(232,232,232,1) 100%);*/
	/*background: -ms-radial-gradient(center, ellipse cover, rgba(243,243,243,1) 0%, rgba(238,238,238,1) 74%, rgba(232,232,232,1) 100%);*/
	/*background: radial-gradient(ellipse at center, rgba(243,243,243,1) 0%, rgba(238,238,238,1) 74%, rgba(232,232,232,1) 100%);*/
	/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#e8e8e8', GradientType=1 );*/
	border-radius: 10px; 
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
.content.urlap td { padding: 1%; }

/*.date-range { display: grid; grid-template-columns: 1fr auto 1fr; grid-column-gap: 1%; align-items: center; }*/
/*.date-range input { width: 100%; box-sizing: border-box; }*/
.day-booked {  }
.ui-widget-content .day-bookable .ui-state-default { background-color: lightgreen; background-image: unset; }
.ui-widget-content .day-bookable .ui-state-active { background-color: green; background-image: unset; color: #FFFFFF; }
.ui-widget-content .day-booked .ui-state-default { background-color: red; background-image: unset; color: #FFFFFF; }
#nights { margin-bottom: 0; }
#nights:empty { display: none; }

.module-message {
	max-width: 550px;
	margin: auto;;
}
.module-message .form_item {
	padding: 0 10%;
}
.module-message .form_item textarea,
.module-message .form_item input {
	width: 100%;
	box-sizing: border-box;
}
.module-message .form_item_label,
.module-message .form_item_body {
	width: 25%;
	display: inline-block;
	box-sizing: border-box;
	vertical-align: top;
}
.module-message .form_item_body {
	width: 70%;
	margin-left: 0;
	padding-left: 2%;
}


.kiemelt {
	color: #0000FF;
}
.apro {
	font-size: 80%;
}

div.delimer {
	clear: both;
	margin: 25px 0px;
	border-bottom: 1px #AAA dotted;
}

div.content_list .item img {
	width: 150px;
	float: right;
}

div.auth {
	margin: 40px 20px;
}
div.auth table td {
	padding: 5px;
}
div.auth.password {
	text-align: center;
}

.head_menu {
	padding: 0 15px 0 0;
	line-height: 23px;
	font-size: 1.1em;
	width: 100%;
	/*margin: 0px;*/
}
.head_menu li {
	display: inline-block;
	padding: 0px 1em 0px 0px;
}

#form_message {
	background-color: var(--color4);
	padding: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px; 
}

.shadow {
	-moz-box-shadow: 0px 0px 55px #999;
	-webkit-box-shadow: 0px 0px 55px #999;
	box-shadow: 0px 0px 55px #999;
	/* For IE 8 */
	/*-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=10, Direction=180, Color='#666666')";*/
	/* For IE 5.5 - 7 */
	/*filter: progid:DXImageTransform.Microsoft.Shadow(Strength=10, Direction=180, Color='#666666');*/
}

button, .button {
	padding: 10px 20px;
	text-transform: uppercase;
	 -webkit-border-radius: 3px;
	 -moz-border-radius: 3px;
	 border-radius: 3px;
	 border: 1px solid #0b82e6;
	 background-color: #0b82e6;
	 color: #FFF;
	 -webkit-transition: color .15s, background-color .15s;
	-moz-transition: color .15s, background-color .15s;
	-o-transition: color .15s, background-color .15s;
	transition: color .15s, background-color .15s;
}
button.nobg, .button.nobg {
	 background-color: transparent;
	 color: var(--color);
	 border: 1px solid var(--color);
}
button:hover, .button:hover {
	 background-color: #0a6dc1;
	 border: 1px solid #0a6dc1;
	 color: #FFF;
}

.transparent_btn {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;

	transition: all  .25s;
	-moz-transition: all  .25s; 
	-webkit-transition: all  .25s; 
	-o-transition: all  .25s; 
}

ul.share-buttons{
	display: flex;
    flex-direction: row-reverse;
	gap: 0.2em;
	list-style: none;
	padding: 0;
    margin-right: 0.7em;
    margin-bottom: 0.5em;
}
ul.share-buttons li{
/*	display: table-cell;*/
	width: 40px;
}
ul.share-buttons li:hover{
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}

@media (max-width: 1024px) {
	#main, #right {
		display: block;
		border-right: 0px;
		padding-right: 0px;
		margin: auto;
	}
}
@media (max-width: 900px) {
	.head_menu {
		text-align: center;
		/*padding-bottom: 15px;*/
	}
	.head_menu li {
		padding: 0.4em 0.4em 0.4em 0em;
	}
	.head_menu li:before {
		content: "•";
		display: inline-block;
		position: relative;
	}
	.head_menu li a {
		padding: 0.2em 0em 0.2em 0.5em;
		font-size: 110%;
	}
	ul.share-buttons {
		float: none;
		position: static;
		margin: 0;
		justify-content: center;
		flex-direction: unset;
	}
}
@media (max-width: 700px)
{
	h1 { font-size: 2em; }
	h2 { font-size: 1.5em; line-height: 1.3em; }

	.mW {width: 100%}

	.grig-2-2-1 {
		display: grid;
		grid-template-columns: 1fr;
	}

	#head h2 { font-weight: normal; }
	.m10b-s {margin-bottom: 10%}
	#right {
		width: 95%;
	}
	.content.nyitoszoveg ul {
		list-style-type: none;
		margin-top: 2em;
		padding-left: 0;
	}
	.content.nyitoszoveg table,
	.content.nyitoszoveg td {
		display: block;
		width: 100%!important;
		position: relative;
	}
	.content.nyitoszoveg table tr td:nth-child(2) {
		display: none;
	}
	.content.nyitoszoveg table tr td:nth-child(3) {
		/*height: 210px;*/
		/*overflow-y: scroll;*/
		padding-bottom: 25px;
	}
	.content.nyitoszoveg table tr:after {
		/*
		content: " ";
		vertical-align: bottom;
		position: absolute;
		width: 100%;
		height: 50px;
		left: 0;
		bottom: 0;
		background: -moz-linear-gradient(top, rgba(255,255,255,0.27) 0%, rgba(255,255,255,1) 94%, rgba(255,255,255,1) 100%); 
		background: -webkit-linear-gradient(top, rgba(255,255,255,0.27) 0%,rgba(255,255,255,1) 94%,rgba(255,255,255,1) 100%); 
		background: linear-gradient(to bottom, rgba(255,255,255,0.27) 0%,rgba(255,255,255,1) 94%,rgba(255,255,255,1) 100%); 
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45ffffff', endColorstr='#ffffff',GradientType=0 ); 
		*/
	}
	.content.urlap {
		margin-left: -5%;
		width: 110%;
		padding: 5%;
		box-sizing: border-box;
		border-radius: 0;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
	}
	.content.urlap input[type=checkbox],
	.content.urlap input[type=radio] {
		width: unset;
	}
	.content.urlap table,
	.content.urlap tbody,
	.content.urlap tr,
	.content.urlap td {
		display: block;
		width: 100%;
		box-sizing: border-box;
		text-align: left;
	}
	.content.urlap td {
		padding-left: 0;
		padding-right: 0;
	}
	.content.urlap td:empty {
		display: none;
	}
	.content.urlap td:nth-child(even) {
		padding-bottom: 1em;
	}
	.content.urlap .head {
		text-align: center;
	}
	.pagewidth {
		width: 90%;
	}
}


/*@media (max-width: 700px)*/
/*{*/
/*	h1 { font-size: 1.9em; }*/
/*	h2 { font-size: 1.2em; line-height: 1.2em; }*/
/*}*/


@media print {
	#head, #right, #foot, .head_menu {
		display: none;
	}
	
}