@charset "UTF-8";
/*===============================================
 パワーチップ　オーバーライド
===============================================*/

#powerTip {
  background-color: #FFF;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 0px;
  border: 2px solid #111;
  color: #111;
  padding: 3px 10px;

	word-break: break-all;
	white-space: normal;

  /* box-shadow */
  -webkit-box-shadow:rgb(217, 217, 217) 0px 3px 0px 0px;
  -moz-box-shadow:rgb(217, 217, 217) 0px 3px 0px 0px;
  box-shadow:rgb(217, 217, 217) 0px 3px 0px 0px;
  }
  #powerTip:before {
    content: "";
    position: absolute;
    z-index: 1;
    }
    #powerTip.n:before {
      border-top: 10px solid #111;
      border-right: 10px solid transparent;
      border-left: 10px solid transparent;
      bottom: -10px;
      left: 50%;
      margin-left: -10px;
      }
      #powerTip:after {
        content: "";
        position: absolute;
        z-index: 2;
        }
        #powerTip.n:after {
          border-top: 10px solid #FFF;
          border-right: 10px solid transparent;
          border-left: 10px solid transparent;
          bottom: -7px;
          left: 50%;
          margin-left: -10px;
         }