.row{
   padding-bottom: 10px;
}

/*CURSOR*/
.cursor-pointer{
   cursor: pointer;
}

.logo-lg, .logo-mini, .login-logo a{
   font-family: "Times New Roman", Times, serif;
}

/*RADIUS*/
.radius-center{
   border-radius: 0px;
}

.radius-left{
   border-radius: 5px 0px 0px 5px;
}

.radius-right{
   border-radius: 0px 5px 5px 0px;
}

/*BOX*/
.box-left{
	border-radius: 5px 0px 0px 5px;
}
.box-right{
	border-radius: 0px 5px 5px 0px;
}

/* HR STYLE */
hr.style17 {
   border-top: 1px solid #8c8b8b;
   text-align: center;
}
hr.style17:after {
   content: '§';
   display: inline-block;
   position: relative;
   top: -14px;
   padding: 0 10px;
   background: #FFFFFF;
   color: #8c8b8b;
   font-size: 18px;
   -webkit-transform: rotate(60deg);
   -moz-transform: rotate(60deg);
   transform: rotate(60deg);
}

/* BUTTON */

/* FORM CONTROL */
.form-control-line{
   border-style: none;
   border-bottom-style: solid;
   border-bottom-width: 1px;
   border-bottom-color: #E3E3E3;
   -webkit-transition: border-bottom-color 1s;
    -moz-transition:    border-bottom-color 1s;
    -ms-transition:     border-bottom-color 1s;
    -o-transition:      border-bottom-color 1s;
    transition:         border-bottom-color 1s;
}
.form-control-line:focus{
   border-style: none;
   border-bottom-style: solid;
   border-bottom-width: 1px;
   border-bottom-color: #0DC143;
}