/* ESyntaxis (Pvt) Ltd :  http: //www.esyntaxis.com Compiled by Srinath */

/* Delete this Design Aid After the Site Build */
/* Colour reference
background: #XXXXXX
main content bg: #XXXXXX

Order Of Properties

float
position
width
height

margin
padding

background image / colour

z-index

Frequently required CSS Codes

- Transperency

opacity: 0.5; filter: alpha(opacity=50); -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=50)";

	border-radius: 2em;

	box-shadow: 0 1px 0px rgba(0,0,0,.1);

	transition: all 0.5s ease-in-out;	

	box-shadow: 10px 10px 5px #xxxxxx;

background: vendor-type-gradient( start / position , shape size, color 1, color2 [position] [, other colors / positions] );

Type : Radial or Linear
Shape : could be Circle for Raidal
Size : for Radial
Color could be Transparent

use http://www.cssmatic.com/gradient-generator


background: vendor-linear-gradient( top left, red, #c10000, #ae0000 ); 

    background: -webkit-linear-gradient(red 10%, green 85%, blue 90%);
    background: -o-linear-gradient(red 10%, green 85%, blue 90%);
    background: -moz-linear-gradient(red 10%, green 85%, blue 90%); 
    background: linear-gradient(red 10%, green 85%, blue 90%); 
	
	percentage is up to what the colour will be applied

Alternate

background: vendor-linear-gradient(left top, right top, color-stop(0%, rgba(242,246,248,1)), color-stop(50%, rgba(216,225,231,1)), color-stop(51%, rgba(181,198,208,1)), color-stop(100%, rgba(224,239,249,1)));

	 text-shadow: 2px 2px 8px #FF0000; - h shadow v shadow blur radius color
    text-shadow: 0 0 3px #FF0000, 0 0 5px #0000FF;

Vertical Align an image 

.image_div_name:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

transition-timing-function: linear; ease; ease-in; ease-out; ease-in-out;}


*/

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
p,
dl,
hr,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
pre,
table,
address,
fieldset,
figure {
	margin-bottom: 10px;
}
html {
  box-sizing: border-box;
	-moz-box-sizing: border-box; /*Firefox 1-3*/
	-webkit-box-sizing: border-box; /* Safari */  
}
*, *:before, *:after {
  box-sizing: inherit;
	-moz-box-sizing: inherit; /*Firefox 1-3*/
	-webkit-box-sizing: inherit; /* Safari */  
  
}
::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}
/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	height: 38px;
	padding: 0 30px;
	color: #555;
	text-align: center;
	background-color: transparent;
	border-radius: 4px;
	border: 1px solid #bbb;
	cursor: pointer;
	box-sizing: border-box;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	border-color: #888;
	outline: 0;
}
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
	background-color: #33C3F0;
	border-color: #33C3F0;
}
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
	background-color: #1EAEDB;
	border-color: #1EAEDB;
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
textarea {
	min-height: 65px;
	padding-top: 6px;
	padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
	border: 1px solid #33C3F0;
	outline: 0; }
label,
legend {
	display: block;
	margin-bottom: .5rem;
	font-weight: 600; }
fieldset {
	padding: 0;
	border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
	display: inline; }
label > .label-body {
	display: inline-block;
	margin-left: .5rem;
}
/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ol, ul {
	padding-left: 24px
}
ul ul,
ul ol,
ol ol,
ol ul {
	margin: 1.5rem 0 1.5rem 3rem;
}
li {
	margin-bottom: 1rem;
}
/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
table {
	width: 100%;
}
th {
	background-color: #BFCC89;
}
th,
td {
	padding: 5px 3px;
	text-align: left;
	border-left: 1px solid #E1E1E1;
	border-right: 1px solid #E1E1E1;  
	border-bottom: 1px solid #E1E1E1;
}
th:first-child,
td:first-child {
	padding-left: 0;
	border-left: none;
	border-right: none;
}
th:last-child,
td:last-child {
	padding-right: 0; 
	border-left: none;
	border-right: none;
}

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem;
 }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
	margin-top: 10px;
	margin-bottom: 10px;
}


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}
.u-pull-right {
  float: right;
}
.u-pull-left {
  float: left; 
}


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 3px solid #c0abb0; }


