@charset "UTF-8";
/* CSS Document */ 

img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}
body { font-family:Arial, Helvetica, sans-serif; background-color:#333; font-size:18px; }
body, h1, h2, h3, h4 { margin:0; padding:0; }
img { width:100%; }

.txt10 { font-size:10px; }
.txt12 { font-size:12px; }
.txt14 { font-size:14px; }
.txt16 { font-size:16px; }
.txt18 { font-size:18px; }
.txt20 { font-size:20px; }
.txtLeft, .textLeft { text-align:left; }
.txtRight { text-align:right; }
.txtCenter, .centerText { text-align:center; }
.wht { color: #FFF; }
.caps { text-transform:capitalize; }
.padTB10 { padding: 10px 0; }
.padTB20 { padding: 20px 0; }
a.noDeco, a.noDeco:visited { text-decoration:none; color:#00F; }

#mainPage { min-height: 1024px; padding: 10px 30px; background-color: #FFF; }
#mWelcome { min-height: 1024px; padding: 0; background-color: #FFF; }

img.turn2grayIMG {
  filter: none;
  cursor: grab;
  cursor: -webkit-grab;
  -webkit-filter: grayscale(0%);
}
img.turn2grayIMG:hover, img.makeIMGgray {
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
  filter: gray; /* IE6-9 */
  -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
}


.rounded_corners {
	border-radius: 20px 20px 20px 20px; 
	-moz-border-radius: 20px 20px 20px 20px; 
	-webkit-border-radius: 20px 20px 20px 20px; 
	-khtml-border-radius: 20px 20px 20px 20px;
}
.rounded_corners5 {
	border-radius: 5px 5px 5px 5px; 
	-moz-border-radius: 5px 5px 5px 5px; 
	-webkit-border-radius: 5px 5px 5px 5px; 
	-khtml-border-radius: 5px 5px 5px 5px;
}
.rounded_corners10 {
	border-radius: 10px 10px 10px 10px; 
	-moz-border-radius: 10px 10px 10px 10px; 
	-webkit-border-radius: 10px 10px 10px 10px; 
	-khtml-border-radius: 10px 10px 10px 10px;
}
.button, .button:visited { background-color: #C0C; }
.buttonDP, .buttonDP:visited { background-color: #5f235f; }
.buttonGreen, .buttonGreen:visited { background-color: #090; }

.buttonGreen, .buttonGreen:visited,
.buttonDP, .buttonDP:visited,
.button, .button:visited {
    color: #FFF;
    border: none;
    padding: 25px 60px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
}

.button:hover { background-color: #09F; color: #FFF; }
.buttonGreen:hover,
.buttonDP:hover { background-color: #555; color: #FFF; }
label {
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}


/* Reset Select */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  border: 0 !important;
  background: #3e013e;
  background-image: none;
    font-size: 24px;
}
/* Remove IE arrow */
select::-ms-expand {
  display: none;
}
/* Custom Select */
.select {
  position: relative;
  display: flex;
  width: 100%;
  height: 3em;
  line-height: 3;
  background: #3e013e;
  overflow: hidden;
  border-radius: .25em;
}
select {
  flex: 1;
  padding: 0 .5em;
  color: #fff;
  cursor: pointer;
}
/* Arrow */
.select::after {
  content: '\25BC';
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1em;
  background: #C0C;
  cursor: pointer;
  pointer-events: none;
  -webkit-transition: .25s all ease;
  -o-transition: .25s all ease;
  transition: .25s all ease;
}
/* Transition */
.select:hover::after {
  color: #FFF;
}