/* 
    Document   : Vote
    Created on : Sep 20, 2021, 12:38:14 PM
    Author     : Hawkeye
    Description:
        Purpose of the stylesheet follows.
*/


/**********************************************/
/* Register to Vote graphic                   */
/**********************************************/

.Register {
  border: 2px solid #003366;
  border-radius: 20px;
  margin: 20px 0 0 0;
  -webkit-box-shadow: 0 0 10px 5px rgba(51,51,51,.4);
  box-shadow: 0 0 10px 5px rgba(51,51,51,.4);
  }
.Register h1 {
  background: #003366;
  font-size: 1.45em;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-top-right-radius: 18px;
  }

.RegisterGraphic {
  float: left;
  width: 33.7643678160919%; /* 235px / 696px */
  }
.RegisterGraphic img {
  display: block;
  margin: 0 auto;
  border: 0;
  }

.RegisterLinks {
  float: right;
  background: #dddddd;
  width: 64.6551724137931%; /* 450px / 696px */
  padding: 0 0 1px 0;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  }
.RegisterLinks ul {
  margin: 10px 0 0 0;
  }
.RegisterLinks li {
  margin: 0 20px 10px 20px;
  text-align: center;
  }
.RegisterLinks a {
  display: block;
  background: #cc0000;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 20px;;
  border-radius: 10px;
  }
.RegisterLinks a:hover {
  background: #0085ca;
  }


@media screen and (max-width: 850px) {
.RegisterGraphic {
  float: none;
  width: 100%;
  }
.RegisterLinks {
  float: none;
  width: 100%;
  padding: 10px 0 0 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 18px;
  }
}

