<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
@media screen and ( min-width: 900px )
	{
		.cycle-container
			{
				margin-left:				auto;
				margin-right:				auto;
				width:						90%;
			}
			
		.cycle-container div.cycle-overlay
			{ 
				background-color:			rgba( 100, 100, 100, 1 );
				color:						#fff;
				margin-right:				10px;
				margin-top:					-13px;
				text-align:					center;
			}

		.cycle-container a:link
			{ 
				text-decoration:			none;
			}

		.cycle-container a div.cycle-overlay
			{ 
				text-decoration:			underline; /* NOTE: ISSUE WITH CSS UNDERLINE OF STANDARD A TAG - THIS METHOD IS USED*/
			}
	
		.cycle-container img
			{
				border:						solid 1px rgba( 100, 100, 100, 1 );
				margin-right:				10px;
			}
			
		.cycle-container a.prev
			{
				background:					url('/SystemFiles/LIB-IMG/Carousel/Prev.png') no-repeat center;
				cursor:						pointer;
				display:					block;
				float:						left;
				height:						250px;
				margin-left:				10px;
				margin-right:				10px;
				width:						50px;
			}

		.cycle-container a.next
			{
				background:					url('/SystemFiles/LIB-IMG/Carousel/Next.png') no-repeat center;
				cursor:						pointer;
				display:					block;
				float:						right;
				height:						250px;
				margin-left:				10px;
				margin-right:				20px;
				width:						50px;
			}
	}</pre></body></html>