/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */

img {
    vertical-align: middle;
	border: 0 none;	
}

/*
 * Remove default fieldset styles.
 */

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}
button:disabled, input:disabled, select:disabled, textarea:disabled {
    cursor:not-allowed !important;
}
sup {
	top: -0.6em
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
body {
}
header {
	background:url(../images/template/logo_bg.png) center repeat;
}
#header-container {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 580px;
}
a:hover {
   		-moz-transition: background .25s linear;
	   -webkit-transition: background .25s linear;
	transition: background .25s linear;
}
.section-bg {
	background: #F8B5C1;
	background: linear-gradient(135deg,rgba(248, 181, 193, 1) 0%, rgba(254, 254, 254, 1) 100%);
	padding-top: 40px;

}
.container {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 800px;
	padding: 0 30px;
 	box-sizing: border-box;	
}
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}
h1 {
	margin: 0 0 0 100px;
	text-align: left;
	padding-top: 60px;
}
h1 small {
	margin-left: 5px;
}
h2, h3 {
	margin-left: 200px
}
p.ind {
	text-indent: 30px;
}
#logo {
    display: block;
	width: auto;
	height: 120px;
	margin: 20px auto;
}
#photo {
	width: 100%;
	height: auto;
	border-radius: 3em;
	border: 10px solid #FFF;
}
#content .c3 img {
	width: 100%;
	height: auto;
}
#content .c12 {
	min-height:300px;
}
#content .c7 h2,
#content .c7 h3 {
	margin: auto;
}
#mobile-menu {
	display: none;
	cursor: pointer;
}
#mobile-menu div {
    width: 36px;
    height: 5px;
    background-color: #333;
    margin: 6px 0;
}
/* Rotate first bar */
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
    transform: rotate(-45deg) translate(-9px, 6px) ;
}

/* Fade out the second bar */
.change .bar2 {
    opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
    transform: rotate(45deg) translate(-8px, -8px) ;
}
#header-contact {
	padding: 19px 10px;
	text-align: right;
}
#main-navigation {
	display: flex;
	justify-content: flex-end;
}
#main-navigation ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
#main-navigation li {
	float: left;
	list-style: none;
}
#main-navigation li a {
	display: block;
	margin: 0 10px;
}
#main-navigation ul li.active a {
	border-bottom: 3px solid #F60;
}
#content .c8 {
	padding-left: 20px;
}
.book {
	float: left;
	width:156px;
	height: auto;
	margin-right: 15px;
	margin-bottom: 0;
}
.center-image {
	display: block;
	margin: auto;
}
.lis {
	float: right;
	margin-top: -75px;
}
.email {
	float:right;
	margin-top: -5px;
}
.border {
	height: 30px;
	width: 100%;
	background:url(../images/template/border.png) repeat-x;
}
.border-space {
	height: 5px;
	width: 100%;
}
footer {
	background-color: #666;
}
.footer-navigation {
	text-align: center;
	padding: 20px 0;
	
}
.footer-navigation a {
	margin: 0 25px;
}
.footer-note {
	height: auto;
	padding: 20px;
	border-bottom: 1px #000 solid;
}
/*--------------------------------------------------------------
# Common Classes
--------------------------------------------------------------*/
.absolute {
	position: absolute;
}
.relative {
	position: relative;
}
.no_border {
	border: none;
}
.border {
	border: 1px solid #636363;
}
.border-dotted {
	border-bottom: 1px dotted #999;
}
.border-bottom {
	border-bottom: 1px solid #636363;
}
.border-top {
	border-top: 1px solid #636363;
}
.border-left {
	border-left: 1px solid #636363;	
}
.border-right {
	border-right: 1px solid #636363;
}
.black-bg {
	background-color: #111;
}
.white-bg {
	background-color: #FFF;
}
.grey-bg {
	background-color: #CCC;
}
.light-grey-bg {
	background-color: #E4E4E4;
}
.common-button {
	width: 132px;
	height: 30px;
	padding: 0 12px;
	margin-top: 20px;
	text-align: center;
	white-space: nowrap;
}
.common-button a {
	display: block;
}
.common-button:hover {
	background-color: #000;
}
.common-button:active {
	border: 1px  dotted #e5e5e5;
}
.alpha {
	opacity: 0.85; filter: alpha(opacity=85); -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=85)";
}
.round-corner {
	border-radius: 2em;
}
.columns-3 {
    -webkit-column-count: 3; /* Chrome, Safari, Opera */
    -moz-column-count: 3; /* Firefox */
    column-count: 3;
}
.hide {
	display: none;
}
.success {
	background-color: #6C3;
	padding : 10px;
}
.error {
	background-color: #C30;
	padding: 10px;
}
/* Margin Settings */
.ma-5 {
	margin: 5px
}
.ma-10 {
	margin: 10px;
}
.ma-15 {
	margin: 15px;
}
.ma-20 {
	margin: 10px;
}
.ma-30 {
	margin: 30px;
}
.ma-40 {
	margin: 40px;
}
.mt-10 {
	margin-top: 10px;
}
.mr-10 {
	margin-right: 10px;
}
.mb-10 {
	margin-bottom: 10px;
}
.ml-10 {
	margin-left: 10px;
}
.mt-15 {
	margin-top: 15px;
}
.mr-15 {
	margin-right: 15px;
}
.mb-15 {
	margin-bottom: 15px;
}
.ml-15 {
	margin-left: 15px;
}
.mtb-10 {
	margin-top: 10px;
	margin-bottom: 10px;
}
.mlr-10 {
	margin-left: 10px;
	margin-right: 10px;
}
.mtb-15 {
	margin-top: 15px;
	margin-bottom: 15px;
}
.mlr-15 {
	margin-left: 15px;
	margin-right: 15px;
}

