@charset "utf-8";
/* CSS Document */

	/* Carousel Styles*/
		body {
			color            : #333;
			background-color : #D6EEF5; 
		}

		#ARWACarousel {
			font-family   : Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
			border-radius : 6px !important;
		}

		#ARWACarousel h3 {
			color       : #ffffff !important;
			font-weight : bold;
			text-shadow : 1px 1px 2px black, 0 0 1em black, 0 0 0.2em blue; 
		}

		#ARWACarousel p {
			color       : #ffffff !important;
			font-weight : bold;
			text-shadow : 1px 1px 2px black, 0 0 1em black, 0 0 0.2em blue; 
		}

		#ARWACarousel h3 a {
			color       : #ffffff !important;
			font-weight : bold;
			text-shadow : 1px 1px 2px black, 0 0 1em black, 0 0 0.2em blue; 
		}

		#ARWACarousel p a {
			color       : #ffffff !important;
			font-weight : bold;
			text-shadow : 1px 1px 2px black, 0 0 1em black, 0 0 0.2em blue; 
		}

		#ARWACarousel div.carousel-inner div.carousel-caption p a, 
		#ARWACarousel div.carousel-inner div.carousel-caption p a:link, 
		#ARWACarousel div.carousel-inner div.carousel-caption p a:visited {
			color           : #ffffff !important;
			font-weight     : bold;
			text-decoration : underline;
		}

		#ARWACarousel div.carousel-inner div.carousel-caption a:hover, 
		#ARWACarousel div.carousel-inner div.carousel-caption a:active {
			color           : #A5CCFB;
			font-weight     : bold;
			text-decoration : underline;
		}

		#ARWACarousel, #ARWACarousel div.carousel-inner, 
		#ARWACarousel div.carousel-inner div.item, 
		#ARWACarousel div.carousel-inner div.item img {
			border-radius : 6px;
			border: none;
			margin: auto;
		}
		/*  inspired from https://codepen.io/Rowno/pen/Afyk  */
		.carousel-fade .carousel-inner .item {
			opacity             : 0;
			transition-property : opacity;
		}

		.carousel-fade .carousel-inner .active {
			opacity : 1;
		}

		.carousel-fade .carousel-inner .active.left, 
		.carousel-fade .carousel-inner .active.right {
			left    : 0;
			opacity : 0;
			z-index : 1;
		}

		.carousel-fade .carousel-inner .next.left, 
		.carousel-fade .carousel-inner .prev.right {
			opacity : 1;
		}

		.carousel-fade .carousel-control {
			z-index : 2;
		}

		/* WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
                now override the 3.3 new styles for modern browsers & apply opacity   */

		@media all and (transform-3d), (-webkit-transform-3d) {
			.carousel-fade .carousel-inner > .item.next, 
			.carousel-fade .carousel-inner > .item.active.right {
				opacity           : 0;
				-webkit-transform : translate3d(0, 0, 0);
				transform         : translate3d(0, 0, 0);
			}

			.carousel-fade .carousel-inner > .item.prev, 
			.carousel-fade .carousel-inner > .item.active.left {
				opacity           : 0;
				-webkit-transform : translate3d(0, 0, 0);
				transform         : translate3d(0, 0, 0);
			}

			.carousel-fade .carousel-inner > .item.next.left, 
			.carousel-fade .carousel-inner > .item.prev.right, 
			.carousel-fade .carousel-inner > .item.active {
				opacity           : 1;
				-webkit-transform : translate3d(0, 0, 0);
				transform         : translate3d(0, 0, 0);
			}
		}

		/* Box Styles */

		.infoHolder {
			padding    : 4px;
			margin     : 4px 0px;
			border     : none;
			box-shadow : none;
		}

		.infoBox {
			border        : thin solid #0051a0;
			padding       : 12px;
			border-radius : 6px;
			height        : 300px;
			overflow      : auto;
			border        : 1px solid #cccccc;
		}

		.infoBox h3 {
			text-align : center;
			margin     : 2px 0px;
		}

		.infoBox h4 {
			text-align : center;
			margin     : 2px 0px;
		}
		#Main {
			display : none;
		}

		/* Additional Table styles */
		table thead tr th {
			text-align       : center;
			vertical-align   : bottom;
			background-color : #C4DFFA;
		}

@media print {
		.infoBox {
			height             : auto; 
			overflow           : visible;
			border             : none;
			border-radius      : 0px;
			-webkit-box-shadow : none;
			box-shadow         : none;
			border-bottom      : thin solid #000000;
		}
}







