/************************
	Media queries
*************************/

@media print {
	a[href]:after { display:none; }
	.page-break {
		display:block;
		page-break-before:always;
	}
}

/* Large desktops and laptops */
@media (min-width: 1200px) {

}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {

}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {

}

/* Landscape phones and portrait tablets */
@media (max-width: 650px) {
	.rightPictureArea{
		display: none;
	}
	.whiteMainText {
		padding-top: 0px !important;
	}
	.mainBodyContent {
		margin-top: 30px;
	}
}

/* Portrait phones and smaller */
@media (max-width: 480px) {

}