/*-------------------------
	The clocks
--------------------------*/


#world_clock_widget{
	width: 100%;
    padding: 20px;
    margin: 0px;
    position: relative;
}

#world_clock_widget:after{
	content:'';
	position:absolute;
	width:400px;
	height:20px;
	border-radius:100%;
	left:50%;
	margin-left:-200px;
	bottom:2px;
	z-index:-1;
}


#world_clock_widget .display{
	text-align: center;
        padding: 0px;
        border-radius: 6px;
        position: relative;
        height: 45px;
        margin: 0 auto;
        width: 235px;
}

#world_clock_widget .display .digits{
	width: 200px;
    	float: left;
}

#world_clock_widget.black .digits div span{
	background-color:#272e38;
	border-color:#272e38;	
}

#world_clock_widget.black .digits div.dots:before,
#world_clock_widget.black .digits div.dots:after{
	background-color:#272e38;
}

/*-------------------------
	red color theme
--------------------------*/


#world_clock_widget.red{
	color:#D32F2F;
}

#world_clock_widget.red .digits div span{
	background-color:#D32F2F;
	border-color:#D32F2F;	
}

#world_clock_widget.red .digits div.dots:before,
#world_clock_widget.red .digits div.dots:after{
	background-color:#D32F2F;
}

/*-------------------------
	purple color theme
--------------------------*/


#world_clock_widget.purple{
	color:#5E35B1;
}

#world_clock_widget.purple .digits div span{
	background-color:#5E35B1;
	border-color:#5E35B1;	
}

#world_clock_widget.purple .digits div.dots:before,
#world_clock_widget.purple .digits div.dots:after{
	background-color:#5E35B1;
}

/*-------------------------
	blue color theme
--------------------------*/


#world_clock_widget.blue{
	color:#0D47A1;
}

#world_clock_widget.blue .digits div span{
	background-color:#0D47A1;
	border-color:#0D47A1;	
}

#world_clock_widget.blue .digits div.dots:before,
#world_clock_widget.blue .digits div.dots:after{
	background-color:#0D47A1;
}

/*-------------------------
	green color theme
--------------------------*/


#world_clock_widget.green{
	color:#1B5E20;
}

#world_clock_widget.green .digits div span{
	background-color:#1B5E20;
	border-color:#1B5E20;	
}

#world_clock_widget.green .digits div.dots:before,
#world_clock_widget.green .digits div.dots:after{
	background-color:#1B5E20;
}

/*-------------------------
	light green color theme
--------------------------*/


#world_clock_widget.light-green{
	color:#689F38;
}

#world_clock_widget.light-green .digits div span{
	background-color:#689F38;
	border-color:#689F38;	
}

#world_clock_widget.light-green .digits div.dots:before,
#world_clock_widget.light-green .digits div.dots:after{
	background-color:#689F38;
}

/*-------------------------
	orange color theme
--------------------------*/


#world_clock_widget.orange{
	color:#F57C00;
}

#world_clock_widget.orange .digits div span{
	background-color:#F57C00;
	border-color:#F57C00;	
}

#world_clock_widget.orange .digits div.dots:before,
#world_clock_widget.orange .digits div.dots:after{
	background-color:#F57C00;
}

/*-------------------------
	brown color theme
--------------------------*/


#world_clock_widget.brown{
	color:#795548;
}

#world_clock_widget.brown .digits div span{
	background-color:#795548;
	border-color:#795548;	
}

#world_clock_widget.brown .digits div.dots:before,
#world_clock_widget.brown .digits div.dots:after{
	background-color:#795548;
}

/*-------------------------
	grey color theme
--------------------------*/


#world_clock_widget.grey{
	color:#9E9E9E;
}

#world_clock_widget.grey .digits div span{
	background-color:#9E9E9E;
	border-color:#9E9E9E;	
}

#world_clock_widget.grey .digits div.dots:before,
#world_clock_widget.grey .digits div.dots:after{
	background-color:#9E9E9E;
}

/*-------------------------
	white color theme
--------------------------*/


#world_clock_widget.white{
	color:#fff;
}

#world_clock_widget.white .digits div span{
	background-color:#fff;
	border-color:#fff;	
}

#world_clock_widget.white .digits div.dots:before,
#world_clock_widget.white .digits div.dots:after{
	background-color:#fff;
}

/*-------------------------
	light blue color theme
--------------------------*/


#world_clock_widget.light-blue{
	color:#03A9F4;
}

#world_clock_widget.light-blue .digits div span{
	background-color:#03A9F4;
	border-color:#03A9F4;	
}

#world_clock_widget.light-blue .digits div.dots:before,
#world_clock_widget.light-blue .digits div.dots:after{
	background-color:#03A9F4;
}

/*-------------------------
	The Digits
--------------------------*/


#world_clock_widget .digits div{
	text-align:left;
	position:relative;
	width: 21px;
	height:50px;
	display:inline-block;
	margin:0 4px;
}

#world_clock_widget .digits div span{
	opacity:0;
	position:absolute;

	-webkit-transition:0.25s;
	-moz-transition:0.25s;
	transition:0.25s;
}

#world_clock_widget .digits div span:before,
#world_clock_widget .digits div span:after{
	content:'';
	position:absolute;
	width:0;
	height:0;
	border:5px solid transparent;
}

#world_clock_widget .digits .d1{			height:4px;width:10px;top:0;left:6px;}
#world_clock_widget .digits .d1:before{	border-width:0 4px 4px 0;border-right-color:inherit;left:-4px;}
#world_clock_widget .digits .d1:after{	border-width:0 0 4px 4px;border-left-color:inherit;right:-4px;}

