/*** Reset all ***/
* {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	
	font-weight: inherit;
	font-size: 1.0em;
	text-decoration: none;
	
	line-height: 1.333333333em;
	letter-spacing: 0.0em;
	list-style-type: none;

    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
html, body 
{
	cursor: default;
}

html input, html textarea 
{
    -webkit-touch-callout: default;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    -o-user-select: text;
    user-select: text;
}
/*** Font ***/
/* Icons */
@font-face {
    font-family: 'IconsEntypo';
    src: url('Font/entypo-webfont.woff') format('woff'),
         url('Font/entypo-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Code128';
    src: url('Font/code128.woff') format('woff'),
         url('Font/code128.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Rest */
@font-face {
    font-family: 'Roboto-300';
    src: url('Font/roboto-300-webfont.woff') format('woff'),
         url('Font/roboto-300-webfont.ttf') format('truetype');
    font-style: normal;

}
@font-face {
    font-family: 'Roboto-400';
    src: url('Font/roboto-400-webfont.woff') format('woff'),
         url('Font/roboto-400-webfont.ttf') format('truetype');
    font-style: normal;

}
@font-face {
    font-family: 'Roboto-500';
    src: url('Font/roboto-500-webfont.woff') format('woff'),
         url('Font/roboto-500-webfont.ttf') format('truetype');
    font-style: normal;

}
@font-face {
    font-family: 'Roboto-700';
    src: url('Font/roboto-700-webfont.woff') format('woff'),
         url('Font/roboto-700-webfont.ttf') format('truetype');
    font-style: normal;
}

/* Scrollbar */
::-webkit-scrollbar {
	width: 12px;
}
::-webkit-scrollbar-button {
    height:0;
    width:0;
}
/*::-webkit-scrollbar-track {
    box-shadow:inset 2px 0px 3px rgba(0,0,0,.25);
}*/

::-webkit-scrollbar-thumb {
    background-color:#999;
}

::-webkit-scrollbar-thumb:hover {
    background-color:#777;
}
::-webkit-scrollbar-thumb:active {
    background-color:#555;
}