/* Cascade Style Sheet
	[Main]
*/


@font-face
{
	font-family:'Roboto_Condensed';
	src:url('../Fonts/RobotoCondensed/RobotoCondensed-Bold.ttf');
}

@font-face
{
	font-family:'Roboto_Light';
	src:url('../Fonts/Roboto/Roboto-Light.ttf');
}

@font-face
{
	font-family:'Roboto_Regular';
	src:url('../Fonts/Roboto/Roboto-Regular.ttf');
}

@font-face
{
	font-family:'Nunito_Regular';
	src:url('../Fonts/Nunito/Nunito-Regular.ttf');
}


/* [Main].Start */

html
{
	height:99%;
	width:100%;
	text-rendering:optimizeLegibility;
}

body
{
	height:99%;
	margin:0px;
	min-height:200px;
	height:auto !important;
	min-width:100px;
	width:auto !important;
	padding:0px;
	width:100%;
}

.Background
{
	background-color:#FFFFFF;
	overflow:hidden;
	margin-bottom:0px;
	margin-left:0px;
	margin-right:0px;
	margin-top:0px;
}

.BackgroundList
{
	background-color:#FFFFFF;
	margin-bottom:0px;
	margin-left:0px;
	margin-right:0px;
	margin-top:0px;
}

.BackgroundEdit
{
	background-color:#FFFFFF;
	margin-bottom:0px;
	margin-left:0px;
	margin-right:0px;
	margin-top:0px;
}

.Wheel
{
  animation-name:Rotate;
  animation-duration:10s;
  animation-iteration-count:infinite;
  animation-timing-function:linear;
  height:200px;
  width:200px;
}

@keyframes Rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* [Main].End */