/* reset */
* {
  padding : 0px;
  margin : 0px;
  border-width : 0px;
  font-family: Helvetica , "ŸàƒSƒVƒbƒN", sans-serif;
  line-height: 1.7em;
  font-weight:normal;
}


.cBold {
 font-weight : bold;
}
.cSmall {
 font-size : 0.8em;
}

.cPosRightTop {
  top: 0px;
  right: 0px;
  margin:auto;
}
.cPosCenter {
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin:auto;
}
.cDisplayOff {
  display : none;
}
/* flex prop */
.cFlex {
  display : flex;
}
.cFlexNoWrap {
 flex-wrap : nowrap;
}
.cFlexWrap {
 flex-wrap : wrap;
}
.cJcCenter {
  justify-content: center;
}
.cJcSpaceBetween {
  justify-content: space-between;
}

.cAiCenter {
  align-items: center;
}
.cAiFlexend {
  align-items: flex-end;
}

.cMarginBottom {
  margin-bottom : 8px;
}