.mtb-20 {
	margin-top: 20px;
	margin-bottom: 20px;
}
.mlr-20 {
	margin-left: 20px;
	margin-right: 20px;
}
.mtb-30 {
	margin-top: 30px;
	margin-bottom: 30px;
}
.mlr-30 {
	margin-left: 30px;
	margin-right: 30px;
}

/* Padding Settings */
.pa-10 {
	padding: 10px;
}
.pa-20 {
	padding: 20px;
}
.pa-30 {
	padding: 30px;
}
.pa-40 {
	padding: 40px;
}
.pt-10 {
	padding-top: 10px;
}
.pr-10 {
	padding-right: 10px;
}
.pb-10 {
	padding-bottom: 10px;
}
.pl-10 {
	padding-left: 10px;
}
.pt-15 {
	padding-top: 15px;
}
.pr-15 {
	padding-right: 15px;
}
.pb-15 {
	padding-bottom: 15px;
}
.pl-15 {
	padding-left: 15px;
}
.pt-20 {
	padding-top: 20px;
}
.pr-20 {
	padding-right: 20px;
}
.pb-20 {
	padding-bottom: 20px;
}
.pl-20 {
	padding-left: 20px;
}
.pt-30 {
	padding-top: 30px;
}
.pr-30 {
	padding-right: 30px;
}
.pb-30 {
	padding-bottom: 30px;
}
.pl-30 {
	padding-left: 30px;
}
.ptb-10 {
	padding-top: 10px;
	padding-bottom: 10px;
}
.plr-10 {
	padding-left: 10px;
	padding-right: 10px;
}
.ptb-15 {
	padding-top: 15px;
	padding-bottom: 15px;
}
.plr-15 {
	padding-left: 15px;
	padding-right: 15px;
}
.ptb-20 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.plr-20 {
	padding-left: 20px;
	padding-right: 20px;
}
.ptb-30 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.plr-30 {
	padding-left: 30px;
	padding-right: 30px;
}
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.0em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1.0em;	
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.center-text {
	text-align: center;
}
.left-text {
	text-align: left;
}
.right-text {
	text-align: right;
}
/* ==========================================================================
   Responsive classes
   ========================================================================== */
