﻿/*eBusStop styles - Main.css - over arching all pages, place first in <head> block */

/*simple reset rule*/
*{
    margin: 0;
    padding: 0;
    font-family: "Verdana", "Arial", "Helvetica", "sans-serif";
    /*font-size: 12px;*/
}

/* Text related styles 
------------------------------------------------------------------------*/
/* Normal text different sizes
--------------------------------*/

.sttxt-sml
{
    font-size: small;
    font-weight: lighter;
    margin: 0px 0px 8px 0px;  /*TRBL*/
}

.sttxt-nml
{
    margin: 0px 0px 12px 0px; 
}
.sttxt-med
{
    font-size: medium;
    font-weight: normal;
    margin: 0px 0px 16px 0px; 
}

.sttxt-lrg
{
    font-size: large;
    font-weight: bold;
    margin: 0px 0px 20px 0px; 
}

/* Hyper text different sizes
--------------------------------*/

.htxtsml, 
.htxt,
.htxtlrg,
.htxterr
{
    /*Hyper text*/
    line-height: 25px;
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

.htxtsml
{
    /*Hyper text*/
    font-size: 70%;
} 

.htxt {
    /*Hyper text*/
    font-size: 90%;
} 

.htxtlrg {
    /*Hyper text*/
    /*font-size: 80%;*/
} 

.htxterr {
    /*Hyper text*/
    font-size: 90%;
    color: red;
}  





