/**
 * filename : typo.css
 * description : This file contain all CSS related to typography.
                 The goal with this page is to change quickly the font-family 
                 of all elements of the page by grouping all element here.
                 
                 If the browser doesn't support fontface, we need to fallback on Arial. 
                 Modernizr is used to determine if fontface is supported. If the browser can't deal with fontface, modernizr 
                 add a no-fontface class to the html tag and we add a css selector to downsize the font-size
                 
 * Font-face declaration generated by Font Squirrel (http://www.fontsquirrel.com) on %March %10, %2010
 
 */
/*
@font-face {
    font-family: 'OsloBlack';
    src: url('/_static/fonts/Oslo-Black-webfont.eot');
    src: local('☺'), url('/_static/fonts/Oslo-Black-webfont.woff') format('woff'), url('/_static/fonts/Oslo-Black-webfont.ttf') format('truetype'), url('/_static/fonts/Oslo-Black-webfont.svg#webfont') format('svg');
}
*/

body, td, th, textarea, input, select, h2, h3, h4, h5, h6 {
    font: 100.01%/1.4 arial, sans-serif;
}

h1, h2, h3, h4, h5, h6, .fontfaceOslo, .button, .ui-button, .btn{
	font-family: Arial, Helvetica, sans-serif;/*"Lucida Grande",*/
	/*text-transform:uppercase;*/
	font-weight: bold;
	letter-spacing: 0;
}
.fontfaceNormal{
	font-family: arial, sans-serif;
	text-transform:none;
}



