//Very rough browser test
var bAgent = navigator.userAgent;
var bPlatform = navigator.platform;
var thisStyleSheet = "other";
if( bPlatform.indexOf('Mac') >= 0){
	if( bAgent.indexOf("MSIE") >= 0 ){
		thisStyleSheet = "mac_ie";
	} 
}
/*
The call to this script happens in the HTML after the call to the sheraton_new.css file
   therefore, any style written here will overwrite the style written in sheraton_new.css
*/
document.writeln('<!-- start Set styles overwritten by setStyle.js -->');
document.writeln('<style>');
//Mac IE
if(thisStyleSheet=="mac_ie"){
	document.writeln('li { margin-left:-15px; }');
} 
//ALL
document.writeln('A:hover.link-topnav {color: #0070DF; text-decoration: none; font-weight : normal; font-family: Arial, Helvetica, sans-serif; font-size:11px; line-height:15px; text-transform : lowercase; }'); 
document.writeln('A:hover.link-nav {color: #0070DF;	text-decoration: none;	font-weight : normal;	font-family: Arial, Helvetica, sans-serif;	font-size:11px;	line-height:15px;	text-transform : uppercase;	padding-left : 7px;	padding-right : 7px;}'); 
document.writeln('A:hover.link-subnav {color: #0070DF; font-family: Arial, Helvetica, sans-serif; text-decoration: none; font-weight : normal; font-size:11px; padding-left : 15px; }'); 
document.writeln('A:hover.link-copy {color: #0070DF; font-family: Arial, Helvetica, sans-serif; font-weight : normal; font-size:11px; text-decoration: underline; }'); 
document.writeln('A:hover.link-footer {color: #0070DF; font-family: Arial, Helvetica, sans-serif; text-decoration: none; font-weight : normal; font-size:9px; }'); 
document.writeln('');
document.writeln('</style>');
document.writeln('<!-- end Set styles overwritten by setStyle.js -->');
