/*
	Theme Name: HTML5 Blank
	Author: Todd Motto (@toddmotto)
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
  font-family: "Barlow Semi Condensed", sans-serif;
  color: #3e3e3e;
  font-size: 16px;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.wrap {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.center {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.j-end {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.end {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.baseline {
	-webkit-box-align: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
}

.j-center {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.between {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.text-center {
	text-align: center;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width:1200px;
	width:100%;
	margin:0 auto;
	padding: 0 10px;
	position:relative;
}
/* header */
.site-header {
    color: #000;
}
.site-header--inner {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.header .wrapper {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}

.header-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 7px 0;
}

.header-logo a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.header-logo img {
    height: auto;
    display: block;
}

.header-menus {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 18px 0 16px;
}

.header-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 22px;
}
.header-top-nav,
.header-bottom-nav .bottom-menu{
	display: none;
}

.header-top-nav ul,
.header-bottom-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-top-nav ul {
    gap: 26px;
}

.header-bottom-nav ul {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 45px;
}

.header-top-nav a {
    position: relative;
    color: #808080;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
	letter-spacing: 0.04em;
    line-height: 1;
    padding-bottom: 4px;
}

.header-phone {
	background: #1f5383;
	color: #fff!important;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 13px;
	border-radius: 4px;
	letter-spacing: 0.04em;
	line-height: 1;
	white-space: nowrap;
	margin-left: 4px;
}

.header-bottom-nav a {
	position: relative;
    color: #3e3e3e;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 17px;
	letter-spacing: 0.04em;
	padding-bottom: 4px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.header-bottom-nav a:after,
.header-top-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #808080;
    -webkit-transition: width .3s ease;
    -o-transition: width .3s ease;
    transition: width .3s ease;
}
.header-bottom-nav a:hover:after,
.header-top-nav a:hover::after {
    width: 100%;
}

.header-top-nav li,
.header-bottom-nav li {
    position: relative;
}

.header-top-nav .sub-menu,
.header-bottom-nav .sub-menu {
    display: none;
}

#mmenu_button{
	display: block;
	text-decoration: none!important;
	text-align: right;
	padding-bottom: 0;
}

#mmenu_button:after{
	display: none;
}

#mmenu_button svg{
	width: 34px;
}
.mm-menu_offcanvas {
    z-index: 9;
}
/* sidebar */
.page-banner {
    position: relative;
    overflow: hidden;
}

.page-banner__image {
    width: 100%;
    height: auto;
    display: block;
}

.page-banner__content {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	left: 0;
	right: 0;
	max-width: 1200px;
	margin: 0 auto;
}

.page-banner__content-wrapper{
   max-width: 220px;
	padding-right: 5%;
	margin-left: auto;
}

.page-banner__title {
    margin: 0 0 10px;
    color: #fff;
    font-size: 21px;
    line-height: .95;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 3px 8px rgba(0, 0, 0, .35);
}

.page-banner__button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #1f5383;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 10px;
	letter-spacing: 0.04em;
    line-height: 1;
}

.page-banner__button:hover {
    background: #000;
    color: #fff;
}
/* .category-grid */
.categoriesList{
	margin: 60px 0;
}
.category-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.category-grid__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-decoration: none;
    color: #fff;
    background: #2c2c2c;
    border: 5px solid #2c2c2c;
    overflow: hidden;
}

.category-grid__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
}

.category-grid__image {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: -webkit-transform .25s ease;
    transition: -webkit-transform .25s ease;
    -o-transition: transform .25s ease;
    transition: transform .25s ease;
    transition: transform .25s ease, -webkit-transform .25s ease;
}

.category-grid__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 8px 6px 4px 6px;
    background: #292929;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.category-grid__item:hover .category-grid__image {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}
/* welcome */
.welcome {
    background: url(/wp-content/uploads/2026/04/welcome_image.jpg) no-repeat center/cover;
    padding: 55px 0;
	margin-bottom: 60px;
}

.welcome__inner {
    position: relative;
}

.welcome__text {
    max-width: 100%;
}

