.block	{width:100px;height:100px;line-height:100px;color:#FFFFFF;background-color:#12142B;border:1px solid #F8F8F8;text-align:center;float:left;margin:0px 10px 10px 0px;}
.block:hover	{cursor:pointer;}
.clear	{display:block;clear:both;height:0px;line-height:0px;font-size:0px;}

.target {display:block;float:left;text-decoration:none;color:#333333;padding:2px 5px;;margin:5px 10px 10px 0px;background-color:#F0F0F0;border:1px outset #D0D4D8;-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;}
.target:hover {background-color:#FFFFFF;border-style:solid;}

#widthHeight	{
	-webkit-transition:all 500ms;
	-moz-transition:all 500ms;
	-o-transition:all 500ms;
	transition:all 500ms;
	
}

#widthHeight:hover	{width:200px;height:200px;line-height:200px;}

#scale	{
	-webkit-transition:all 500ms;
	-moz-transition:all 500ms;
	-o-transition:all 500ms;
	transition:all 500ms;
}

#scale:hover	{
	-webkit-transform:scale(2.0, 2.0);
	-moz-transform:scale(2.0, 2.0);
	-o-transform:scale(2.0, 2.0);
	transform:scale(2.0, 2.0);
}

#rotateLinear	{position:relative;clear:both;left:0px;
	-webkit-transition:all 2500ms linear;
	-moz-transition:all 2500ms linear;
	-o-transition:all 2500ms linear;
	transition:all 2500ms linear;
}

#rotateEasing	{position:relative;clear:both;left:0px;
	-webkit-transition:all 2500ms ease;
	-moz-transition:all 2500ms ease;
	-o-transition:all 2500ms ease;
	transition:all 2500ms ease;
}

#rotateLinear:target	{left:200px;
	-webkit-transform:rotate(360deg);
	-moz-transform:rotate(360deg);
	-o-transform:rotate(360deg);
	transform:rotate(360deg);
}

#rotateEasing:target {left:200px;
	-webkit-transform:rotate(360deg);
	-moz-transform:rotate(360deg);
	-o-transform:rotate(360deg);
	transform:rotate(360deg);
}

#bgColorDelay	{background-color:#12142B;
	-webkit-transition:background-color 500ms linear 800ms;
	-moz-transition:background-color 500ms linear 800ms;
	-o-transition:background-color 500ms linear 800ms;
	transition:background-color 500ms linear 800ms;
}

#bgColorDelay:hover	{background-color:#336699;}

#widthHeightOpacity	{
	-webkit-transition:width 500ms 1000ms, height 500ms linear 500ms, opacity 500ms linear 0ms;
	-moz-transition:width 500ms 1000ms, height 500ms linear 500ms, opacity 500ms linear 0ms;
	-o-transition:width 500ms 1000ms, height 500ms linear 500ms, opacity 500ms linear 0ms;
	transition:width 500ms 1000ms, height 500ms linear 500ms, opacity 500ms linear 0ms;
}

#widthHeightOpacity:hover	{width:200px;height:200px;opacity:0.1;
	-webkit-transition:width 500ms, height 500ms linear 500ms, opacity 500ms linear 1000ms;
	-moz-transition:width 500ms, height 500ms linear 500ms, opacity 500ms linear 1000ms;
	-o-transition:width 500ms, height 500ms linear 500ms, opacity 500ms linear 1000ms;
	transition:width 500ms, height 500ms linear 500ms, opacity 500ms linear 1000ms;
}
