/*
Original Custom checkbox and radio buttons by http://www.thecssninja.com
*/


p > input
{
	opacity: 0;
}
p > label { line-height: 16px; color: #fff; -moz-transition: color 1s ease; -o-transition: color 1s ease; -webkit-transition: color 1s ease; transition: color 1s ease; }
p:not(#foo) > input:hover + label, p:not(#foo) > input:focus + label		{ text-shadow: 1px 1px 3px #000; color: #2C7AD0; }

p:not(#foo) > input + label:before
{

	background: url(http://beta.pgn.ro/~test/phpBB3/styles/pvptwo/theme/images/gr_custom-inputs.png) 0 -1px no-repeat;
	position: absolute;
	z-index: 2;

	content: "\00a0\00a0\00a0"; /* 3x &nbsp; */
	overflow: hidden;
	width: 16px;
	height: 16px;
	margin: 0 3px 0 -16px;
	pointer-events: none; /* Allows this to work in Safari iPhone */

}
p:not(#foo) > input[type=radio] + label:before 							{ background-position: -32px -1px; }

/* Checked styles */
p:not(#foo) > input[type=radio]:checked + label:before 					{ background-position: -32px -73px; }
p:not(#foo) > input[type=checkbox]:checked + label:before 				{ background-position: 0 -73px; }
p:not(#foo) > input[type=checkbox]:hover:checked + label:before,
p:not(#foo) > input[type=checkbox]:focus:checked + label:before 			{ background-position: 0 -91px; }
p:not(#foo) > input[type=radio]:hover:checked + label:before,
p:not(#foo) > input[type=radio]:focus:checked + label:before 				{ background-position: -32px -91px; }

/* Hover & Focus styles */
p:not(#foo) > input[type=checkbox]:hover + label:before,
p:not(#foo) > input[type=checkbox]:focus + label:before 					{ background-position: 0 -19px; }
p:not(#foo) > input[type=radio]:hover + label:before,
p:not(#foo) > input[type=radio]:focus + label:before 						{ background-position: -32px -19px; }

/* Active styles */
p:not(#foo) > input[type=checkbox]:active + label:before					{ background-position: 0 -37px; }
p:not(#foo) > input[type=radio]:active + label:before 					{ background-position: -32px -37px; }
p:not(#foo) > input[type=checkbox]:active:checked + label:before			{ background-position: 0 -109px; }
p:not(#foo) > input[type=radio]:active:checked + label:before 			{ background-position: -32px -109px; }

/* Disabled styles */
p:not(#foo) > input[type=checkbox]:disabled + label:before 				{ background-position: 0 -55px; }
p:not(#foo) > input[type=radio]:disabled + label:before 					{ background-position: -32px -55px; }
p:not(#foo) > input[type=checkbox]:disabled:checked + label:before 		{ background-position: 0 -127px; }
p:not(#foo) > input[type=radio]:disabled:checked + label:before 			{ background-position: -32px -127px; }
p:not(#foo) > input[type=checkbox]:hover:disabled + label:before,
p:not(#foo) > input[type=checkbox]:focus:disabled + label:before 			{ background-position: 0 -55px; }
p:not(#foo) > input[type=radio]:hover:disabled + label:before,
p:not(#foo) > input[type=radio]:focus:disabled + label:before 			{ background-position: -32px -55px; }
p:not(#foo) > input[type=checkbox]:hover:disabled:checked + label:before,
p:not(#foo) > input[type=checkbox]:focus:disabled:checked + label:before 	{ background-position: 0 -127px; }
p:not(#foo) > input[type=radio]:hover:disabled:checked + label:before,
p:not(#foo) > input[type=radio]:focus:disabled:checked + label:before 	{ background-position: -32px -127px; }

.noclass {}

a.alt:link {text-decoration: blink;}
div.al a {text-decoration: blink;}