/* Conditional-CSS syntax examples ////

http://www.conditional-css.com

[if IE] - Used if the browser is IE  
[if ! Opera] - Used if the browser is not Opera  
[if IE 5] - Used if browser is IE 5  
[if lte IE 6] - Used if the browser is IE 6 or less (IE 5, IE 4 etc)  
[if ! gt IE 6] - Same effect as the previous statement, if not greater than IE 6  

#  browser - states which browser the statement targets

    * 'IE' - Internet Explorer
    * 'Gecko' - Gecko based browsers (Firefox, Camino etc)
    * 'Webkit' - Webkit based browsers (Safari, Chrome, Shiira etc)
    * 'SafMob' - Mobile Safari (iPhone / iPod Touch)
    * 'Opera' - Opera's browser
    * 'IEMac' - Internet Explorer for the Mac
    * 'Konq' - Konqueror
    * 'IEmob' - IE mobile
    * 'PSP' - Playstation Portable
    * 'NetF' - Net Front

# version - which version of the browser in question should be considered
# condition - arithmetic operator

    * lt - Less than
    * lte - Less than or equal to
    * eq - Equal to
    * gte - Greater than or equal to
    * gt - Greater then

// Conditional-CSS box example  
div.box {  
     width: 400px;  
     [if IE 5] width: 600px;  
     padding: 0 100px;  
}

*/

.rssIcon{
	float: right;
	text-align: right;
	margin-top: -22px;  
	margin-right: 0px;
	[if IE 7] line-height: 15px;
}

.rssNews {
	background:transparent url(../images/ui/rss-icon.gif) no-repeat right center;
	padding: 6px 24px 6px 0; [if IE 7] padding: 4px 24px 4px 0;
}

input.textLarge {
	background: #FFF url('../images/ui/sprites.png') no-repeat;
	height: 15px;
	padding: 3px 0px 3px 10px;
	[if Webkit] padding: 10px 0px 3px 10px;
	background-position: 0px -176px;
	font-weight: normal;
}

span.fieldSpanBgFormLarge {
	background: #FFF url('../images/ui/sprites.png') no-repeat;
	padding: 3px 35px 3px 0px;
	[if Webkit] 	padding: 6px 35px 3px 20px;
	height: 21px;
}

input.textCaptcha {
	background: #FFF url('../images/ui/sprites.png') no-repeat;
	height: 15px;
	padding: 3px 0px 3px 5px;
	[if Webkit] padding: 3px 0px 3px 10px;
	background-position: 0px -176px;
	font-weight: normal;
}

span.fieldSpanBgFormCaptcha {
	background: #FFF url('../images/ui/sprites.png') no-repeat;
	padding: 4px 25px 3px 0px;
	[if Webkit] padding: 4px 15px 3px 5px;
	height: 21px;
}
/*span.fieldSpanBg {
	[if IE 7] background-position: 103px -205px !important;
}*/