#world_clock_widget .digits .d2{			height:4px;width:10px;top:20px;left:6px;}
#world_clock_widget .digits .d2:before{	border-width:3px 4px 2px;border-right-color:inherit;left:-8px;}
#world_clock_widget .digits .d2:after{	border-width:3px 4px 2px;border-left-color:inherit;right:-8px;}

#world_clock_widget .digits .d3{			height:4px;width:10px;top:40px;left:6px;}
#world_clock_widget .digits .d3:before{	border-width:4px 4px 0 0;border-right-color:inherit;left:-4px;}
#world_clock_widget .digits .d3:after{	border-width:4px 0 0 4px;border-left-color:inherit;right:-4px;}

#world_clock_widget .digits .d4{			width:4px;height:10px;top:7px;left:0;}
#world_clock_widget .digits .d4:before{	border-width:0 4px 4px 0;border-bottom-color:inherit;top:-4px;}
#world_clock_widget .digits .d4:after{	border-width:0 0 4px 4px;border-left-color:inherit;bottom:-4px;}

#world_clock_widget .digits .d5{			width:4px;height:10px;top:7px;right:0;}
#world_clock_widget .digits .d5:before{	border-width:0 0 4px 4px;border-bottom-color:inherit;top:-4px;}
#world_clock_widget .digits .d5:after{	border-width:4px 0 0 4px;border-top-color:inherit;bottom:-4px;}

#world_clock_widget .digits .d6{			width:4px;height:10px;top:28px;left:0;}
#world_clock_widget .digits .d6:before{	border-width:0 4px 4px 0;border-bottom-color:inherit;top:-4px;}
#world_clock_widget .digits .d6:after{	border-width:0 0 4px 4px;border-left-color:inherit;bottom:-4px;}

#world_clock_widget .digits .d7{			width:4px;height:10px;top:28px;right:0;}
#world_clock_widget .digits .d7:before{	border-width:0 0 4px 4px;border-bottom-color:inherit;top:-4px;}
#world_clock_widget .digits .d7:after{	border-width:4px 0 0 4px;border-top-color:inherit;bottom:-4px;}


/* 1 */

#world_clock_widget .digits div.one .d5,
#world_clock_widget .digits div.one .d7{
	opacity:1;
}

/* 2 */

#world_clock_widget .digits div.two .d1,
#world_clock_widget .digits div.two .d5,
#world_clock_widget .digits div.two .d2,
#world_clock_widget .digits div.two .d6,
#world_clock_widget .digits div.two .d3{
	opacity:1;
}

/* 3 */

#world_clock_widget .digits div.three .d1,
#world_clock_widget .digits div.three .d5,
#world_clock_widget .digits div.three .d2,
#world_clock_widget .digits div.three .d7,
#world_clock_widget .digits div.three .d3{
	opacity:1;
}

/* 4 */

#world_clock_widget .digits div.four .d5,
#world_clock_widget .digits div.four .d2,
#world_clock_widget .digits div.four .d4,
#world_clock_widget .digits div.four .d7{
	opacity:1;
}

/* 5 */

#world_clock_widget .digits div.five .d1,
#world_clock_widget .digits div.five .d2,
#world_clock_widget .digits div.five .d4,
#world_clock_widget .digits div.five .d3,
#world_clock_widget .digits div.five .d7{
	opacity:1;
}

/* 6 */

#world_clock_widget .digits div.six .d1,
#world_clock_widget .digits div.six .d2,
#world_clock_widget .digits div.six .d4,
#world_clock_widget .digits div.six .d3,
#world_clock_widget .digits div.six .d6,
#world_clock_widget .digits div.six .d7{
	opacity:1;
}


/* 7 */

#world_clock_widget .digits div.seven .d1,
#world_clock_widget .digits div.seven .d5,
#world_clock_widget .digits div.seven .d7{
	opacity:1;
}

/* 8 */

#world_clock_widget .digits div.eight .d1,
#world_clock_widget .digits div.eight .d2,
#world_clock_widget .digits div.eight .d3,
#world_clock_widget .digits div.eight .d4,
#world_clock_widget .digits div.eight .d5,
#world_clock_widget .digits div.eight .d6,
#world_clock_widget .digits div.eight .d7{
	opacity:1;
}

/* 9 */

#world_clock_widget .digits div.nine .d1,
#world_clock_widget .digits div.nine .d2,
#world_clock_widget .digits div.nine .d3,
#world_clock_widget .digits div.nine .d4,
#world_clock_widget .digits div.nine .d5,
#world_clock_widget .digits div.nine .d7{
	opacity:1;
}

/* 0 */

#world_clock_widget .digits div.zero .d1,
#world_clock_widget .digits div.zero .d3,
#world_clock_widget .digits div.zero .d4,
#world_clock_widget .digits div.zero .d5,
#world_clock_widget .digits div.zero .d6,
#world_clock_widget .digits div.zero .d7{
	opacity:1;
}


/* The dots */

#world_clock_widget .digits div.dots{
	width:5px;
}

#world_clock_widget .digits div.dots:before,
#world_clock_widget .digits div.dots:after{
	width:5px;
	height:5px;
	content:'';
	position:absolute;
	left:0;
	top:14px;
}

#world_clock_widget .digits div.dots:after{
	top:34px;
}


/*-------------------------
		AM/PM
--------------------------*/


#world_clock_widget .ampm{
	font-size:12px;
	float: left;
    	padding-top: 30px;
}