:root {
  --grey: #bdbdc7;
  --light-grey: rgba(255, 255, 255, .5);
  --very-light-grey: rgba(255,255,255, .35);
  --dark-grey: #444;
  --almost-black: rgba(0,0,0, .55);
  --light-blue: #08c;
  --light-green: rgba(0,246,255,.5);
  --dark-blue: #0a5378;
  --red: #FF595E;
  --green: #8AC926;
  --orange: #FFCA3A;
  --blue: #1982C4;
  --purple: #6A4C93;
}

body {
  font-size: 16px;
  background: var(--grey);
  margin: 0 0;
  padding: 1em;
  font-family: 'Myriad Pro','Helvetica Neue', Helvetica;
}

.title {
  position: relative;
	font-family: 'Myriad Pro','Helvetica Neue', Helvetica;
  font-weight:bold;
  font-size: 1.5em;
  text-shadow: 0 0.05em 0.1em var(--light-grey);
  color: var(--grey);
  text-align: center;
}

.form {
  background: none;
  margin: 1.5em auto 0;
  padding: 1em;
  width: 20em;
}

    .divTable
    {
        display:  table;
        width:auto;
		text-align: left;
        background-color:#eee;
        border:1px solid  #666666;
        border-spacing:5px;/*cellspacing:poor IE support for  this*/
       /* border-collapse:separate;*/
    }
	.headRow
	{
		font-weight: bold;
	}
    .divRow
    {
       display:table-row;
       width:auto;
    }

    .divCell
    {
        float:left;/*fix for  buggy browsers*/
        display:table-column;
        width:150px;
        background-color:#eee;
    }
	
