::-moz-selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

::selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

body {
    webkit-tap-highlight-color: #fff;
}

.item {
    margin: 10px;
}

.item img {
    display: block;
    width: 100%;
    height: auto;
}

.hi {
    width: 274px;
    height: 415px;
    background-image: url("../img/man.png");

    -webkit-animation: play .8s steps(2) infinite;
       -moz-animation: play .8s steps(2) infinite;
        -ms-animation: play .8s steps(2) infinite;
         -o-animation: play .8s steps(2) infinite;
            animation: play .8s steps(2) infinite;
}

@-webkit-keyframes play {
   from { background-position:    0px; }
     to { background-position: -548px; }
}

@-moz-keyframes play {
   from { background-position:    0px; }
     to { background-position: -548px; }
}

@-ms-keyframes play {
   from { background-position:    0px; }
     to { background-position: -548px; }
}

@-o-keyframes play {
   from { background-position:    0px; }
     to { background-position: -548px; }
}

@keyframes play {
   from { background-position:    0px; }
     to { background-position: -548px; }
}

/*importing Sniglet*/
@import url("http://fonts.googleapis.com/css?family=Sniglet");

/*basic reset*/
* {margin: 0; padding: 0; box-sizing: border-box;}

main {
	padding-top:10px;
	/*margin: 0 auto; */
	margin-top: 20px;
	/*background: white;*/
	background: url(../img/bg-color.png) center top repeat;
	border-radius: 3px; overflow: hidden;
}

.flp {
    padding: 20px;
    /*background: url(../images/bg-color.png) center top repeat;*/
    background-color: #f5f5f5;
}
/*Let's place the label over the input*/
.flp div {position: relative;}

.flp input, .flp label {
	display: block;
	font: inherit; font-size: 12px;
    line-height: 24px;
	/*fixed height for FF line height issue.
	height = 24(lineheight) + 10*2(padding) + 2(border)*/
	height: 46px;
}
.flp input {padding: 10px; outline: none; border-radius: 3px;}
.flp textarea {
    padding: 10px;
}
.flp label {
	position: absolute; left: 0; top: 0;
	/*left/right padding will be 2px less, adjusted by padding on .ch*/
	padding: 10px 8px;
	border-color: transparent; color: #666;
	cursor: text;
}

/*label styles*/
.ch {
	display: block; float: left;
	position: relative; /*for upward animation*/
	background: white;
}
.ch:first-child {padding-left: 2px;}
.ch:last-child {padding-right: 2px;}

/*active input label*/
.focussed {
	/*when any input is already focussed clicking on it(label) again won't do anything*/
	pointer-events: none;
}
.flp input.button {
    display: block;
    font: inherit;
    font-size: 12px;
    line-height: 24px;
    height: 36px;
}
input.button {
  margin: 0;
  border: 0;
  padding: 5px 20px;
}
.button,
input.button {
  cursor: pointer;
  color: #000000;
  font-size: 12px;
  background-color: #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  border: 2px solid rgba(0,0,0,0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.button:hover,
input.button:hover {
  background: #e64c65;
  border: 2px solid #e64c65;
  color: #FFFFFF;
}

textarea{ resize:none; }