@charset "utf-8";
/* CSS Document */


.stroke_pink {
    background-color:#none;
    border:3px solid #e32991; 
    height:160px;
    border-radius:50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    width:160px;
}
/*comment out to take the glow off*/
.stroke_pink:hover{
   -webkit-box-shadow: 0px 0px 5px 3px #e32991;     
}

.stroke_blue {
    background-color:#none;
    border:3px solid #2f3489;    
    height:160px;
    border-radius:50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    width:160px;
}
/*comment out to take the glow off*/
.stroke_blue:hover{
   -webkit-box-shadow: 0px 0px 5px 3px #2f3489;
}

.stroke_green{
    background-color:#none;
    border:3px solid #d4dc36;    
    height:160px;
    border-radius:50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    width:160px;
}

/*comment out to take the glow off*/
.stroke_green:hover{
   -webkit-box-shadow: 0px 0px 5px 3px #d4dc36;     
}

.stroke_orange {
    background-color:#none;
    border:3px solid #fabd2e;    
    height:160px;
    border-radius:50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    width:160px;
}
/*comment out to take the glow off*/
.stroke_orange:hover{
   -webkit-box-shadow: 0px 0px 5px 3px #fabd2e;     
}
</style>


/*
<div class="stroke_pink"></div>
<br />
<div class="stroke_blue"></div>
<br />
<div class="stroke_green"></div>
<br />
<div class="stroke_orange"></div> */

