/* -----------------------------------------------------------------------


 Blueprint CSS Framework 1.0
 http://blueprintcss.org

   * Copyright (c) 2007-Present. See LICENSE for more info.
   * See README for instructions on how to use Blueprint.
   * For credits and origins, see AUTHORS.
   * This is a compressed file. See the sources in the 'src' directory.

----------------------------------------------------------------------- */

/* print.css */
body {line-height:1.5;font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;color:#000;background:none;font-size:10pt;}
.container {background:none;}
hr {background:#ccc;color:#ccc;width:100%;height:2px;margin:2em 0;padding:0;border:none;}
hr.space {background:#fff;color:#fff;visibility:hidden;}
h1, h2, h3, h4, h5, h6 {font-family:"Helvetica Neue", Arial, "Lucida Grande", sans-serif;}
code {font:.9em "Courier New", Monaco, Courier, monospace;}
a img {border:none;}
p img.top {margin-top:0;}
blockquote {margin:1.5em;padding:1em;font-style:italic;font-size:.9em;}
.small {font-size:.9em;}
.large {font-size:1.1em;}
.quiet {color:#999;}
.hide {display:none;}
a:link, a:visited {background:transparent;font-weight:700;text-decoration:underline;}


/* new to override bootstrap definition */
@media print{@page {size: landscape !important;}}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
}
/* ==========================================================================
   Print styles
   ========================================================================== */
@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }
	/* to get landscape ouptut and overrid bootstrap definition! */
	.container{
		width:100% !important;
	}
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: "";
    }
    abbr[title]:after {
        content: "";
    }
    /*
     * Don't show links for images, or javascript/internal links
     */
	header a[href]:after,
	.footer-zone a[href]:after,
    .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; /* h5bp.com/t */
    }
    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;
    }

	/* rewrite bootstrap width in order to get content included on print */
	.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
	.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12
	{
	  float: left;
	}
	.col-sm-12 {
	  width: 100%;
	}
	.col-sm-11 {
	  width: 91.66666666666666%;
	}
	.col-md-10 
	.col-sm-10 {
	  width: 83.33333333333334%;
	}
	.col-md-9 ,
	.col-sm-9 {
	  width: 75%;
	}
	.col-smd-8 ,
	.col-sm-8 {
	  width: 66.66666666666666%;
	}
	.col-md-7 ,
	.col-sm-7 {
	  width: 58.333333333333336%;
	}
	.col-md-6,
	.col-sm-6 {
	  width: 50%;
	}
	.col-md-5 ,
	.col-sm-5 {
	  width: 41.66666666666667%;
	}
	.col-md-4,
	.col-sm-4 {
	  width: 33.33333333333333%;
	 }
	 .col-md-3,
	 .col-sm-3 {
	   width: 25%;
	 }
	 .col-md-2 ,
	 .col-sm-2 {
	   width: 16.666666666666664%;
	 }
	 .col-md-1 ,
	 .col-sm-1 {
	  width: 8.333333333333332%;
	 }
	 
	 .full-widh-print{
		 width:100% !important;
	 }
	
}