/*----- Styled sticky notes for NDM HR pages -----*/
div #sticky {
  padding:0;
  font-family:arial,sans-serif;
  font-size:100%;
  margin:1em;
  background:#ececec;
  border-radius: 10px;
}
/*body{
  font-family:arial,sans-serif;
  font-size:100%;
  margin:3em;
  background:#666;
  color:#fff;
}*/
div #sticky p{
  font-size:130%;
  font-weight:300;
  /*padding:15px;*/
  line-height:1.5em;
  text-align:center;
  margin: 0 0 10px 0;
}
div #sticky h2{
  text-align:center;
  font-weight:600;
  font-size:170%;
}
div #sticky ul,div #sticky li{
  list-style:none;
}
div #sticky ul{
  overflow:hidden;
  padding:1.1em;
}
div #sticky ul li a{
  text-decoration:none;
  color:#002147;
  background:#ffc;
  display:block;
  height:auto;
  width:9.3em;
  padding:15px;
  /* Firefox */
  -moz-box-shadow: 5px 5px 7px rgba(33,33,33,1);
  /* Safari+Chrome */
  -webkit-box-shadow: 5px 5px 7px rgba(33,33,33,.7);
  /* Opera */
  box-shadow: 5px 5px 7px rgba(33,33,33,.7);
  /*-webkit-transform:rotate(-6deg);
  -o-transform:rotate(-6deg);
  -moz-transform:rotate(-6deg);
  -moz-transition:-moz-transform .15s linear;
  -o-transition:-o-transform .15s linear;
  -webkit-transition:-webkit-transform .15s linear;*/
  margin-left: 10px;
}
div #sticky ul li a.double {
  height:auto;
  width:22em;
  margin-left:16px;
}
div #sticky ul li:nth-child(even) a{
  /*-o-transform:rotate(4deg);
  -webkit-transform:rotate(4deg);
  -moz-transform:rotate(4deg);*/
  position:relative;
  top:5px;
  position:relative;
  top:5px;
  background:#cfc;
}
div #sticky ul li:nth-child(3n) a{
  /*-o-transform:rotate(-3deg);
  -webkit-transform:rotate(-3deg);
  -moz-transform:rotate(-3deg);*/
  position:relative;
  top:-5px;
  position:relative;
  top:-5px;
  background:#ccf;
}
div #sticky ul li:nth-child(5n) a{
  /*-o-transform:rotate(5deg);
  -webkit-transform:rotate(5deg);
  -moz-transform:rotate(5deg);*/
  position:relative;
  top:-10px;
}
div #sticky ul li{
  margin:1em;
  float:left;
}
div #sticky ul li p{
  font-family:"Open Sans", sans-serif;
  font-size:120%;
}
div #sticky ul li a:hover, div #sticky ul li a:focus{
  -moz-box-shadow:7px 7px 9px rgba(0,0,0,.7);
  -webkit-box-shadow: 7px 7px 9px rgba(0,0,0,.7);
  box-shadow:7px 7px 9px rgba(0,0,0,.7);
  -webkit-transform: scale(1.10);
  -moz-transform: scale(1.10);
  -o-transform: scale(1.10);
  position:relative;
  z-index:5;
}
/*----- -----*/