/*----------------------------------------------------------------------------
[Popup stylesheet]

This stylesheet should contain Popup styles only. All styles should
be separated with a heading.

Project:	    	Webstructure.NET
Version:	    	1.0.0 [http://semver.org/]
Primary use:		For use of styling the POPUPS
Original Author: 	Qasim Alyas
Last change:		01/Mar/10 []
Last Assigned to:	Qasim Alyas

-----------------------------------------------------------------------------*/

	/* Overlay */
	.wvPopupOverlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #000;
		display: none;
		z-index: 100;
	}

	/* Loader */
	.wvPopupLoader {
		position: fixed;
		top: 50%;
		left: 50%;
		margin: -6px 0 0 -104px;
		display: none;
		z-index: 101;
	} /* margins need to be 1/2 height & width of loading animation */

	.wvPopupHideSelect {
		z-index: 99;
		position: absolute;
		background-color: #fff;
		border: 0;
		height: 100%;
		width: 100%;
		top: 0;
		left: 0;
		display: none;
	}

	/* Generic Popup styles*/
	.wvPopup {
		position: fixed;
		top: 0;
		left: 0;
		display: none;
		margin: 0 auto;
		border: 4px solid #399EE7;
		padding: 0;
		background-color: #FFF;
		outline: 0;
		z-index: 102;
	}
		/* Popup title */
		.wvPopup .wvPopupTitle {
			position: absolute;
			top: 7px;
			right: 10px;
		}
			/* Popup close button*/
			.wvPopup .wvPopupTitle .wvPopupCloseButton {
				float: right;
				margin: -20px -20px 0 0;
				width: 34px;
				height: 34px;
				background: url(/magazine/graphics/buttons/tb.close.png) no-repeat 100% 0;
				text-indent: -9999px;
				color: #333;
				cursor: pointer;
				outline:0;
			}