@charset "utf-8";
@import url("vasco_base.css");

/*****************************************************************************************************
 
 This is master css, that resets the most of the attributes and also containing a few usuable classes

 To change the base structure and font settings etc use _base.css = sitename_css.css
 To change the Flex structure use _fce.css = sitename_layout.css
 To change the menu use _menu.css = sitename_menu.css 


TIPS!!! : To fix IE6 margins use display inline, to get rid of the margin bug

********************************************************************************************************/


/* Reset code */
*
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: 0;
    font-family: Arial, Verdana, Helvetica, sans-serif;
}
/* This is to show the scrollbar all the time, so it doesn't jump in Fireforx' */
html
{
	overflow-y: scroll;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

/* Reset <a> tag */
a, a:link, a:visited, a:hover 
{
	text-decoration: none;
	color: #6490cb;
    padding: 0;
    margin: 0;
}

 

/* Classes that are good to have</span> */
 
.clear         { clear:both; }
.float-left    { float:left; }
.float-right   { float:right; }
 
.text-left     { text-align:left; }
.text-right    { text-align:right; }
.text-center   { text-align:center; }
.text-justify  { text-align:justify; }
 
.bold          { font-weight:bold; }
.italic        { font-style:italic; }
.underline     { border-bottom:1px solid; }
.highlight     { background:#ffc; }
 
.wrap          { width:900px;margin:0 auto; }
 
.img-left      { float:left;margin:4px 10px 4px 0; }
.img-right     { float:right;margin:4px 0 4px 10px; }
 
.nopadding     { padding:0; }
.noindent      { margin-left:0;padding-left:0; }
.nobullet      { list-style:none;list-style-image:none; }
.text-underline{ text-decoration: underline;}