.wfull {
	width: 100%;
	max-width: 100%
}
.w1200 {
	max-width: 1200px
}
.w960 {
	max-width: 960px
}
.w640 {
	max-width: 640px
}
.w320 {
	max-width: 320px
}
.row {
	margin-bottom: 20px;
}
.c1 {
	width: 8.33%
}
.c2 {
	width: 16.66%
}
.c3 {
	width: 25%
}
.c4 {
	width: 33.33%
}
.c5 {
	width: 41.66%
}
.c6 {
	width: 50%
}
.c7 {
	width: 58.33%
}
.c8 {
	width: 66.66%
}
.c9 {
	width: 75%
}
.c10 {
	width: 83.33%
}
.c11 {
	width: 91.66%
}
.c12 {
	width: 100%
}
.c1, .c2, .c3, .c4, .c5, .c6, .c7, .c8, .c9, .c10, .c11, .c12 {
	position: relative;
	float: left;
	min-height: 1px;
}
.s1 {
	margin-left: 8.33%
}
.s2 {
	margin-left: 16.66%
}
.s3 {
	margin-left: 25%
}
.s4 {
	margin-left: 33.33%
}
.s5 {
	margin-left: 41.66%
}
.s6 {
	margin-left: 50%
}
.s7 {
	margin-left: 58.33%
}
.s8 {
	margin-left: 66.66%
}
.s9 {
	margin-left: 75%
}
.s10 {
	margin-left: 83.33%
}
.s11 {
	margin-left: 91.66%
}
.end {
	float: right!important
}

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap; /* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}
/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `: before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }
/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}
.black-alpha {
	background: rgb(0, 0, 0);
	/* RGBa with 0.6 opacity */
	background: rgba(0, 0, 0, 0.70);
	/* For IE 5.5 - 7*/
	filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
	/* For IE 8*/
	-ms-filter: "progid: DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}
.rotate {
	/* Safari */
	-webkit-transform: rotate(-90deg);
	/* Firefox */
	-moz-transform: rotate(-90deg);
	/* IE */
	-ms-transform: rotate(-90deg);
	/* Opera */
	-o-transform: rotate(-90deg);
	/* Internet Explorer  four values: 0, 1, 2, or 3 which will rotate the element 0, 90, 180 or 270 degrees respectively.*/
	filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */
.upgradeie {
	margin: 0.5em 0;
	color: #FFFFFF;
	padding: 1em;
	font-size: 1.1em;
	background-color: #C30;
	text-align: center;
}

/*==========  Media Querries  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	#content .c6 {
		width: 100%;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	#mobile-menu {
		display: block;
	}

	table { 
  		width: 100%; 
  		border-collapse: collapse; 
	}
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
	.row {
		margin-bottom: 0!important
	}
	.c1, .c2, .c3, .c4, .c5, .c6, .c7, .c8, .c9, .c10, .c11, .c12 {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
		margin-bottom: 20px
	}
	h1 {
		text-align: center;
		margin: auto;
		padding-top: 30px;
	}
	h1 small {
		margin: auto;
	}
	h2, h3 {
		margin-left: 172px
	}	
	#logo {
		display: block;
		width: auto;
		height: 90px;
		margin: auto;
	}	
	p img {
		width: 100%;
		height: auto;
		margin-bottom: 20px;		
	}
	.book {
		width:126px;
		height: auto;
	}
	.c4 {
		margin-bottom: 0;
	}
	#content .c12 {
		min-height:auto;
	}
	#content .c8 {
		padding-left: initial;
	}
	.lis {
		margin-top: -35px;
	}
	.email {
		margin-top: 20px;
		margin-right: 10px;
	}	
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
	
}

@media print,
       (-o-min-device-pixel-ratio:5/4),
       (-webkit-min-device-pixel-ratio:1.25),
       (min-resolution:120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */


@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
	@page {
	  margin-left: 1.5cm;
	  margin-top: 1.5cm;
	  margin-right: 1cm;
	  margin-bottom: 1cm;
	}
	@page:left {
	  @bottom-left {
		content: "Page " counter(page) " of " counter(pages);
	  }
	}		
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }
    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
}
