/*
 * jqPuzzle - Sliding Puzzles with jQuery
 * Default CSS theme
 * 
 * Copyright (c) 2008 Ralf Stoltze, http://www.2meter3.de/jqPuzzle/
 * Dual-licensed under the MIT and GPL licenses.
 *
 * Note that some CSS properties are set by the jqPuzzle script itself to make 
 * sure that the puzzle works properly. These properties will overwrite 
 * user-defined properties.
 * 
 * The class 'jqp-solved' is added to the outermost element when a puzzle is 
 * solved by the user. Use '.jqPuzzle.jqp-solved' to define different styles
 * for solved puzzles.
 */

/* outermost element which holds the full puzzle interface */
.jqPuzzle {
	margin:0px 0px 10px 0px;
	padding: 5px;
	border: 0px solid #FFFFFF;
	background-color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align:center;
	
	
}

/* only needed if external css rules set defaults for divs,
   this rule only resets the most common properties */
.jqPuzzle div {
	background-color: transparent;
    width:400px;
	margin: 0px;
	padding: 0px;
	border-style: none;
	text-align:center;
	}

/* div wrapper which holds the puzzle pieces and the solution image */
.jqPuzzle .jqp-wrapper {
	padding: 2px;
    width:450px;
	border: 1px solid #FFFFFF;
	background-color: #444455;
    background-size: 450px auto;
}

/* a single puzzle piece */
.jqPuzzle .jqp-piece {
	border: 1px solid #FFFFFF;
	color: #FFFFFF;
	font-size: 12px;
	text-align:right;
	font-weight:bold;
}

.jqPuzzle .jqp-piece span{
	background-color:#666;
	color: #fff;
	font-size: 11px;
	padding:2px;
	 -moz-border-radius:3px; -webkit-border-radius:3px;
}

.jqPuzzle .jqp-piece:hover {
	border-style: dashed;
}

.jqPuzzle.jqp-solved .jqp-piece:hover {
	border-style: solid;
}

/* the controls area which holds the buttons and the display */
.jqPuzzle .jqp-controls {
	float: left;
}

/* a button */
.jqPuzzle .jqp-controls a {

}

.jqPuzzle .jqp-controls a:hover {

}

/* toggle/down state for buttons */
.jqPuzzle .jqp-controls a.jqp-toggle, 
.jqPuzzle .jqp-controls a.jqp-down {

}

/* disabled state for buttons */
.jqPuzzle .jqp-controls a.jqp-disabled {

}

/* the area which holds the moves/seconds display */
.jqPuzzle .jqp-controls span {
	margin-top: 5px;
	padding: 2px 4px;
	padding-left: 0px;
	border:1px solid #ddd;
	background-color: #eee;
	color: #666666;
	font-size: 14px;
	float: left;
}


/* solved state for the display (non-shuffled puzzle) */
.jqPuzzle.jqp-solved .jqp-controls span {
    padding: 2px 4px;
    border: 1px solid #7fa500;
    background-color: #9FEF86;
    color: #0F8F08;
}


/* disabled state for the display (non-shuffled puzzle) */
.jqPuzzle .jqp-controls span.jqp-disabled {
	color: #AAAAAA;
}

/* a text field for the moves/seconds display */
.jqPuzzle .jqp-controls span input {
	margin: 0px 3px;
	padding: 3px;
	padding-bottom: 2px;
	border-style: none;
	background-color: #FFFFFF;
	color: #666666;
	font-weight: bold;
	text-align: right;
}
.yourscore {
	margin: 0px 3px;
	border-style: none;
	background-color: #C2FFAF;
	color: #444444;
	font-weight: bold;
	text-align: center;
	height:22px;
	display:none;
}

/* disabled state for the text fields */
.jqPuzzle .jqp-controls span.jqp-disabled input {
	background-color: #EEEEFF;
	color: #AAAAAA;
}

/* solved state for the text fields */
.jqPuzzle.jqp-solved .jqp-controls span input {
	background-color: #C2FFAF;
	color: #444444;
}

/*-----Image Poll Result--------*/
ToolText{position:relative; }
.ToolTextHover{position:relative;}
.ToolText span{display: none;}

.ToolTextHover span{
display:block;
position:absolute;
padding:3px;
border:2px solid #ddd;
top:0.3em;
left:0px;
top:-150px;
background-color:white; color:black;
text-align: left;
z-index:9000;
}
.imageicon{
background:url(/polls/images/image-small-icon.png) no-repeat bottom;
}
input.txtfield {
	width: 400px;
	padding:6px;
	border:2px solid #ccc;
	font-size: 12px;
	font-family:Arial;
	height:14px;
}
input.namefield {
	width: 140px;
	padding:6px;
	border:2px solid #ccc;
	font-size: 12px;
	font-family:Arial;
	height:14px;
}

.score_bar{
    margin:5px 5px 5px 7px;
    padding: 8px 8px 8px 8px;
    background:#efefef;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 1.0em;
    color:#999;
     -moz-border-radius:3px; -khtml-border-radius:3px; -webkit-border-radius:3px;
}

.score_bar div.leftsec{float:left;}

.score_bar div span.score{
    background:#f7f7f7;
    color:#777;
    padding:4px;
    font-weight: bold;
}
/* User Scored which show in basic popup */
 .uscored{
 color:#FFD100;
 font-size:30px;
 font-weight:bold;
 }
  .youwin{
 color:#000000;
 font-size:36px;
 font-weight:bold;
 }