.welcome__text h2 {
    margin: 0 0 15px;
    color: #3e3e3e;
    font-size: 19px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.welcome__text p {
    margin: 0 0 18px;
    color: #3e3e3e;
    font-size: 16px;
    line-height: 20px;
	font-weight: 500;
}

.welcome__text p:last-child{
	margin-bottom: 0;
}

.btnMain {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #292929!important;
    color: #fff!important;
    padding: 7px 19px!important;
    font-size: 16px!important;
    line-height: 1!important;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
}

.welcome__image {
    display: none;
}

/* cases */
.cases-section {
    margin: 60px 0;
    background: #fff;
}

.cases-section__headline {
    margin: 0 0 35px;
    color: #3e3e3e;
    font-size: 21px;
    line-height: 1.1;
    font-weight: 700;
	letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
}

.cases-grid {
    display: -ms-grid;
    display: grid;
      -ms-grid-columns: 1fr 8px 1fr;
      grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.cases-grid__item {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

.cases-grid__image {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: -webkit-transform .25s ease;
    transition: -webkit-transform .25s ease;
    -o-transition: transform .25s ease;
    transition: transform .25s ease;
    transition: transform .25s ease, -webkit-transform .25s ease;
}

.cases-grid__title {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    min-width: 120px;
    padding: 10px;
    background: rgba(32, 32, 32, .9);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
	letter-spacing: 0.04em;
}

.cases-grid__item:hover .cases-grid__image {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}

/* fa tilbud */
.form-section {
    position: relative;
    padding: 45px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.form-section p{
	margin: 0;
}

.form-section__inner {
    max-width: 450px;
    margin: 0 auto;
}

.form-section__headline {
    margin: 0 0 30px;
    color: #3e3e3e;
    font-size: 42px;
    line-height: .95;
    font-weight: 900;
    text-transform: uppercase;
	text-align: center;
}

.form-section__form input,
.form-section__form select,
.form-section__form textarea {
    width: 100%;
    height: 48px;
    margin: 0 0 12px;
    padding: 0 12px;
    border: 0;
    background: #fff;
    color: #3a3a3a;
    font-size: 17px;
    line-height: 1;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.offer-form .wpcf7-submit {
    width: auto;
    height: auto;

}

/* usps */
.usps-section {
    padding: 45px 0;
    background: #fff;
}

.usps-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 28px;
}

.usps-grid__item {
    text-align: center;
}

.usps-grid__icon {
    height: 48px;
    width: auto;
    margin: 0 auto 16px;
    display: block;
}

.usps-grid__title {
    color: #3e3e3e;
    font-size: 17px;
    line-height: 1.1;
	letter-spacing: 0.04em;
    font-weight: 700;
    text-transform: uppercase;
}

.usps-grid__subtitle {
    margin-top: 6px;
    color: #959595;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
}

/* footer */
.footer {
    background: #3e3e3e;
    color: #fff;

}

.footer .wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
	padding-top: 45px;
	padding-bottom: 45px;
}

.footer .h3 {
    margin: 0 0 35px;
    color: #fff;
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.footer p,
.footer a,
.footer li {
    color: #fff;
    font-size: 15px;
    line-height: 22px;
    text-decoration: none;
}

.footer p {
    margin: 0 0 18px;
}

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer a:hover {
    text-decoration: underline;
}
.copyright {
    background: #949494;
    padding: 30px 0;
    color: #ffffff;
    font-size: 13px;
    text-align: center;
}

.copyright .wrapper {
    color: inherit;
}


/*------------------------------------*\
    PAGES
\*------------------------------------*/
.wpcf7{
	max-width: 600px;
}
.wpcf7-form p {
    margin: 0 0 10px;
}

.wpcf7-form label {
    display: block;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.wpcf7-form-control-wrap {
    display: block;
    margin-top: 6px;
}

.wpcf7-form input:not([type="submit"]),
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 0;
    background: #fff;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    padding: 10px 12px;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.wpcf7-form input:not([type="submit"]),
.wpcf7-form select {
    height: 42px;
}

.wpcf7-form textarea {
    min-height: 130px;
    resize: vertical;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: #999;
}

.wpcf7-not-valid-tip {
    margin-top: 5px;
    font-size: 12px;
}

.wpcf7-response-output {
    margin: 18px 0 0 !important;
}


/*------------------------------------*\
    IMAGES
\*------------------------------------*/
.cases-content {
    display: grid;
    gap: 36px;
    margin-top: 32px;
}

.case-block {
    display: grid;
    gap: 18px;
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.case-block__text {
    max-width: 760px;
}

.case-block__text h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.case-block__text p {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.6;
}

.case-block__text p:last-child {
    margin-bottom: 0;
}

.case-block__images {
    display: grid;
    gap: 14px;
}

.case-block__images img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.case-block__images--two {
    grid-template-columns: repeat(2, 1fr);
}

.case-block__images--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-block__images--four img,
.case-block__images--two img {
    aspect-ratio: 4 / 3;
}

@media (min-width: 768px) {
    .cases-content {
        gap: 48px;
    }

    .case-block {
        padding: 32px;
    }
}

@media (min-width: 1100px) {
    .case-block {
        grid-template-columns: 34% 1fr;
        align-items: start;
        gap: 32px;
    }

    .case-block:nth-child(even) {
        grid-template-columns: 1fr 34%;
    }

    .case-block:nth-child(even) .case-block__text {
        order: 2;
    }

    .case-block:nth-child(even) .case-block__images {
        order: 1;
    }

    .case-block__text {
        position: sticky;
        top: 120px;
    }
}
/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@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;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {
    .page-banner__button {
        font-size: 16px;
        padding: 10px 20px;
    }
    .cases-grid__title {
        padding: 17px 24px;
        font-size: 17px;
    }

}
@media (min-width: 768px) {
    .category-grid {
        -ms-grid-columns: 1fr 8px 1fr 8px 1fr 8px 1fr;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .category-grid__title {
        font-size: 18px;
		padding: 12px 6px 10px 6px;
    }
	.cases-grid {
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    }

	.cases-grid__title{
		min-width: 240px;
	}

    .cases-section__headline {
        font-size: 37px;
    }
	.usps-grid {
		-ms-grid-columns: 1fr 0 1fr 0 1fr 0 1fr 0 1fr;
		grid-template-columns: repeat(5, 1fr);
        gap: 0;
    }

    .usps-grid__item {
        padding: 0 10px;
        border-left: 1px solid #eee;
    }

    .usps-grid__item:first-child {
        border-left: 0;
    }
	.footer .wrapper {
        -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}
@media only screen and (min-width:960px) {
	#mmenu_button{
		display: none!important;
	}
.header-top-nav, .header-bottom-nav .bottom-menu {
		display: -webkit-box!important;
		display: -ms-flexbox!important;
		display: flex!important;
	}
    .page-banner__content-wrapper {
        max-width: 700px;
    }

    .page-banner__title {
        font-size: 80px;
    }

    .page-banner__button {
		font-size: 23px;
		padding: 15px 20px;
    }

	.category-grid__title {
        font-size: 22px;
    }

	.welcome__text {
        position: relative;
        z-index: 2;
        width: 60%;
    }

    .welcome__image {
        display: block;
        position: absolute;
        right: 9%;
        bottom: -55px;
        z-index: 1;
        max-width: 330px;
    }

    .welcome__image img {
        display: block;
        width: 100%;
        height: auto;
    }
	    .form-section {
        min-height: 285px;
        padding: 45px 0 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .form-section__inner {
        max-width: 360px;
    }

    .form-section__headline {
        font-size: 71px;
    }
}
@media only screen and (min-width:1140px) {
	.footer{
		overflow-x: hidden;
	}
	.footer .wrapper {
        -ms-grid-columns: 1fr 1fr 1fr 2fr;
        grid-template-columns: 1fr 1fr 1fr 2fr;
		min-height: 400px;
    }

.footer .wrapper:after {
        content: "";
        display: block;
        background-image: url(/wp-content/uploads/2026/04/footer_img.png);
        background-repeat: no-repeat;
        background-position: bottom right;
        background-size: contain;
        width: 300px;
        height: 366px;
        position: absolute;
        bottom: 0;
        right: -30px;
}
	#text-3 {
        position: relative;
        background: #949494;
        border-radius: 22px;
        padding: 20px;
        max-width: 250px;
		height: 110px;
        color: #fff;
    }
	
    #text-3::after {
        content: "";
        position: absolute;
        right: 78px;
        bottom: -39px;
        width: 42px;
        height: 40px;
        background: #949494;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
                clip-path: polygon(0 0, 100% 0, 100% 100%);
    }
    #text-3 .h3 {
        margin: 0 0 4px;
        color: #fff;
        font-size: 23px;
        line-height: 1;
    }

    #text-3 p {
        margin: 0;
        font-size: 17px;
        line-height: 17px;
    }

    #text-3 a {
        color: inherit;
        text-decoration: none;
    }
}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (-o-min-device-pixel-ratio:3/2),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		-webkit-box-shadow:none !important;
		        box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}