.ºwindow{
	position: relative;
	margin: 0 auto;
	background: #FFF;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);	
	z-index: 100;
}
	.ºwindow.close {
		overflow: visible;
		margin-top: 31px;
		margin-bottom: 10px;
	}
	.ºwindow.close:not(.center)  {
		margin-right: 31px;
		margin-left: 10px;
	}
		.ºwindow.close>.button{
			position: absolute;
			top: -28px; right: -28px;
			width: 44px; height: 44px;
			background: #AAA url("../pictures/noise.png");
			border-radius: 50px;
			z-index: 100;
			cursor: pointer;
		}
		.ºwindow.close>.button:hover{
			background: #79BC28 url("../pictures/noise.png");
		}
		.ºwindow.close>.button .ºicon_font{
			font-size: 35px;
			padding: 5px 0 0 0;
			color: #FFF;	
		}
		.ºwindow.close>.container{
			display: block;
			overflow: hidden;
			border-radius: 6px;
		}
	.ºwindow.question{
		padding: 15px;
		width: 500px;
	}
		.ºwindow.question .label{
			margin-bottom: 15px;
			color: #777;
		}
		.ºwindow.question .accept{
			float: left;
			width: 245px;
			margin-right: 10px;
		}
		.ºwindow.question .cancel{
			width: 245px;
		}
	.ºwindow.msgbox{
		padding: 15px;
		width: 500px;
	}
		.ºwindow.msgbox .label{
			margin-bottom: 15px;
			color: #777;
			white-space: pre-line;
		}
		.ºwindow.msgbox .accept{			
			width: 500px;
			margin-right: 10px;
		}
		.ºwindow.msgbox .icon{
			float: left;	
			margin: 0 10px 10px 0;
			font-size: 9em;
		}
		.ºwindow.msgbox .icon.info{
			color: blue;
		}
		.ºwindow.msgbox .icon.error{
			color: red;
		}
		.ºwindow.msgbox .icon.warn{
			color: yellow;
		}
		.ºwindow.msgbox .icon.success{
			color: green;
		}