.float{
	position:fixed;
	width:60px;
	height:60px;
	top:0px;
	right:10px;
	background-color:#0C9;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
}

.my-float{
	margin-top:22px;
}

ol {
  counter-reset: li; 
  list-style: none; 
  padding: 0;
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
  left: 50em;
}

ol a {
  position: relative;
  display: block;
  padding: .4em .4em .4em 2em;
  margin: .5em 0;
  background: #DAD2CA;
  color: #444;
  text-decoration: none;
  border-radius: .3em;
  transition: .3s ease-out;
}


ol a:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: -1.3em;
  top: 50%;
  margin-top: -1.3em;
  background: #f9dd94;
  height: 2em;
  width: 2em;
  line-height: 2em;
  border: .3em solid #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 2em;
  
}
    
    
﻿fieldset {
    width: 500px;
    border: 2px solid green;
    margin: 0 auto;
    border-radius: 5px;
}

legend {
    color: black;
    font-size: 25px;
}

dl {
    float: right;
    width: 390px;
}

dt {
    
    padding-bottom: 5px;
    margin-bottom: 5px;
    color: black;
    font-size: 19px;
}

dd {
    width: 200px;
    float: left;
}

    dd input {
        width: 200px;
        border: 1px solid #DDD;
        font-size: 15px;
        text-indent: 5px;
        height: 28px;
    }

        dd input:hover {
            width: 200px;
            border: 1px solid green;
            font-size: 15px;
            text-indent: 5px;
            height: 28px;
        }

.btn {
    color: #fff;
    background-color: blue;
    height: 38px;
    border: 2px solid #CCC;
    border-radius: 10px;
    float: left;
}