﻿/*Basic font and line size*/
* {
	font-size: 100.01%;
}
 
/* Change font size to 10px (1em=10px) */
html 
{
	font-size: 62.5%; 
}

/*Vertical and horizontal scretching*/
html, body 
{
	height:100%; 
}

/*Basic colors*/
body
{
	background-color:White;
	color:Black;
}

/*Set all paddings and margins to none*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0;
	padding:0;
}

/*Basic table styles*/
table {
	border-collapse:collapse;
	border-spacing:0;
}

/*Set all border styles to none*/
fieldset { 
	border:0;
}

/*Set all font styles to none*/
address,caption,cite,code,dfn,th,var {
	font-style:normal;
	font-weight:normal;
}

/*Set all text align to left*/
caption,th {
	text-align:left;
}

/*Basic header styles*/
h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}

/*Horizontal ruler style*/
hr
{
	height:1px;
}

/*Other*/
q:before,q:after {
	content:'';
}
abbr,acronym 
{
	border:0;
}
/*Beeline corporate colors*/
/*Yellow*/
.beey
{
	color:#F0BE32;
}
/*Black*/
.beeb 
{
	color: #000;
}
/*Gray*/
.beeg 
{
	color: #D0C8BA;
}
/*Red*/
.beer 
{
	color:#B31736;
}