/**/

  /*
    ##Device = Desktops
    ##Screen = 1281px to higher resolution desktops
  */

  @media (min-width: 1281px) {
    #cadreCus {
      padding:6px 0 6px 1362px;
      	font:bold 15px Arial;
      	background:#73B72B;
      	color:#000;
      	border-radius:2px;
        text-align: center;
      	border:2px solid black;
      	box-shadow:1px 1px 3px #999;
      }

  }

  /*
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */

  @media (min-width: 1025px) and (max-width: 1280px) {
    #cadreCus {
      padding:6px 0 6px 1362px;
      	font:bold 15px Arial;
      	background:#f5f5f5;
      	color:#555;
      	border-radius:2px;
        text-align: center;
      	border:2px solid #ccc;
      	box-shadow:1px 1px 3px #999;
      }

  }

  /*
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */

  @media (min-width: 768px) and (max-width: 1024px) {
    #cadreCus {
      padding:6px 0 6px 580px;
        font:bold 15px Arial;
        background:#f5f5f5;
        color:#555;
        border-radius:2px;
        text-align: center;
        border:2px solid #ccc;
        box-shadow:1px 1px 3px #999;
      }


  }

  /*
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */

  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    #cadreCus {
      padding:6px 0 6px 850px;
      	font:bold 15px Arial;
      	background:#f5f5f5;
      	color:#555;
      	border-radius:2px;
        text-align: center;
      	border:2px solid #ccc;
      	box-shadow:1px 1px 3px #999;
      }

  }
  /*
    ##Device = latops (landscape)
    ##Screen = B/w 1280px
  */

  @media (min-width: 1280px) and (max-width:1280px) and (orientation: landscape) {
    #cadreCus {
      padding:6px 0 6px 86%;
        font:bold 15px Arial;
        background:#f5f5f5;
        color:#555;
        border-radius:2px;
        text-align: center;
        border:2px solid #ccc;
        box-shadow:1px 1px 3px #999;
      }

  }


  /*
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 960px to 1024px
  */

  @media (min-width: 960px) and (max-width: 960px) and (orientation: landscape) {
    #cadreCus {
      padding:6px 0 6px 80%;
        font:bold 15px Arial;
        background:#f5f5f5;
        color:#555;
        border-radius:2px;
        text-align: center;
        border:2px solid #ccc;
        box-shadow:1px 1px 3px #999;
      }


  }

  /*
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */

  @media (min-width: 481px) and (max-width: 767px) {

    #cadreCus {
      padding:6px 0 6px 70%;
        font:bold 15px Arial;
        background:#f5f5f5;
        color:#555;
        border-radius:2px;
        text-align: center;
        border:2px solid #ccc;
        box-shadow:1px 1px 3px #999;
      }

  }

  /*
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */

  @media (min-width: 320px) and (max-width: 480px) {
    #cadreCus {
      padding:6px 0 6px 55%;
        font:bold 15px Arial;
        background:#f5f5f5;
        color:#555;
        border-radius:2px;
        text-align: center;
        border:2px solid #ccc;
        box-shadow:1px 1px 3px #999;
      }

  }
