/**
 * API Racevine.com
 */
jQuery(function() {
	jQuery(".widgetMain").css({
		'width'					: '210px',
		'border'				: '3px solid orange',
		'-moz-border-radius'	: '7px',
		'-webkit-border-radius'	: '12px',
		'padding'				: '10px',
		'font-family'			: 'tahoma',
		'font-size'				: '11px',
		'color'					: 'black',
		'text-align'			: 'left'
	});
	
	jQuery(".widgetMain .content").css({
		'margin-left'			: "-10px",
		'display'				: 'block',
		'width'					: "230px",
		'*width'				: "250px",
		'height'				: "380px"
	});
	
	jQuery(".iframe").css({
		'border'				: "0px",
		'overflow-y'			: "auto",
		'overflow-x'			: "hidden",
		'width'					: "230px",
		'height'				: "380px"
	});
	
	jQuery(".race").css({
		'width'					: '100%',
		'background'			: 'white url(back.png) repeat-x right bottom',
		'padding-bottom'		: '5px',
		'padding-left'			: '10px',
		'margin-left'			: '-10px',
		'padding-right'			: '10px',
		'margin-right'			: '-10px',
		'border-bottom'			: '1px solid #F7F8F7'
	});
	jQuery(".race a").css({
		'text-decoration'		: 'none',
		'color'					: '#14C0FE',
		'font-size'				: '15px',
		'font-family'			: 'tahoma'
	});
	jQuery(".footer").css({
		'background'			: 'orange',
		'width'					: '100%',
		'height'				: '20px',
		'padding-top'			: '5px',
		'margin-bottom'			: '-10px',
		'padding-left'			: '10px',
		'margin-left'			: '-10px',
		'padding-right'			: '10px',
		'margin-right'			: '-10px',
		'text-align'			: 'center'
	});
	
	jQuery(".footer a").css({
		'color'					: 'white',
		'font-size'				: '14px'
	})
	
	if ($.browser.msie){
		jQuery(".footer").css({
			'width'					: '240px'
		});
		
		jQuery(".race").css({
			'width'					: '240px'
		});
		
		jQuery(".widgetMain").css({
			'padding'					: '5px',
			'padding-right'				: '0px',
			'padding-bottom'			: '10px'
		});
	}
});
