
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_181fe08e4df7.woff")format("woff");}.ff1{font-family:ff1;line-height:0.976000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_b3836cc19cc5.woff")format("woff");}.ff2{font-family:ff2;line-height:0.929000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_200acf05e2a1.woff")format("woff");}.ff3{font-family:ff3;line-height:1.237029;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_76791a532f1a.woff")format("woff");}.ff4{font-family:ff4;line-height:0.889000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_ab738c5ad72a.woff")format("woff");}.ff5{font-family:ff5;line-height:1.735000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_438b61737de8.woff")format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_ce7575a02fa8.woff")format("woff");}.ff7{font-family:ff7;line-height:0.513000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_64bc3f3a6216.woff")format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_e8bd8b07a450.woff")format("woff");}.ff9{font-family:ff9;line-height:1.820000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_a82d91fb745d.woff")format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_bfa8d362047a.woff")format("woff");}.ffb{font-family:ffb;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_3580e75e30f9.woff")format("woff");}.ffc{font-family:ffc;line-height:1.237029;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_d4d60f3af371.woff")format("woff");}.ffd{font-family:ffd;line-height:1.735000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_ba3bb88284da.woff")format("woff");}.ffe{font-family:ffe;line-height:1.201660;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_fde63e2c641f.woff")format("woff");}.fff{font-family:fff;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_605d07cc26f6.woff")format("woff");}.ff10{font-family:ff10;line-height:1.237029;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_a2b069bd0343.woff")format("woff");}.ff11{font-family:ff11;line-height:1.735000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_a639875dfc78.woff")format("woff");}.ff12{font-family:ff12;line-height:1.237029;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_a2b069bd0343.woff")format("woff");}.ff13{font-family:ff13;line-height:1.735000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_35e666ed51fe.woff")format("woff");}.ff14{font-family:ff14;line-height:1.237029;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_eb0a279a7300.woff")format("woff");}.ff15{font-family:ff15;line-height:1.735000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_f0a10a2f9fdc.woff")format("woff");}.ff16{font-family:ff16;line-height:1.735000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_f04d64930d27.woff")format("woff");}.ff17{font-family:ff17;line-height:1.237029;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_eb0a279a7300.woff")format("woff");}.ff18{font-family:ff18;line-height:1.735000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url("fonts/font_0024_7cf66ece0fad.woff")format("woff");}.ff19{font-family:ff19;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url("fonts/font_0025_524b91637459.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.701000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.ve{vertical-align:-24.036677px;}
.v3{vertical-align:-21.696000px;}
.vd{vertical-align:-20.030345px;}
.v12{vertical-align:-13.527883px;}
.vb{vertical-align:-11.514477px;}
.v6{vertical-align:-9.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.002000px;}
.v5{vertical-align:9.294000px;}
.v10{vertical-align:17.333115px;}
.vf{vertical-align:18.488682px;}
.vc{vertical-align:20.029694px;}
.v4{vertical-align:21.696000px;}
.v13{vertical-align:23.195415px;}
.v7{vertical-align:24.684000px;}
.v1{vertical-align:26.034000px;}
.v9{vertical-align:33.474000px;}
.v8{vertical-align:42.438000px;}
.v11{vertical-align:49.273293px;}
.va{vertical-align:51.882000px;}
.ls26{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000017px;}
.ls1d{letter-spacing:0.004200px;}
.ls10{letter-spacing:0.005108px;}
.ls3b{letter-spacing:0.012751px;}
.ls2b{letter-spacing:0.023975px;}
.ls33{letter-spacing:0.027792px;}
.ls2c{letter-spacing:0.030109px;}
.ls35{letter-spacing:0.033389px;}
.ls2e{letter-spacing:0.036171px;}
.ls29{letter-spacing:0.037783px;}
.ls3e{letter-spacing:0.043081px;}
.ls3f{letter-spacing:0.054865px;}
.ls38{letter-spacing:0.065581px;}
.ls2a{letter-spacing:0.113347px;}
.ls36{letter-spacing:1.634622px;}
.ls2f{letter-spacing:1.770866px;}
.ls7{letter-spacing:2.951475px;}
.ls2{letter-spacing:2.986193px;}
.ls0{letter-spacing:2.986800px;}
.ls3{letter-spacing:2.987100px;}
.ls1f{letter-spacing:2.989196px;}
.ls22{letter-spacing:2.992193px;}
.ls1{letter-spacing:2.992800px;}
.ls5{letter-spacing:2.993100px;}
.lsc{letter-spacing:4.958512px;}
.ls8{letter-spacing:4.964512px;}
.ls9{letter-spacing:6.590338px;}
.ls11{letter-spacing:8.247269px;}
.lsd{letter-spacing:8.249033px;}
.lsf{letter-spacing:8.250538px;}
.lsb{letter-spacing:8.252338px;}
.ls18{letter-spacing:8.256538px;}
.ls21{letter-spacing:8.258338px;}
.lse{letter-spacing:8.302200px;}
.lsa{letter-spacing:8.303108px;}
.ls14{letter-spacing:8.628538px;}
.ls13{letter-spacing:8.680200px;}
.ls3a{letter-spacing:10.769850px;}
.ls17{letter-spacing:11.287196px;}
.ls20{letter-spacing:11.291100px;}
.ls32{letter-spacing:12.466711px;}
.ls25{letter-spacing:13.188538px;}
.ls1b{letter-spacing:13.236538px;}
.ls24{letter-spacing:16.225196px;}
.ls16{letter-spacing:16.267196px;}
.ls1c{letter-spacing:16.270193px;}
.ls1a{letter-spacing:16.273196px;}
.ls15{letter-spacing:17.933100px;}
.ls39{letter-spacing:20.183110px;}
.ls6{letter-spacing:29.531100px;}
.ls23{letter-spacing:69.935100px;}
.ls3c{letter-spacing:101.834036px;}
.ls34{letter-spacing:152.847554px;}
.ls37{letter-spacing:223.649594px;}
.ls1e{letter-spacing:321.887100px;}
.ls3d{letter-spacing:333.801327px;}
.ls31{letter-spacing:392.411670px;}
.ls2d{letter-spacing:411.974152px;}
.ls30{letter-spacing:415.228823px;}
.ls27{letter-spacing:460.223100px;}
.ls28{letter-spacing:460.229100px;}
.ls19{letter-spacing:706.564193px;}
.ls12{letter-spacing:1399.287269px;}
.ls40{letter-spacing:1404.741229px;}
.ls41{letter-spacing:1411.599284px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3a{word-spacing:-238.938504px;}
.ws2a{word-spacing:-55.194537px;}
.ws2e{word-spacing:-53.914788px;}
.ws18{word-spacing:-51.996094px;}
.ws2c{word-spacing:-48.483033px;}
.ws2d{word-spacing:-46.363175px;}
.ws2b{word-spacing:-38.636037px;}
.ws3b{word-spacing:-18.346689px;}
.ws24{word-spacing:-15.288910px;}
.ws10{word-spacing:-14.943900px;}
.ws36{word-spacing:-14.112636px;}
.ws2{word-spacing:-13.449600px;}
.ws3e{word-spacing:-13.377796px;}
.ws38{word-spacing:-13.230596px;}
.ws34{word-spacing:-12.422239px;}
.wse{word-spacing:-11.058450px;}
.ws11{word-spacing:-8.308808px;}
.wsa{word-spacing:-3.347000px;}
.ws3d{word-spacing:-2.501851px;}
.wsc{word-spacing:-0.836858px;}
.ws16{word-spacing:-0.358654px;}
.ws3{word-spacing:-0.071731px;}
.wsd{word-spacing:-0.059776px;}
.ws9{word-spacing:-0.044234px;}
.ws1f{word-spacing:-0.037422px;}
.ws1e{word-spacing:-0.028786px;}
.ws14{word-spacing:-0.002666px;}
.ws8{word-spacing:-0.001399px;}
.ws30{word-spacing:-0.001200px;}
.ws7{word-spacing:0.000000px;}
.ws39{word-spacing:0.044137px;}
.ws32{word-spacing:0.044366px;}
.ws26{word-spacing:0.054662px;}
.ws17{word-spacing:0.059776px;}
.ws37{word-spacing:0.060511px;}
.ws25{word-spacing:0.065555px;}
.ws3c{word-spacing:0.078700px;}
.ws3f{word-spacing:0.119551px;}
.ws33{word-spacing:0.178074px;}
.ws13{word-spacing:0.179327px;}
.ws35{word-spacing:0.222820px;}
.ws23{word-spacing:0.239102px;}
.ws22{word-spacing:0.298878px;}
.ws12{word-spacing:0.717307px;}
.ws6{word-spacing:1.793268px;}
.ws29{word-spacing:3.586536px;}
.ws27{word-spacing:3.646312px;}
.ws2f{word-spacing:3.825638px;}
.ws31{word-spacing:6.868795px;}
.ws28{word-spacing:6.874795px;}
.wsf{word-spacing:13.150632px;}
.ws15{word-spacing:14.884124px;}
.ws19{word-spacing:16.498066px;}
.ws4{word-spacing:16.557841px;}
.ws1{word-spacing:19.869542px;}
.ws40{word-spacing:29.826524px;}
.ws5{word-spacing:29.828024px;}
.ws0{word-spacing:33.115849px;}
.wsb{word-spacing:337.552813px;}
.ws1d{word-spacing:403.170044px;}
.ws1a{word-spacing:652.809328px;}
.ws1c{word-spacing:667.753228px;}
.ws1b{word-spacing:697.641028px;}
.ws21{word-spacing:831.508130px;}
.ws20{word-spacing:847.112840px;}
._17{margin-left:-972.919201px;}
._1a{margin-left:-223.649594px;}
._19{margin-left:-11.139160px;}
._18{margin-left:-9.537977px;}
._9{margin-left:-8.069706px;}
._2{margin-left:-5.738496px;}
._5{margin-left:-4.303872px;}
._0{margin-left:-2.391036px;}
._1{margin-left:-1.195518px;}
._b{width:1.195548px;}
._3{width:2.501743px;}
._4{width:3.934447px;}
._8{width:6.354256px;}
._7{width:7.559483px;}
._6{width:8.936815px;}
._10{width:15.271770px;}
._d{width:18.530436px;}
._a{width:20.861684px;}
._e{width:29.887800px;}
._c{width:35.865600px;}
._f{width:71.724454px;}
._15{width:97.374452px;}
._13{width:351.606346px;}
._11{width:489.024184px;}
._14{width:562.548172px;}
._12{width:582.453446px;}
._16{width:2104.808923px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(84,84,84);}
.fc5{color:rgb(119,119,119);}
.fc4{color:rgb(85,85,85);}
.fc3{color:rgb(85,85,85);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:28.786197px;}
.fs6{font-size:28.786200px;}
.fs18{font-size:33.434574px;}
.fs1c{font-size:33.806557px;}
.fs1f{font-size:34.496638px;}
.fs14{font-size:35.663546px;}
.fs9{font-size:37.422057px;}
.fsf{font-size:38.636037px;}
.fsb{font-size:38.636066px;}
.fs1d{font-size:41.395965px;}
.fs16{font-size:42.796206px;}
.fs3{font-size:44.233800px;}
.fs19{font-size:44.579626px;}
.fs12{font-size:44.845629px;}
.fs11{font-size:46.363175px;}
.fsd{font-size:46.363226px;}
.fs17{font-size:47.763885px;}
.fs1b{font-size:48.295293px;}
.fs13{font-size:50.948144px;}
.fs2{font-size:53.798400px;}
.fse{font-size:55.194537px;}
.fsa{font-size:55.194620px;}
.fs8{font-size:57.572394px;}
.fs4{font-size:59.775600px;}
.fs15{font-size:61.137764px;}
.fsc{font-size:66.233534px;}
.fs10{font-size:66.233652px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:72.000000px;}
.fs1e{font-size:75.892603px;}
.fs1a{font-size:79.480230px;}
.fs0{font-size:119.551800px;}
.fs20{font-size:122.465284px;}
.y0{bottom:0.000000px;}
.y53{bottom:2.997393px;}
.y3a{bottom:3.798000px;}
.y81{bottom:9.347605px;}
.y91{bottom:17.260855px;}
.y70{bottom:18.699425px;}
.y5f{bottom:18.699530px;}
.y39{bottom:21.798000px;}
.y51{bottom:26.027636px;}
.y52{bottom:26.225719px;}
.y80{bottom:31.148414px;}
.y90{bottom:36.339565px;}
.ya1{bottom:39.368430px;}
.y6f{bottom:40.500214px;}
.y5e{bottom:40.500338px;}
.y86{bottom:41.650929px;}
.y92{bottom:44.472820px;}
.y82{bottom:45.726133px;}
.y78{bottom:46.522974px;}
.ya2{bottom:48.179584px;}
.y71{bottom:49.311579px;}
.y37{bottom:50.838000px;}
.yb7{bottom:52.286458px;}
.y98{bottom:61.240760px;}
.y60{bottom:61.511802px;}
.yab{bottom:62.635449px;}
.ybd{bottom:68.801270px;}
.yb2{bottom:70.718786px;}
.yaa{bottom:74.718561px;}
.yac{bottom:74.953773px;}
.ya7{bottom:76.571731px;}
.y97{bottom:77.406752px;}
.y72{bottom:78.466065px;}
.yc8{bottom:80.385770px;}
.ybc{bottom:80.759464px;}
.yc4{bottom:82.927554px;}
.y93{bottom:85.101361px;}
.y66{bottom:86.659835px;}
.ya9{bottom:87.036884px;}
.ya3{bottom:88.731873px;}
.y61{bottom:92.170469px;}
.ybb{bottom:94.399279px;}
.y36{bottom:95.670000px;}
.yc7{bottom:100.938916px;}
.y83{bottom:105.230469px;}
.y9f{bottom:107.346000px;}
.y73{bottom:107.620205px;}
.yba{bottom:109.347021px;}
.yd1{bottom:109.602000px;}
.yb3{bottom:109.750784px;}
.y35{bottom:113.602500px;}
.y62{bottom:122.829136px;}
.yb9{bottom:123.360530px;}
.y9e{bottom:125.278500px;}
.y94{bottom:125.729903px;}
.yd0{bottom:127.534500px;}
.ya4{bottom:129.284162px;}
.y34{bottom:131.535000px;}
.yb8{bottom:136.439805px;}
.y74{bottom:136.775297px;}
.yce{bottom:143.055000px;}
.ycd{bottom:143.211000px;}
.y9d{bottom:143.212500px;}
.yc5{bottom:144.219842px;}
.ycc{bottom:145.468500px;}
.y9c{bottom:147.470329px;}
.yb4{bottom:148.782781px;}
.y33{bottom:149.467500px;}
.ycf{bottom:150.892500px;}
.y63{bottom:153.487803px;}
.y9b{bottom:163.378157px;}
.y84{bottom:164.734804px;}
.y55{bottom:165.634500px;}
.y75{bottom:165.929523px;}
.y95{bottom:166.358444px;}
.y32{bottom:167.400000px;}
.y8a{bottom:168.657192px;}
.ya5{bottom:169.836450px;}
.y8f{bottom:170.709000px;}
.y6d{bottom:171.666000px;}
.yb1{bottom:173.377500px;}
.y69{bottom:177.508198px;}
.y9a{bottom:179.285985px;}
.yc3{bottom:180.001077px;}
.y89{bottom:182.971920px;}
.y54{bottom:183.567000px;}
.y64{bottom:184.146470px;}
.yb5{bottom:187.814779px;}
.y6b{bottom:189.598500px;}
.ycb{bottom:190.442418px;}
.yc2{bottom:192.310886px;}
.y31{bottom:193.453500px;}
.y6c{bottom:195.024000px;}
.y76{bottom:195.084615px;}
.y68{bottom:195.126334px;}
.y99{bottom:195.193813px;}
.y88{bottom:197.286648px;}
.yca{bottom:202.752227px;}
.yc1{bottom:204.620694px;}
.y2b{bottom:204.834000px;}
.yc6{bottom:205.512130px;}
.y96{bottom:206.986986px;}
.y6a{bottom:207.531000px;}
.y2a{bottom:209.317500px;}
.ya6{bottom:210.388739px;}
.y50{bottom:211.063500px;}
.y87{bottom:211.601376px;}
.y30{bottom:212.553000px;}
.y67{bottom:212.744471px;}
.y29{bottom:213.801000px;}
.y65{bottom:214.805138px;}
.yc9{bottom:215.062035px;}
.yc0{bottom:216.930503px;}
.y28{bottom:218.283000px;}
.ya8{bottom:220.498368px;}
.y27{bottom:222.766500px;}
.ydb{bottom:223.422000px;}
.y77{bottom:224.238842px;}
.y85{bottom:224.239139px;}
.yb6{bottom:226.846776px;}
.y26{bottom:227.250000px;}
.ybe{bottom:227.994728px;}
.y2f{bottom:229.858500px;}
.y5d{bottom:235.029000px;}
.y1e{bottom:236.964000px;}
.yda{bottom:241.356000px;}
.y2e{bottom:248.956500px;}
.ybf{bottom:250.416342px;}
.y25{bottom:254.149500px;}
.y24{bottom:258.633000px;}
.yd9{bottom:259.288500px;}
.y23{bottom:263.115000px;}
.y2d{bottom:263.818500px;}
.y22{bottom:267.598500px;}
.y21{bottom:272.082000px;}
.y20{bottom:276.565500px;}
.yd8{bottom:277.221000px;}
.y2c{bottom:280.555500px;}
.y1f{bottom:290.014500px;}
.yd4{bottom:291.828244px;}
.yd7{bottom:292.741500px;}
.yd6{bottom:292.896000px;}
.yd5{bottom:295.153500px;}
.y1d{bottom:321.739500px;}
.yd2{bottom:322.650000px;}
.y1c{bottom:339.673500px;}
.y1b{bottom:357.606000px;}
.y1a{bottom:386.170500px;}
.y4f{bottom:409.393500px;}
.y19{bottom:414.735000px;}
.y8e{bottom:430.764000px;}
.y18{bottom:432.667500px;}
.y8c{bottom:448.696500px;}
.y17{bottom:450.600000px;}
.y8d{bottom:454.120500px;}
.y8b{bottom:466.629000px;}
.y16{bottom:478.396500px;}
.yb0{bottom:488.290500px;}
.y7f{bottom:494.125500px;}
.yaf{bottom:506.223000px;}
.y15{bottom:535.257000px;}
.y14{bottom:553.189500px;}
.y13{bottom:571.122000px;}
.y12{bottom:589.653000px;}
.y4e{bottom:594.181500px;}
.y4d{bottom:612.538500px;}
.y11{bottom:622.954500px;}
.yd3{bottom:628.179178px;}
.y4c{bottom:630.895500px;}
.y5c{bottom:642.904500px;}
.y4b{bottom:649.098000px;}
.y5b{bottom:658.581000px;}
.y5a{bottom:660.838500px;}
.y10{bottom:665.581500px;}
.y4a{bottom:667.300500px;}
.y59{bottom:678.771000px;}
.y49{bottom:685.503000px;}
.yf{bottom:693.745500px;}
.y58{bottom:694.291500px;}
.y57{bottom:694.446000px;}
.y56{bottom:696.703500px;}
.y48{bottom:703.705500px;}
.ye{bottom:721.908000px;}
.y47{bottom:722.062500px;}
.y46{bottom:740.419500px;}
.yd{bottom:750.472500px;}
.y45{bottom:758.622000px;}
.yc{bottom:768.405000px;}
.y7e{bottom:773.364000px;}
.y44{bottom:776.824500px;}
.yb{bottom:786.339000px;}
.y7c{bottom:788.884500px;}
.y7b{bottom:789.039000px;}
.yae{bottom:789.040500px;}
.y7a{bottom:791.296500px;}
.y43{bottom:795.027000px;}
.y7d{bottom:796.720500px;}
.yad{bottom:806.973000px;}
.y79{bottom:809.229000px;}
.y42{bottom:813.229500px;}
.ya{bottom:814.134000px;}
.y41{bottom:831.586500px;}
.ya0{bottom:834.469500px;}
.y6e{bottom:836.725500px;}
.y40{bottom:849.943500px;}
.y3f{bottom:868.146000px;}
.y9{bottom:884.967000px;}
.y3e{bottom:886.947000px;}
.y8{bottom:902.899500px;}
.y7{bottom:915.408000px;}
.y3d{bottom:920.421000px;}
.y6{bottom:933.340500px;}
.y3c{bottom:938.353500px;}
.y5{bottom:938.764500px;}
.y4{bottom:973.689000px;}
.y3{bottom:994.756500px;}
.y2{bottom:1033.167000px;}
.ydd{bottom:1034.049000px;}
.ydc{bottom:1051.981500px;}
.y1{bottom:1070.527500px;}
.y3b{bottom:1077.387000px;}
.y38{bottom:1152.000000px;}
.h11{height:0.597756px;}
.h1b{height:20.957139px;}
.h1a{height:20.957141px;}
.h1d{height:31.450232px;}
.h33{height:32.875296px;}
.h6{height:35.264147px;}
.h3{height:35.270147px;}
.h16{height:36.000000px;}
.h31{height:39.450355px;}
.hd{height:40.826735px;}
.h1c{height:41.914277px;}
.h2c{height:42.484384px;}
.h9{height:42.500452px;}
.h26{height:42.737884px;}
.h37{height:42.800452px;}
.h10{height:44.831700px;}
.h8{height:45.250129px;}
.h2b{height:45.518983px;}
.he{height:46.326090px;}
.h2e{height:49.743632px;}
.h17{height:52.417969px;}
.h28{height:52.476041px;}
.h21{height:52.600473px;}
.hb{height:53.146232px;}
.hf{height:53.152232px;}
.h7{height:54.300518px;}
.h24{height:55.221487px;}
.ha{height:55.977195px;}
.h18{height:55.983195px;}
.h14{height:56.134232px;}
.h1f{height:56.849865px;}
.h4{height:56.966147px;}
.hc{height:57.859350px;}
.h5{height:58.070147px;}
.h2a{height:58.264289px;}
.h22{height:58.685247px;}
.h29{height:62.971154px;}
.h2{height:64.284662px;}
.h25{height:66.265992px;}
.h20{height:68.219735px;}
.h23{height:70.422490px;}
.h32{height:72.325650px;}
.h19{height:73.344914px;}
.h2d{height:75.744659px;}
.h12{height:78.305700px;}
.h35{height:87.663138px;}
.h13{height:89.244090px;}
.h15{height:89.250090px;}
.h1{height:90.500713px;}
.h2f{height:99.016925px;}
.h36{height:110.858553px;}
.h27{height:230.126400px;}
.h1e{height:249.307200px;}
.h30{height:280.470600px;}
.h34{height:647.310007px;}
.h0{height:1188.000000px;}
.w3{width:373.960800px;}
.w4{width:747.910800px;}
.w6{width:747.912960px;}
.w5{width:747.921600px;}
.w2{width:747.931415px;}
.w1{width:903.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2b{left:15.000000px;}
.x62{left:17.848031px;}
.x60{left:24.837475px;}
.x4d{left:27.062729px;}
.x42{left:29.225694px;}
.x61{left:32.350058px;}
.x4c{left:34.052161px;}
.x40{left:36.215138px;}
.x66{left:38.321276px;}
.x2e{left:42.718045px;}
.x41{left:43.727721px;}
.x65{left:45.549081px;}
.x67{left:72.272850px;}
.x31{left:75.433833px;}
.x6{left:83.934000px;}
.x1{left:85.039500px;}
.x2d{left:94.006500px;}
.x75{left:98.678465px;}
.x64{left:101.046194px;}
.x7{left:103.719000px;}
.x16{left:107.455500px;}
.x4e{left:110.877000px;}
.x8{left:114.568500px;}
.x73{left:116.808212px;}
.x4a{left:119.260601px;}
.xc{left:122.400000px;}
.xd{left:125.730000px;}
.x5e{left:130.274712px;}
.x4f{left:131.686500px;}
.xe{left:138.852000px;}
.x7e{left:145.362267px;}
.x17{left:147.259500px;}
.x74{left:148.553721px;}
.x2c{left:153.966000px;}
.x11{left:159.351000px;}
.x32{left:162.433500px;}
.xf{left:164.853000px;}
.x18{left:169.693500px;}
.x8e{left:170.724000px;}
.x13{left:174.414000px;}
.x5f{left:179.824196px;}
.x4b{left:183.743735px;}
.x3f{left:185.513027px;}
.x7f{left:188.768537px;}
.xb{left:202.437000px;}
.x3a{left:205.464000px;}
.x10{left:212.994000px;}
.x12{left:214.659000px;}
.x3b{left:217.269000px;}
.x3c{left:226.245000px;}
.x3d{left:232.521000px;}
.x3{left:245.917500px;}
.x14{left:262.743000px;}
.x43{left:265.376786px;}
.x69{left:270.228056px;}
.x3e{left:272.019000px;}
.x6a{left:277.162648px;}
.x30{left:281.602334px;}
.x63{left:282.931647px;}
.x68{left:284.390453px;}
.x81{left:289.132902px;}
.x80{left:301.675534px;}
.x6b{left:311.114222px;}
.x26{left:313.299000px;}
.x93{left:314.712000px;}
.x78{left:325.495071px;}
.x21{left:339.294000px;}
.x27{left:342.694500px;}
.x76{left:348.755439px;}
.x9{left:352.548000px;}
.x22{left:353.808000px;}
.x2f{left:377.309394px;}
.x50{left:380.691000px;}
.x77{left:383.655980px;}
.x51{left:392.302500px;}
.x6c{left:393.758487px;}
.x86{left:395.215148px;}
.x84{left:402.204592px;}
.x52{left:407.037000px;}
.x85{left:409.717174px;}
.x53{left:416.995500px;}
.x33{left:427.264500px;}
.x19{left:436.237500px;}
.x34{left:439.071000px;}
.x54{left:446.569500px;}
.x35{left:448.018500px;}
.x2a{left:455.263500px;}
.x1a{left:457.086000px;}
.x55{left:458.181000px;}
.x56{left:472.915500px;}
.x1b{left:482.142000px;}
.x57{left:486.610500px;}
.x1c{left:503.739000px;}
.x6f{left:509.069428px;}
.x82{left:511.351720px;}
.x70{left:516.004020px;}
.x6e{left:523.231825px;}
.x58{left:533.778000px;}
.x8a{left:535.074000px;}
.x28{left:541.831500px;}
.x8b{left:544.086000px;}
.x59{left:545.389500px;}
.x71{left:549.955594px;}
.x7c{left:552.311677px;}
.x83{left:554.757990px;}
.x5a{left:560.124000px;}
.x7a{left:570.441424px;}
.x5b{left:573.819000px;}
.x79{left:575.572045px;}
.x6d{left:578.728938px;}
.x4{left:589.086000px;}
.x5c{left:601.776000px;}
.x7b{left:604.948773px;}
.x29{left:608.481000px;}
.x5d{left:615.471000px;}
.x72{left:632.599859px;}
.x7d{left:634.182023px;}
.x8f{left:655.923000px;}
.x90{left:667.728000px;}
.x91{left:676.822500px;}
.x92{left:683.098500px;}
.xa{left:693.520500px;}
.x88{left:695.978941px;}
.x87{left:703.429981px;}
.x89{left:706.063984px;}
.x44{left:707.418000px;}
.x2{left:714.865500px;}
.x45{left:719.029500px;}
.x23{left:721.126500px;}
.x46{left:733.929000px;}
.x36{left:739.620000px;}
.x47{left:747.613500px;}
.x37{left:751.425000px;}
.x1d{left:753.580500px;}
.x38{left:760.372500px;}
.x39{left:766.650000px;}
.x1e{left:771.355500px;}
.x8c{left:773.275500px;}
.x48{left:775.828500px;}
.x8d{left:783.288000px;}
.x49{left:789.513000px;}
.x25{left:792.042000px;}
.x1f{left:796.410000px;}
.x24{left:798.288000px;}
.x5{left:802.603500px;}
.x15{left:807.228000px;}
.x20{left:814.933500px;}
@media print{
.ve{vertical-align:-21.365935pt;}
.v3{vertical-align:-19.285333pt;}
.vd{vertical-align:-17.804751pt;}
.v12{vertical-align:-12.024785pt;}
.vb{vertical-align:-10.235091pt;}
.v6{vertical-align:-8.533333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:0.890667pt;}
.v5{vertical-align:8.261333pt;}
.v10{vertical-align:15.407213pt;}
.vf{vertical-align:16.434384pt;}
.vc{vertical-align:17.804173pt;}
.v4{vertical-align:19.285333pt;}
.v13{vertical-align:20.618146pt;}
.v7{vertical-align:21.941333pt;}
.v1{vertical-align:23.141333pt;}
.v9{vertical-align:29.754667pt;}
.v8{vertical-align:37.722667pt;}
.v11{vertical-align:43.798483pt;}
.va{vertical-align:46.117333pt;}
.ls26{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000015pt;}
.ls1d{letter-spacing:0.003733pt;}
.ls10{letter-spacing:0.004541pt;}
.ls3b{letter-spacing:0.011335pt;}
.ls2b{letter-spacing:0.021311pt;}
.ls33{letter-spacing:0.024704pt;}
.ls2c{letter-spacing:0.026763pt;}
.ls35{letter-spacing:0.029679pt;}
.ls2e{letter-spacing:0.032152pt;}
.ls29{letter-spacing:0.033585pt;}
.ls3e{letter-spacing:0.038294pt;}
.ls3f{letter-spacing:0.048769pt;}
.ls38{letter-spacing:0.058294pt;}
.ls2a{letter-spacing:0.100753pt;}
.ls36{letter-spacing:1.452998pt;}
.ls2f{letter-spacing:1.574103pt;}
.ls7{letter-spacing:2.623533pt;}
.ls2{letter-spacing:2.654394pt;}
.ls0{letter-spacing:2.654933pt;}
.ls3{letter-spacing:2.655200pt;}
.ls1f{letter-spacing:2.657063pt;}
.ls22{letter-spacing:2.659727pt;}
.ls1{letter-spacing:2.660267pt;}
.ls5{letter-spacing:2.660533pt;}
.lsc{letter-spacing:4.407566pt;}
.ls8{letter-spacing:4.412899pt;}
.ls9{letter-spacing:5.858079pt;}
.ls11{letter-spacing:7.330906pt;}
.lsd{letter-spacing:7.332474pt;}
.lsf{letter-spacing:7.333812pt;}
.lsb{letter-spacing:7.335412pt;}
.ls18{letter-spacing:7.339145pt;}
.ls21{letter-spacing:7.340745pt;}
.lse{letter-spacing:7.379733pt;}
.lsa{letter-spacing:7.380541pt;}
.ls14{letter-spacing:7.669812pt;}
.ls13{letter-spacing:7.715733pt;}
.ls3a{letter-spacing:9.573200pt;}
.ls17{letter-spacing:10.033063pt;}
.ls20{letter-spacing:10.036533pt;}
.ls32{letter-spacing:11.081521pt;}
.ls25{letter-spacing:11.723145pt;}
.ls1b{letter-spacing:11.765812pt;}
.ls24{letter-spacing:14.422397pt;}
.ls16{letter-spacing:14.459730pt;}
.ls1c{letter-spacing:14.462394pt;}
.ls1a{letter-spacing:14.465063pt;}
.ls15{letter-spacing:15.940533pt;}
.ls39{letter-spacing:17.940542pt;}
.ls6{letter-spacing:26.249867pt;}
.ls23{letter-spacing:62.164533pt;}
.ls3c{letter-spacing:90.519143pt;}
.ls34{letter-spacing:135.864492pt;}
.ls37{letter-spacing:198.799639pt;}
.ls1e{letter-spacing:286.121867pt;}
.ls3d{letter-spacing:296.712291pt;}
.ls31{letter-spacing:348.810374pt;}
.ls2d{letter-spacing:366.199247pt;}
.ls30{letter-spacing:369.092287pt;}
.ls27{letter-spacing:409.087200pt;}
.ls28{letter-spacing:409.092533pt;}
.ls19{letter-spacing:628.057060pt;}
.ls12{letter-spacing:1243.810906pt;}
.ls40{letter-spacing:1248.658870pt;}
.ls41{letter-spacing:1254.754919pt;}
.ws3a{word-spacing:-212.389781pt;}
.ws2a{word-spacing:-49.061810pt;}
.ws2e{word-spacing:-47.924256pt;}
.ws18{word-spacing:-46.218750pt;}
.ws2c{word-spacing:-43.096029pt;}
.ws2d{word-spacing:-41.211711pt;}
.ws2b{word-spacing:-34.343144pt;}
.ws3b{word-spacing:-16.308168pt;}
.ws24{word-spacing:-13.590142pt;}
.ws10{word-spacing:-13.283467pt;}
.ws36{word-spacing:-12.544565pt;}
.ws2{word-spacing:-11.955200pt;}
.ws3e{word-spacing:-11.891374pt;}
.ws38{word-spacing:-11.760530pt;}
.ws34{word-spacing:-11.041990pt;}
.wse{word-spacing:-9.829733pt;}
.ws11{word-spacing:-7.385607pt;}
.wsa{word-spacing:-2.975111pt;}
.ws3d{word-spacing:-2.223868pt;}
.wsc{word-spacing:-0.743874pt;}
.ws16{word-spacing:-0.318803pt;}
.ws3{word-spacing:-0.063761pt;}
.wsd{word-spacing:-0.053134pt;}
.ws9{word-spacing:-0.039319pt;}
.ws1f{word-spacing:-0.033264pt;}
.ws1e{word-spacing:-0.025588pt;}
.ws14{word-spacing:-0.002370pt;}
.ws8{word-spacing:-0.001244pt;}
.ws30{word-spacing:-0.001067pt;}
.ws7{word-spacing:0.000000pt;}
.ws39{word-spacing:0.039233pt;}
.ws32{word-spacing:0.039437pt;}
.ws26{word-spacing:0.048588pt;}
.ws17{word-spacing:0.053134pt;}
.ws37{word-spacing:0.053788pt;}
.ws25{word-spacing:0.058271pt;}
.ws3c{word-spacing:0.069956pt;}
.ws3f{word-spacing:0.106268pt;}
.ws33{word-spacing:0.158288pt;}
.ws13{word-spacing:0.159402pt;}
.ws35{word-spacing:0.198062pt;}
.ws23{word-spacing:0.212535pt;}
.ws22{word-spacing:0.265669pt;}
.ws12{word-spacing:0.637606pt;}
.ws6{word-spacing:1.594016pt;}
.ws29{word-spacing:3.188032pt;}
.ws27{word-spacing:3.241166pt;}
.ws2f{word-spacing:3.400567pt;}
.ws31{word-spacing:6.105595pt;}
.ws28{word-spacing:6.110929pt;}
.wsf{word-spacing:11.689451pt;}
.ws15{word-spacing:13.230333pt;}
.ws19{word-spacing:14.664947pt;}
.ws4{word-spacing:14.718081pt;}
.ws1{word-spacing:17.661815pt;}
.ws40{word-spacing:26.512466pt;}
.ws5{word-spacing:26.513799pt;}
.ws0{word-spacing:29.436310pt;}
.wsb{word-spacing:300.046945pt;}
.ws1d{word-spacing:358.373372pt;}
.ws1a{word-spacing:580.274958pt;}
.ws1c{word-spacing:593.558425pt;}
.ws1b{word-spacing:620.125358pt;}
.ws21{word-spacing:739.118338pt;}
.ws20{word-spacing:752.989191pt;}
._17{margin-left:-864.817068pt;}
._1a{margin-left:-198.799639pt;}
._19{margin-left:-9.901475pt;}
._18{margin-left:-8.478202pt;}
._9{margin-left:-7.173072pt;}
._2{margin-left:-5.100885pt;}
._5{margin-left:-3.825664pt;}
._0{margin-left:-2.125365pt;}
._1{margin-left:-1.062683pt;}
._b{width:1.062709pt;}
._3{width:2.223772pt;}
._4{width:3.497286pt;}
._8{width:5.648227pt;}
._7{width:6.719540pt;}
._6{width:7.943836pt;}
._10{width:13.574907pt;}
._d{width:16.471499pt;}
._a{width:18.543719pt;}
._e{width:26.566933pt;}
._c{width:31.880533pt;}
._f{width:63.755070pt;}
._15{width:86.555069pt;}
._13{width:312.538974pt;}
._11{width:434.688163pt;}
._14{width:500.042819pt;}
._12{width:517.736397pt;}
._16{width:1870.941265pt;}
.fs7{font-size:25.587731pt;}
.fs6{font-size:25.587733pt;}
.fs18{font-size:29.719621pt;}
.fs1c{font-size:30.050273pt;}
.fs1f{font-size:30.663678pt;}
.fs14{font-size:31.700929pt;}
.fs9{font-size:33.264051pt;}
.fsf{font-size:34.343144pt;}
.fsb{font-size:34.343169pt;}
.fs1d{font-size:36.796413pt;}
.fs16{font-size:38.041072pt;}
.fs3{font-size:39.318933pt;}
.fs19{font-size:39.626335pt;}
.fs12{font-size:39.862781pt;}
.fs11{font-size:41.211711pt;}
.fsd{font-size:41.211757pt;}
.fs17{font-size:42.456787pt;}
.fs1b{font-size:42.929149pt;}
.fs13{font-size:45.287240pt;}
.fs2{font-size:47.820800pt;}
.fse{font-size:49.061810pt;}
.fsa{font-size:49.061885pt;}
.fs8{font-size:51.175462pt;}
.fs4{font-size:53.133867pt;}
.fs15{font-size:54.344679pt;}
.fsc{font-size:58.874252pt;}
.fs10{font-size:58.874357pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:64.000000pt;}
.fs1e{font-size:67.460091pt;}
.fs1a{font-size:70.649093pt;}
.fs0{font-size:106.268267pt;}
.fs20{font-size:108.858031pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:2.664350pt;}
.y3a{bottom:3.376000pt;}
.y81{bottom:8.308982pt;}
.y91{bottom:15.342982pt;}
.y70{bottom:16.621711pt;}
.y5f{bottom:16.621804pt;}
.y39{bottom:19.376000pt;}
.y51{bottom:23.135677pt;}
.y52{bottom:23.311750pt;}
.y80{bottom:27.687479pt;}
.y90{bottom:32.301835pt;}
.ya1{bottom:34.994160pt;}
.y6f{bottom:36.000191pt;}
.y5e{bottom:36.000301pt;}
.y86{bottom:37.023048pt;}
.y92{bottom:39.531396pt;}
.y82{bottom:40.645452pt;}
.y78{bottom:41.353755pt;}
.ya2{bottom:42.826297pt;}
.y71{bottom:43.832515pt;}
.y37{bottom:45.189333pt;}
.yb7{bottom:46.476852pt;}
.y98{bottom:54.436231pt;}
.y60{bottom:54.677157pt;}
.yab{bottom:55.675955pt;}
.ybd{bottom:61.156684pt;}
.yb2{bottom:62.861143pt;}
.yaa{bottom:66.416499pt;}
.yac{bottom:66.625576pt;}
.ya7{bottom:68.063761pt;}
.y97{bottom:68.806002pt;}
.y72{bottom:69.747613pt;}
.yc8{bottom:71.454018pt;}
.ybc{bottom:71.786190pt;}
.yc4{bottom:73.713381pt;}
.y93{bottom:75.645655pt;}
.y66{bottom:77.030964pt;}
.ya9{bottom:77.366119pt;}
.ya3{bottom:78.872776pt;}
.y61{bottom:81.929306pt;}
.ybb{bottom:83.910470pt;}
.y36{bottom:85.040000pt;}
.yc7{bottom:89.723481pt;}
.y83{bottom:93.538194pt;}
.y9f{bottom:95.418667pt;}
.y73{bottom:95.662404pt;}
.yba{bottom:97.197352pt;}
.yd1{bottom:97.424000pt;}
.yb3{bottom:97.556252pt;}
.y35{bottom:100.980000pt;}
.y62{bottom:109.181454pt;}
.yb9{bottom:109.653804pt;}
.y9e{bottom:111.358667pt;}
.y94{bottom:111.759914pt;}
.yd0{bottom:113.364000pt;}
.ya4{bottom:114.919255pt;}
.y34{bottom:116.920000pt;}
.yb8{bottom:121.279826pt;}
.y74{bottom:121.578042pt;}
.yce{bottom:127.160000pt;}
.ycd{bottom:127.298667pt;}
.y9d{bottom:127.300000pt;}
.yc5{bottom:128.195415pt;}
.ycc{bottom:129.305333pt;}
.y9c{bottom:131.084737pt;}
.yb4{bottom:132.251361pt;}
.y33{bottom:132.860000pt;}
.ycf{bottom:134.126667pt;}
.y63{bottom:136.433603pt;}
.y9b{bottom:145.225028pt;}
.y84{bottom:146.430937pt;}
.y55{bottom:147.230667pt;}
.y75{bottom:147.492910pt;}
.y95{bottom:147.874173pt;}
.y32{bottom:148.800000pt;}
.y8a{bottom:149.917504pt;}
.ya5{bottom:150.965734pt;}
.y8f{bottom:151.741333pt;}
.y6d{bottom:152.592000pt;}
.yb1{bottom:154.113333pt;}
.y69{bottom:157.785065pt;}
.y9a{bottom:159.365320pt;}
.yc3{bottom:160.000958pt;}
.y89{bottom:162.641706pt;}
.y54{bottom:163.170667pt;}
.y64{bottom:163.685752pt;}
.yb5{bottom:166.946470pt;}
.y6b{bottom:168.532000pt;}
.ycb{bottom:169.282149pt;}
.yc2{bottom:170.943010pt;}
.y31{bottom:171.958667pt;}
.y6c{bottom:173.354667pt;}
.y76{bottom:173.408547pt;}
.y68{bottom:173.445631pt;}
.y99{bottom:173.505612pt;}
.y88{bottom:175.365909pt;}
.yca{bottom:180.224201pt;}
.yc1{bottom:181.885062pt;}
.y2b{bottom:182.074667pt;}
.yc6{bottom:182.677449pt;}
.y96{bottom:183.988432pt;}
.y6a{bottom:184.472000pt;}
.y2a{bottom:186.060000pt;}
.ya6{bottom:187.012213pt;}
.y50{bottom:187.612000pt;}
.y87{bottom:188.090112pt;}
.y30{bottom:188.936000pt;}
.y67{bottom:189.106196pt;}
.y29{bottom:190.045333pt;}
.y65{bottom:190.937900pt;}
.yc9{bottom:191.166253pt;}
.yc0{bottom:192.827114pt;}
.y28{bottom:194.029333pt;}
.ya8{bottom:195.998549pt;}
.y27{bottom:198.014667pt;}
.ydb{bottom:198.597333pt;}
.y77{bottom:199.323415pt;}
.y85{bottom:199.323679pt;}
.yb6{bottom:201.641579pt;}
.y26{bottom:202.000000pt;}
.ybe{bottom:202.661981pt;}
.y2f{bottom:204.318667pt;}
.y5d{bottom:208.914667pt;}
.y1e{bottom:210.634667pt;}
.yda{bottom:214.538667pt;}
.y2e{bottom:221.294667pt;}
.ybf{bottom:222.592304pt;}
.y25{bottom:225.910667pt;}
.y24{bottom:229.896000pt;}
.yd9{bottom:230.478667pt;}
.y23{bottom:233.880000pt;}
.y2d{bottom:234.505333pt;}
.y22{bottom:237.865333pt;}
.y21{bottom:241.850667pt;}
.y20{bottom:245.836000pt;}
.yd8{bottom:246.418667pt;}
.y2c{bottom:249.382667pt;}
.y1f{bottom:257.790667pt;}
.yd4{bottom:259.402884pt;}
.yd7{bottom:260.214667pt;}
.yd6{bottom:260.352000pt;}
.yd5{bottom:262.358667pt;}
.y1d{bottom:285.990667pt;}
.yd2{bottom:286.800000pt;}
.y1c{bottom:301.932000pt;}
.y1b{bottom:317.872000pt;}
.y1a{bottom:343.262667pt;}
.y4f{bottom:363.905333pt;}
.y19{bottom:368.653333pt;}
.y8e{bottom:382.901333pt;}
.y18{bottom:384.593333pt;}
.y8c{bottom:398.841333pt;}
.y17{bottom:400.533333pt;}
.y8d{bottom:403.662667pt;}
.y8b{bottom:414.781333pt;}
.y16{bottom:425.241333pt;}
.yb0{bottom:434.036000pt;}
.y7f{bottom:439.222667pt;}
.yaf{bottom:449.976000pt;}
.y15{bottom:475.784000pt;}
.y14{bottom:491.724000pt;}
.y13{bottom:507.664000pt;}
.y12{bottom:524.136000pt;}
.y4e{bottom:528.161333pt;}
.y4d{bottom:544.478667pt;}
.y11{bottom:553.737333pt;}
.yd3{bottom:558.381492pt;}
.y4c{bottom:560.796000pt;}
.y5c{bottom:571.470667pt;}
.y4b{bottom:576.976000pt;}
.y5b{bottom:585.405333pt;}
.y5a{bottom:587.412000pt;}
.y10{bottom:591.628000pt;}
.y4a{bottom:593.156000pt;}
.y59{bottom:603.352000pt;}
.y49{bottom:609.336000pt;}
.yf{bottom:616.662667pt;}
.y58{bottom:617.148000pt;}
.y57{bottom:617.285333pt;}
.y56{bottom:619.292000pt;}
.y48{bottom:625.516000pt;}
.ye{bottom:641.696000pt;}
.y47{bottom:641.833333pt;}
.y46{bottom:658.150667pt;}
.yd{bottom:667.086667pt;}
.y45{bottom:674.330667pt;}
.yc{bottom:683.026667pt;}
.y7e{bottom:687.434667pt;}
.y44{bottom:690.510667pt;}
.yb{bottom:698.968000pt;}
.y7c{bottom:701.230667pt;}
.y7b{bottom:701.368000pt;}
.yae{bottom:701.369333pt;}
.y7a{bottom:703.374667pt;}
.y43{bottom:706.690667pt;}
.y7d{bottom:708.196000pt;}
.yad{bottom:717.309333pt;}
.y79{bottom:719.314667pt;}
.y42{bottom:722.870667pt;}
.ya{bottom:723.674667pt;}
.y41{bottom:739.188000pt;}
.ya0{bottom:741.750667pt;}
.y6e{bottom:743.756000pt;}
.y40{bottom:755.505333pt;}
.y3f{bottom:771.685333pt;}
.y9{bottom:786.637333pt;}
.y3e{bottom:788.397333pt;}
.y8{bottom:802.577333pt;}
.y7{bottom:813.696000pt;}
.y3d{bottom:818.152000pt;}
.y6{bottom:829.636000pt;}
.y3c{bottom:834.092000pt;}
.y5{bottom:834.457333pt;}
.y4{bottom:865.501333pt;}
.y3{bottom:884.228000pt;}
.y2{bottom:918.370667pt;}
.ydd{bottom:919.154667pt;}
.ydc{bottom:935.094667pt;}
.y1{bottom:951.580000pt;}
.y3b{bottom:957.677333pt;}
.y38{bottom:1024.000000pt;}
.h11{height:0.531339pt;}
.h1b{height:18.628568pt;}
.h1a{height:18.628570pt;}
.h1d{height:27.955762pt;}
.h33{height:29.222485pt;}
.h6{height:31.345908pt;}
.h3{height:31.351242pt;}
.h16{height:32.000000pt;}
.h31{height:35.066982pt;}
.hd{height:36.290431pt;}
.h1c{height:37.257135pt;}
.h2c{height:37.763897pt;}
.h9{height:37.778179pt;}
.h26{height:37.989231pt;}
.h37{height:38.044846pt;}
.h10{height:39.850400pt;}
.h8{height:40.222337pt;}
.h2b{height:40.461318pt;}
.he{height:41.178747pt;}
.h2e{height:44.216562pt;}
.h17{height:46.593750pt;}
.h28{height:46.645370pt;}
.h21{height:46.755976pt;}
.hb{height:47.241095pt;}
.hf{height:47.246428pt;}
.h7{height:48.267127pt;}
.h24{height:49.085766pt;}
.ha{height:49.757507pt;}
.h18{height:49.762840pt;}
.h14{height:49.897095pt;}
.h1f{height:50.533213pt;}
.h4{height:50.636575pt;}
.hc{height:51.430533pt;}
.h5{height:51.617908pt;}
.h2a{height:51.790479pt;}
.h22{height:52.164664pt;}
.h29{height:55.974359pt;}
.h2{height:57.141922pt;}
.h25{height:58.903104pt;}
.h20{height:60.639765pt;}
.h23{height:62.597769pt;}
.h32{height:64.289467pt;}
.h19{height:65.195479pt;}
.h2d{height:67.328586pt;}
.h12{height:69.605067pt;}
.h35{height:77.922789pt;}
.h13{height:79.328080pt;}
.h15{height:79.333413pt;}
.h1{height:80.445078pt;}
.h2f{height:88.015044pt;}
.h36{height:98.540936pt;}
.h27{height:204.556800pt;}
.h1e{height:221.606400pt;}
.h30{height:249.307200pt;}
.h34{height:575.386673pt;}
.h0{height:1056.000000pt;}
.w3{width:332.409600pt;}
.w4{width:664.809600pt;}
.w6{width:664.811520pt;}
.w5{width:664.819200pt;}
.w2{width:664.827925pt;}
.w1{width:802.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:13.333333pt;}
.x62{left:15.864917pt;}
.x60{left:22.077756pt;}
.x4d{left:24.055759pt;}
.x42{left:25.978395pt;}
.x61{left:28.755607pt;}
.x4c{left:30.268587pt;}
.x40{left:32.191234pt;}
.x66{left:34.063356pt;}
.x2e{left:37.971596pt;}
.x41{left:38.869085pt;}
.x65{left:40.488072pt;}
.x67{left:64.242534pt;}
.x31{left:67.052296pt;}
.x6{left:74.608000pt;}
.x1{left:75.590667pt;}
.x2d{left:83.561333pt;}
.x75{left:87.714191pt;}
.x64{left:89.818839pt;}
.x7{left:92.194667pt;}
.x16{left:95.516000pt;}
.x4e{left:98.557333pt;}
.x8{left:101.838667pt;}
.x73{left:103.829522pt;}
.x4a{left:106.009423pt;}
.xc{left:108.800000pt;}
.xd{left:111.760000pt;}
.x5e{left:115.799744pt;}
.x4f{left:117.054667pt;}
.xe{left:123.424000pt;}
.x7e{left:129.210904pt;}
.x17{left:130.897333pt;}
.x74{left:132.047752pt;}
.x2c{left:136.858667pt;}
.x11{left:141.645333pt;}
.x32{left:144.385333pt;}
.xf{left:146.536000pt;}
.x18{left:150.838667pt;}
.x8e{left:151.754667pt;}
.x13{left:155.034667pt;}
.x5f{left:159.843729pt;}
.x4b{left:163.327764pt;}
.x3f{left:164.900468pt;}
.x7f{left:167.794255pt;}
.xb{left:179.944000pt;}
.x3a{left:182.634667pt;}
.x10{left:189.328000pt;}
.x12{left:190.808000pt;}
.x3b{left:193.128000pt;}
.x3c{left:201.106667pt;}
.x3d{left:206.685333pt;}
.x3{left:218.593333pt;}
.x14{left:233.549333pt;}
.x43{left:235.890476pt;}
.x69{left:240.202716pt;}
.x3e{left:241.794667pt;}
.x6a{left:246.366798pt;}
.x30{left:250.313186pt;}
.x63{left:251.494797pt;}
.x68{left:252.791514pt;}
.x81{left:257.007024pt;}
.x80{left:268.156031pt;}
.x6b{left:276.545975pt;}
.x26{left:278.488000pt;}
.x93{left:279.744000pt;}
.x78{left:289.328952pt;}
.x21{left:301.594667pt;}
.x27{left:304.617333pt;}
.x76{left:310.004835pt;}
.x9{left:313.376000pt;}
.x22{left:314.496000pt;}
.x2f{left:335.386128pt;}
.x50{left:338.392000pt;}
.x77{left:341.027538pt;}
.x51{left:348.713333pt;}
.x6c{left:350.007544pt;}
.x86{left:351.302354pt;}
.x84{left:357.515192pt;}
.x52{left:361.810667pt;}
.x85{left:364.193044pt;}
.x53{left:370.662667pt;}
.x33{left:379.790667pt;}
.x19{left:387.766667pt;}
.x34{left:390.285333pt;}
.x54{left:396.950667pt;}
.x35{left:398.238667pt;}
.x2a{left:404.678667pt;}
.x1a{left:406.298667pt;}
.x55{left:407.272000pt;}
.x56{left:420.369333pt;}
.x1b{left:428.570667pt;}
.x57{left:432.542667pt;}
.x1c{left:447.768000pt;}
.x6f{left:452.506158pt;}
.x82{left:454.534863pt;}
.x70{left:458.670240pt;}
.x6e{left:465.094955pt;}
.x58{left:474.469333pt;}
.x8a{left:475.621333pt;}
.x28{left:481.628000pt;}
.x8b{left:483.632000pt;}
.x59{left:484.790667pt;}
.x71{left:488.849417pt;}
.x7c{left:490.943713pt;}
.x83{left:493.118214pt;}
.x5a{left:497.888000pt;}
.x7a{left:507.059043pt;}
.x5b{left:510.061333pt;}
.x79{left:511.619596pt;}
.x6d{left:514.425723pt;}
.x4{left:523.632000pt;}
.x5c{left:534.912000pt;}
.x7b{left:537.732243pt;}
.x29{left:540.872000pt;}
.x5d{left:547.085333pt;}
.x72{left:562.310985pt;}
.x7d{left:563.717354pt;}
.x8f{left:583.042667pt;}
.x90{left:593.536000pt;}
.x91{left:601.620000pt;}
.x92{left:607.198667pt;}
.xa{left:616.462667pt;}
.x88{left:618.647947pt;}
.x87{left:625.271094pt;}
.x89{left:627.612431pt;}
.x44{left:628.816000pt;}
.x2{left:635.436000pt;}
.x45{left:639.137333pt;}
.x23{left:641.001333pt;}
.x46{left:652.381333pt;}
.x36{left:657.440000pt;}
.x47{left:664.545333pt;}
.x37{left:667.933333pt;}
.x1d{left:669.849333pt;}
.x38{left:675.886667pt;}
.x39{left:681.466667pt;}
.x1e{left:685.649333pt;}
.x8c{left:687.356000pt;}
.x48{left:689.625333pt;}
.x8d{left:696.256000pt;}
.x49{left:701.789333pt;}
.x25{left:704.037333pt;}
.x1f{left:707.920000pt;}
.x24{left:709.589333pt;}
.x5{left:713.425333pt;}
.x15{left:717.536000pt;}
.x20{left:724.385333pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
