@charset "utf-8";
/* CSS Document */


*,*:focus,*:hover{
  outline:none;
}

input[type=text].input-text:hover,
input[type=text].input-text:focus,
input[type=tel].input-text:hover,
input[type=tel].input-text:focus,
input[type=password].input-text:hover,
input[type=password].input-text:focus,
input[type=text]:focus,
input[type=tel]:hover,
input[type=text]:focus,
input[type=tel]:hover

{
  border: 1px solid orange;
  outline: 1px solid orange;
}

input[type=text],
input[type=tel] {
  border:1px solid #dddddd;
  border-radius: 1px;
  padding-left:5px;
  padding-top:2px;
  padding-right:5px;
  padding-bottom:2px
}
/*
  4 Parameter
  top   right   bottom   left

  3 Parameter
  top   right+left   bottom

  2 Parameter
  top+bottom   right+left
*/



textarea {
  border:1px solid #cccccc;border-radius:1px;
  padding-left:5px;
  padding-top:2px;
  padding-bottom:2px;
  padding-right:5px;

}

textarea:focus {
  border:1px solid orange;
  outline:1px solid orange;

}







.border-radius,
button {
  border-radius:2px;
}








button i {
  color:orange;
}
a i.icon-color {
  color:orange;
}







a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}



.alink-normal:link {
  text-decoration: none;
}

.alink-normal:hover {
  color:#187bcd;
}

.font-tahoma {
  font-family: Tahoma, 'Segoe UI', Geneva, Verdana, sans-serif!important;
}


.text-gray {
  color:#aaaaaa!important;
}