.northResize {
  cursor:n-resize;
}

.southResize {
  cursor:s-resize;
}

.westResize {
  cursor:w-resize;
}

.eastResize {
  cursor:e-resize;
}

.moveCursor {
    cursor:move;
}

.defaultCursor {
    cursor:default;
}


.addSonCursor {
    cursor:url(png/son.png),auto;
}

.addDaughterCursor {
    cursor:url(png/daughter.png),auto;
}

.addBrotherCursor {
    cursor:url(png/brother.png),auto;
}

.addSisterCursor {
    cursor:url(png/sister.png),auto;
}

.addTwinBrotherCursor {
    cursor:url(png/twin_brother.png),auto;
}

.addTwinSisterCursor {
    cursor:url(png/twin_sister.png),auto;
}

.addFatherCursor {
    cursor:url(png/father.png),auto;
}

.addMotherCursor {
    cursor:url(png/mother.png),auto;
}

.addSpouseCursor {
    cursor:url(png/spouse.png),auto;
}

.addMaleCursor {
    cursor:url(png/male.png),auto;
}

.addFemaleCursor {
    cursor:url(png/female.png),auto;
}

.addNuclearFamilyCursor {
    cursor:url(png/nuclear_family.png),auto;/*TODO get an icon for nuclear  */
}

.canvas-scroller {
    border: 1px solid lightgray;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    /*left: 80px;*/
/*    width: 100%;
    height: 100%;*/
}


.main_canvas {    
    position: absolute;
    top: 0px;
    left: 0px;
    outline: none;
}

.drag_canvas {
    position: absolute;
    top: 0px;
    left: 0px;
    outline: none;
}

.ped_grid {
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: none;
    background-repeat: repeat;
}

.ped_page_breaks {
    position: absolute;
    top: 0px;
    left: 0px;
    background-image: none;
    background-repeat: repeat;
}

.main_element {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: 0px;
    padding: 0px;
}

.left_side_panel {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 166px;
    margin: 0px;
    padding: 0px;
}

.right_side_panel {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

.right-side-panel-btn {
    color: #008DCE;
    font-size: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    text-align: center;
}

.right-side-panel-btn.active {
    background-color: #F3F3F3;
}

.right-side-panel-btn.disabled {
    color: grey;
}

.ios-toggle input {
  max-height: 0;
  max-width: 0;
  opacity: 0;
  display: none;
}

.ios-toggle input + label {
  display: block;
  position: relative;
  box-shadow: inset 0 0 0px 1px #d5d5d5;
  text-indent: -5000px;
  height: 30px;
  width: 50px;
  border-radius: 15px;
}

.ios-toggle input + label:before {
  content: "";
  position: absolute;
  display: block;
  height: 30px;
  width: 30px;
  top: 0;
  left: 0;
  border-radius: 15px;
  background: rgba(0, 141, 206, 0);
  -moz-transition: .25s ease-in-out;
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.ios-toggle input + label:after {
  content: "";
  position: absolute;
  display: block;
  height: 30px;
  width: 30px;
  top: 0;
  left: 0px;
  border-radius: 15px;
  background: white;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2), 0 2px 4px rgba(0, 0, 0, .2);
  -moz-transition: .25s ease-in-out;
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.ios-toggle input:checked + label:before {
  width: 50px;
  background: rgba(0, 141, 206, 1);
}

.ios-toggle input:checked + label:after {
  left: 20px;
  box-shadow: inset 0 0 0 1px rgba(0, 141, 206, 1), 0 2px 4px rgba(0, 0, 0, .2);
}

.ios-toggle-panel {
    
}

.ios-toggle-panel .gwt-ToggleButton:first-child {
    border-radius: 10px 0 0 10px;
    
}

.ios-toggle-panel .gwt-ToggleButton:last-child {
    border-radius: 0 10px 10px 0;
}

.ios-toggle-panel .gwt-ToggleButton {
    padding: 5px 8px;
    margin: -1px;
    color: #008DCE;
    background-color: inherit;
    border-color: #008DCE;
    border-width: 2px;
    display: inline-block;
    font-size: 14px;
}

.ios-toggle-panel .gwt-ToggleButton.gwt-ToggleButton-down {
    color: white;
    background-color: #008DCE;
}

.ios-toggle-panel .gwt-ToggleButton.gwt-ToggleButton-down-disabled {
    color: grey;
    border: 2px solid grey;
}

.ios-toggle-panel .gwt-ToggleButton.gwt-ToggleButton-up-disabled {
    color: grey;
    border: 2px solid grey;
}