
/* 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_579a4187af14.woff")format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_9bad73039f58.woff")format("woff");}.ff2{font-family:ff2;line-height:0.965820;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_46082a581f80.woff")format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_e4b4fb782565.woff")format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_5a805dd24f66.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_537e2203b46d.woff")format("woff");}.ff6{font-family:ff6;line-height:0.766602;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_8a5745bb075f.woff")format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_c4a0602a50d3.woff")format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_b5ff6e10ad11.woff")format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_489f63b8d672.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_84168e54f646.woff")format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_09c1e3cb8e71.woff")format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_403620b5e214.woff")format("woff");}.ffd{font-family:ffd;line-height:0.681641;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_1b4df6492188.woff")format("woff");}.ffe{font-family:ffe;line-height:0.861328;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;}
.m3{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.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,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);}
.m1{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);}
.v4{vertical-align:-34.938000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.986000px;}
.v1{vertical-align:27.360600px;}
.ls1f{letter-spacing:-2.160000px;}
.ls6{letter-spacing:-1.440000px;}
.lse{letter-spacing:-0.936000px;}
.ls1e{letter-spacing:-0.792000px;}
.ls5{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.504000px;}
.ls27{letter-spacing:-0.486000px;}
.ls26{letter-spacing:-0.432000px;}
.ls29{letter-spacing:-0.358560px;}
.ls19{letter-spacing:-0.337680px;}
.ls24{letter-spacing:-0.331200px;}
.ls2{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.270000px;}
.ls3{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls25{letter-spacing:-0.132480px;}
.ls21{letter-spacing:-0.119520px;}
.ls1b{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.048240px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.289440px;}
.ls23{letter-spacing:0.358560px;}
.lsc{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.385920px;}
.ls7{letter-spacing:0.504000px;}
.ls22{letter-spacing:0.597600px;}
.ls14{letter-spacing:0.648000px;}
.ls9{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.734400px;}
.lsf{letter-spacing:1.013040px;}
.ls13{letter-spacing:1.080000px;}
.ls1d{letter-spacing:24.480000px;}
.ls10{letter-spacing:38.160000px;}
.ls17{letter-spacing:126.000000px;}
.ls16{letter-spacing:133.920000px;}
.ls18{letter-spacing:164.160000px;}
.ls20{letter-spacing:168.642000px;}
.lsb{letter-spacing:198.000000px;}
.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;}
}
.ws2c{word-spacing:-183.654000px;}
.ws2e{word-spacing:-20.304000px;}
.wsc{word-spacing:-20.016000px;}
.ws12{word-spacing:-18.720000px;}
.ws20{word-spacing:-18.288000px;}
.ws1c{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws19{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws21{word-spacing:-17.928000px;}
.wsf{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws36{word-spacing:-17.568000px;}
.ws22{word-spacing:-17.496000px;}
.ws9{word-spacing:-17.280000px;}
.ws46{word-spacing:-17.208000px;}
.ws18{word-spacing:-17.064000px;}
.ws15{word-spacing:-16.560000px;}
.ws1a{word-spacing:-13.073040px;}
.ws13{word-spacing:-12.349440px;}
.ws1b{word-spacing:-12.011760px;}
.ws41{word-spacing:-1.584000px;}
.ws23{word-spacing:-1.440000px;}
.ws42{word-spacing:-1.152000px;}
.ws1f{word-spacing:-0.720000px;}
.ws30{word-spacing:-0.657360px;}
.ws31{word-spacing:-0.418320px;}
.ws17{word-spacing:-0.385920px;}
.ws14{word-spacing:-0.289440px;}
.ws38{word-spacing:-0.216000px;}
.ws4{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws2f{word-spacing:0.059760px;}
.ws16{word-spacing:0.144000px;}
.ws7{word-spacing:0.216000px;}
.ws5{word-spacing:0.288000px;}
.ws1d{word-spacing:0.337680px;}
.ws2b{word-spacing:0.576000px;}
.ws45{word-spacing:0.699840px;}
.ws8{word-spacing:0.720000px;}
.ws34{word-spacing:0.776880px;}
.ws29{word-spacing:0.792000px;}
.wse{word-spacing:0.936000px;}
.ws10{word-spacing:1.008000px;}
.ws3d{word-spacing:1.026000px;}
.wsb{word-spacing:1.440000px;}
.ws35{word-spacing:1.494000px;}
.wsd{word-spacing:1.656000px;}
.ws48{word-spacing:1.728000px;}
.ws1e{word-spacing:2.160000px;}
.ws2a{word-spacing:2.880000px;}
.ws25{word-spacing:3.600000px;}
.ws27{word-spacing:4.320000px;}
.ws28{word-spacing:4.464000px;}
.ws24{word-spacing:5.040000px;}
.ws44{word-spacing:8.640000px;}
.ws47{word-spacing:12.240000px;}
.ws26{word-spacing:16.560000px;}
.ws40{word-spacing:30.240000px;}
.ws3f{word-spacing:30.816000px;}
.ws3e{word-spacing:31.104000px;}
.ws49{word-spacing:51.120000px;}
.ws4a{word-spacing:51.408000px;}
.ws1{word-spacing:52.476000px;}
.ws43{word-spacing:56.160000px;}
.ws37{word-spacing:70.362000px;}
.ws3c{word-spacing:84.769008px;}
.ws3b{word-spacing:85.880712px;}
.ws33{word-spacing:93.264744px;}
.ws32{word-spacing:93.734880px;}
.ws2d{word-spacing:94.565400px;}
.ws3a{word-spacing:219.693600px;}
.ws39{word-spacing:252.860400px;}
._d{margin-left:-168.642000px;}
._c{margin-left:-14.400000px;}
._2{margin-left:-2.304000px;}
._0{margin-left:-1.152000px;}
._1{width:1.296000px;}
._3{width:2.368800px;}
._9{width:3.528000px;}
._a{width:5.256000px;}
._4{width:8.856000px;}
._12{width:31.032000px;}
._6{width:49.608000px;}
._b{width:88.128000px;}
._8{width:94.104000px;}
._7{width:145.584000px;}
._5{width:198.000000px;}
._11{width:269.823600px;}
._10{width:295.974000px;}
._f{width:300.988800px;}
._e{width:337.741200px;}
.fc9{color:transparent;}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(5,99,193);}
.fc1{color:rgb(1,2,2);}
.fc8{color:rgb(89,89,89);}
.fc7{color:rgb(51,51,51);}
.fc6{color:rgb(34,34,34);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(71,71,71);}
.fc0{color:rgb(87,87,87);}
.fs9{font-size:30.240000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:75.894664px;}
.fs8{font-size:77.760000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y82{bottom:24.659850px;}
.y9b{bottom:24.660000px;}
.y1bc{bottom:25.019850px;}
.y84{bottom:25.020000px;}
.y12c{bottom:41.400000px;}
.y126{bottom:50.580000px;}
.y15{bottom:57.240000px;}
.y159{bottom:66.060000px;}
.y121{bottom:66.240000px;}
.y11c{bottom:66.419850px;}
.y117{bottom:66.420000px;}
.y111{bottom:77.293800px;}
.y109{bottom:91.824000px;}
.y3{bottom:103.411350px;}
.ye5{bottom:103.779300px;}
.y1b4{bottom:107.820000px;}
.y1b8{bottom:109.080000px;}
.yc0{bottom:114.839850px;}
.yf6{bottom:115.379850px;}
.y2{bottom:117.811350px;}
.y12b{bottom:119.557440px;}
.y32{bottom:126.180000px;}
.y1{bottom:132.211350px;}
.y155{bottom:133.850880px;}
.ydc{bottom:136.079850px;}
.y175{bottom:137.391120px;}
.y77{bottom:141.480000px;}
.y99{bottom:143.100000px;}
.yb1{bottom:144.720000px;}
.y188{bottom:145.108080px;}
.y4{bottom:146.059350px;}
.y19f{bottom:146.340000px;}
.y4f{bottom:146.879850px;}
.y31{bottom:146.880000px;}
.y1b0{bottom:150.120000px;}
.y154{bottom:151.133040px;}
.ybf{bottom:156.239850px;}
.yf5{bottom:156.779850px;}
.y16b{bottom:158.801760px;}
.y30{bottom:167.580000px;}
.y153{bottom:168.415200px;}
.yd{bottom:176.547000px;}
.ydb{bottom:177.479850px;}
.y12a{bottom:182.368080px;}
.y76{bottom:182.880000px;}
.y98{bottom:184.500000px;}
.y152{bottom:185.697360px;}
.yb0{bottom:186.120000px;}
.y19e{bottom:187.740000px;}
.y4e{bottom:188.279850px;}
.y2f{bottom:188.280000px;}
.yc{bottom:190.947000px;}
.y1af{bottom:191.520000px;}
.ybe{bottom:197.639850px;}
.yf4{bottom:198.179850px;}
.y174{bottom:200.201760px;}
.y151{bottom:202.979520px;}
.yb{bottom:205.347000px;}
.y187{bottom:207.918720px;}
.y2e{bottom:208.980000px;}
.yda{bottom:218.879850px;}
.y150{bottom:220.261680px;}
.y16a{bottom:221.612400px;}
.y75{bottom:224.280000px;}
.y97{bottom:225.900000px;}
.yaf{bottom:227.520000px;}
.y19d{bottom:229.140000px;}
.y68{bottom:229.319850px;}
.y4d{bottom:229.679850px;}
.y2d{bottom:229.680000px;}
.y1ae{bottom:232.740000px;}
.ya{bottom:234.147000px;}
.y14f{bottom:237.362400px;}
.ybd{bottom:238.859850px;}
.yf3{bottom:239.579850px;}
.y129{bottom:245.178720px;}
.y9{bottom:248.547000px;}
.y2c{bottom:250.380000px;}
.y14e{bottom:254.644560px;}
.yd9{bottom:260.279850px;}
.y8{bottom:262.947000px;}
.y173{bottom:263.012400px;}
.y74{bottom:265.680000px;}
.y96{bottom:267.300000px;}
.yae{bottom:268.740000px;}
.y19c{bottom:270.540000px;}
.y79{bottom:270.720000px;}
.y186{bottom:270.729360px;}
.y4c{bottom:271.079850px;}
.y2b{bottom:271.080000px;}
.y14d{bottom:271.926720px;}
.y1ad{bottom:274.140000px;}
.ybc{bottom:280.259850px;}
.yf2{bottom:280.979850px;}
.y169{bottom:284.617440px;}
.y14c{bottom:289.208880px;}
.y7{bottom:291.747000px;}
.yd8{bottom:301.679850px;}
.y6{bottom:306.147000px;}
.y14b{bottom:306.491040px;}
.y73{bottom:307.080000px;}
.y128{bottom:307.989360px;}
.y95{bottom:308.700000px;}
.yad{bottom:310.140000px;}
.y19b{bottom:311.940000px;}
.y4b{bottom:312.479850px;}
.y2a{bottom:312.480000px;}
.y1ac{bottom:315.540000px;}
.y5{bottom:320.547000px;}
.ybb{bottom:321.659850px;}
.yf1{bottom:322.379850px;}
.y14a{bottom:323.773200px;}
.y172{bottom:326.017440px;}
.y185{bottom:333.540000px;}
.y149{bottom:340.873920px;}
.yd7{bottom:343.079850px;}
.y168{bottom:347.428080px;}
.y72{bottom:348.480000px;}
.y94{bottom:350.100000px;}
.yac{bottom:351.540000px;}
.y19a{bottom:353.340000px;}
.y29{bottom:353.879850px;}
.y46{bottom:353.880000px;}
.y1ab{bottom:356.940000px;}
.y148{bottom:358.156080px;}
.yba{bottom:363.059850px;}
.yf0{bottom:363.779850px;}
.y199{bottom:370.440000px;}
.y127{bottom:370.800000px;}
.y147{bottom:375.438240px;}
.y184{bottom:376.200000px;}
.yd6{bottom:384.479850px;}
.y125{bottom:388.440000px;}
.y171{bottom:388.828080px;}
.y71{bottom:389.880000px;}
.y93{bottom:391.500000px;}
.y146{bottom:392.720400px;}
.yab{bottom:392.940000px;}
.y183{bottom:393.300000px;}
.y66{bottom:394.919850px;}
.y67{bottom:394.920000px;}
.y80{bottom:395.099850px;}
.y5e{bottom:395.100000px;}
.y28{bottom:395.279850px;}
.y45{bottom:395.280000px;}
.y1aa{bottom:398.340000px;}
.yb9{bottom:404.459850px;}
.yef{bottom:405.179850px;}
.y145{bottom:410.002560px;}
.y167{bottom:410.238720px;}
.y198{bottom:411.840000px;}
.yd5{bottom:425.879850px;}
.y144{bottom:427.103280px;}
.y70{bottom:431.280000px;}
.y92{bottom:432.900000px;}
.yaa{bottom:434.340000px;}
.y182{bottom:434.700000px;}
.y5f{bottom:436.319850px;}
.y7f{bottom:436.499850px;}
.y5d{bottom:436.500000px;}
.y27{bottom:436.679850px;}
.y44{bottom:436.680000px;}
.y1a9{bottom:439.740000px;}
.y143{bottom:444.385440px;}
.yb8{bottom:445.859850px;}
.yee{bottom:446.579850px;}
.y170{bottom:451.638720px;}
.y197{bottom:453.960000px;}
.y124{bottom:456.120000px;}
.y142{bottom:461.667600px;}
.yd4{bottom:467.279850px;}
.y166{bottom:473.049360px;}
.y6e{bottom:474.120000px;}
.y91{bottom:474.300000px;}
.ya9{bottom:475.740000px;}
.y180{bottom:476.820000px;}
.y6a{bottom:477.719850px;}
.y7e{bottom:477.899850px;}
.y5c{bottom:477.900000px;}
.y26{bottom:478.079850px;}
.y43{bottom:478.080000px;}
.y141{bottom:478.949760px;}
.y6f{bottom:480.960000px;}
.y1a8{bottom:481.140000px;}
.yb7{bottom:487.259850px;}
.yed{bottom:487.979850px;}
.y196{bottom:495.360000px;}
.y140{bottom:496.231920px;}
.y123{bottom:497.520000px;}
.y181{bottom:501.840000px;}
.yd3{bottom:508.679850px;}
.y13f{bottom:513.514080px;}
.y16f{bottom:514.449360px;}
.y90{bottom:515.700000px;}
.ya8{bottom:517.140000px;}
.y6b{bottom:518.219850px;}
.y6c{bottom:518.220000px;}
.y7c{bottom:519.120000px;}
.y7d{bottom:519.299850px;}
.y5b{bottom:519.300000px;}
.y25{bottom:519.479850px;}
.y42{bottom:519.480000px;}
.y1a7{bottom:522.540000px;}
.y6d{bottom:525.060000px;}
.yb6{bottom:528.659850px;}
.yec{bottom:529.379850px;}
.y13e{bottom:530.614800px;}
.y165{bottom:535.860000px;}
.y194{bottom:536.760000px;}
.y120{bottom:539.820000px;}
.y13d{bottom:547.896960px;}
.yd2{bottom:550.079850px;}
.y8f{bottom:557.100000px;}
.ya7{bottom:558.540000px;}
.y17e{bottom:559.620000px;}
.y7b{bottom:560.520000px;}
.y5a{bottom:560.700000px;}
.y24{bottom:560.879850px;}
.y41{bottom:560.880000px;}
.y195{bottom:561.780000px;}
.y1a6{bottom:563.940000px;}
.y122{bottom:564.840000px;}
.y13c{bottom:565.179120px;}
.yb5{bottom:570.059850px;}
.yeb{bottom:570.779850px;}
.y16e{bottom:577.260000px;}
.y164{bottom:578.520000px;}
.y13b{bottom:582.461280px;}
.y17f{bottom:584.640000px;}
.yd1{bottom:591.479850px;}
.y163{bottom:595.620000px;}
.y8e{bottom:598.500000px;}
.y13a{bottom:599.743440px;}
.ya6{bottom:599.940000px;}
.y64{bottom:601.919850px;}
.y62{bottom:601.920000px;}
.y59{bottom:602.100000px;}
.y23{bottom:602.279850px;}
.y40{bottom:602.280000px;}
.y1a5{bottom:605.340000px;}
.yb4{bottom:611.459850px;}
.yea{bottom:612.179850px;}
.y139{bottom:617.025600px;}
.y16d{bottom:619.920000px;}
.y193{bottom:620.280000px;}
.y11e{bottom:622.440000px;}
.yd0{bottom:632.879850px;}
.y138{bottom:634.126320px;}
.y162{bottom:637.020000px;}
.y8d{bottom:639.900000px;}
.ya5{bottom:641.340000px;}
.y17c{bottom:642.420000px;}
.y58{bottom:643.500000px;}
.y22{bottom:643.679850px;}
.y3f{bottom:643.680000px;}
.y1a4{bottom:646.740000px;}
.y11f{bottom:647.460000px;}
.y137{bottom:651.408480px;}
.yb3{bottom:652.859850px;}
.ye9{bottom:653.579850px;}
.y17d{bottom:667.440000px;}
.y136{bottom:668.690640px;}
.ycf{bottom:674.279850px;}
.y161{bottom:678.420000px;}
.y8c{bottom:681.300000px;}
.ya4{bottom:682.740000px;}
.y63{bottom:684.719850px;}
.y57{bottom:684.900000px;}
.y21{bottom:685.079850px;}
.y3e{bottom:685.080000px;}
.y135{bottom:685.972800px;}
.y1a3{bottom:688.140000px;}
.yb2{bottom:690.119850px;}
.ye8{bottom:694.979850px;}
.y134{bottom:703.254960px;}
.y11b{bottom:705.240000px;}
.y192{bottom:705.420000px;}
.ycd{bottom:709.003200px;}
.yce{bottom:715.679850px;}
.y160{bottom:719.820000px;}
.y133{bottom:720.355680px;}
.y8b{bottom:722.700000px;}
.ya3{bottom:724.140000px;}
.y17a{bottom:725.220000px;}
.y69{bottom:726.119850px;}
.y56{bottom:726.300000px;}
.y20{bottom:726.479850px;}
.y3d{bottom:726.480000px;}
.y1a2{bottom:729.540000px;}
.y1b7{bottom:730.259850px;}
.y11d{bottom:730.260000px;}
.ye7{bottom:732.059850px;}
.y1ba{bottom:733.860000px;}
.ye4{bottom:734.040000px;}
.y132{bottom:737.637840px;}
.yc1{bottom:741.840750px;}
.y1bb{bottom:746.640000px;}
.y191{bottom:746.820000px;}
.y17b{bottom:750.240000px;}
.y112{bottom:750.984150px;}
.ye6{bottom:751.253250px;}
.y131{bottom:754.920000px;}
.y15f{bottom:761.220000px;}
.y8a{bottom:764.100000px;}
.ya2{bottom:765.540000px;}
.y14{bottom:767.491500px;}
.y1f{bottom:767.519850px;}
.y7a{bottom:767.520000px;}
.y55{bottom:767.700000px;}
.y4a{bottom:767.879850px;}
.y3c{bottom:767.880000px;}
.y1a1{bottom:770.940000px;}
.y1b6{bottom:771.659850px;}
.y1b9{bottom:775.260000px;}
.y110{bottom:781.019250px;}
.yc2{bottom:782.151150px;}
.ye3{bottom:783.129750px;}
.y13{bottom:784.041000px;}
.y130{bottom:786.780000px;}
.y119{bottom:788.040000px;}
.y190{bottom:788.220000px;}
.y10a{bottom:797.124750px;}
.ydd{bottom:801.378000px;}
.y15e{bottom:802.620000px;}
.y18f{bottom:805.320000px;}
.y89{bottom:805.500000px;}
.ya1{bottom:806.940000px;}
.y178{bottom:808.020000px;}
.y1e{bottom:808.919850px;}
.y101{bottom:809.080200px;}
.y54{bottom:809.100000px;}
.y49{bottom:809.279850px;}
.y3b{bottom:809.280000px;}
.y11a{bottom:813.060000px;}
.yf9{bottom:822.526200px;}
.yc4{bottom:822.728190px;}
.y12f{bottom:828.180000px;}
.y1b3{bottom:829.440000px;}
.y179{bottom:833.040000px;}
.yc3{bottom:839.983890px;}
.yfa{bottom:842.438700px;}
.y15d{bottom:844.020000px;}
.y102{bottom:844.031700px;}
.yf8{bottom:844.180200px;}
.y18e{bottom:846.720000px;}
.y88{bottom:846.900000px;}
.y10b{bottom:848.330250px;}
.ya0{bottom:848.340000px;}
.y1d{bottom:850.319850px;}
.y53{bottom:850.499850px;}
.y48{bottom:850.679850px;}
.y3a{bottom:850.680000px;}
.yde{bottom:851.733000px;}
.y1b5{bottom:854.460000px;}
.y12{bottom:862.392000px;}
.yf7{bottom:863.404200px;}
.y87{bottom:864.000000px;}
.yfd{bottom:866.900700px;}
.y12e{bottom:869.580000px;}
.y116{bottom:870.840000px;}
.yc6{bottom:871.940550px;}
.yfb{bottom:877.390200px;}
.y103{bottom:878.983200px;}
.y15c{bottom:885.420000px;}
.y12d{bottom:885.960000px;}
.y18d{bottom:888.840000px;}
.yc5{bottom:889.196250px;}
.y9f{bottom:889.740000px;}
.y177{bottom:891.540000px;}
.y52{bottom:891.899850px;}
.y1c{bottom:892.079850px;}
.y39{bottom:892.080000px;}
.yfc{bottom:893.117700px;}
.y118{bottom:895.860000px;}
.y10c{bottom:899.535750px;}
.ydf{bottom:902.088000px;}
.y86{bottom:905.400000px;}
.y11{bottom:905.592000px;}
.y9e{bottom:906.840000px;}
.y1a0{bottom:912.240000px;}
.y104{bottom:913.934700px;}
.yc8{bottom:921.152910px;}
.y15b{bottom:926.820000px;}
.y18c{bottom:930.240000px;}
.y51{bottom:933.299850px;}
.y1b{bottom:933.479850px;}
.y38{bottom:933.480000px;}
.yc7{bottom:938.408610px;}
.yfe{bottom:942.041700px;}
.y85{bottom:946.800000px;}
.y9d{bottom:948.240000px;}
.y10{bottom:948.792000px;}
.y105{bottom:948.886200px;}
.y10d{bottom:950.741250px;}
.ye0{bottom:952.443000px;}
.y115{bottom:953.640000px;}
.y1b2{bottom:954.360000px;}
.y158{bottom:968.940000px;}
.yca{bottom:970.365270px;}
.y18a{bottom:971.640000px;}
.y65{bottom:974.519850px;}
.y50{bottom:974.699850px;}
.y1a{bottom:974.879850px;}
.y37{bottom:974.880000px;}
.y176{bottom:976.680000px;}
.y106{bottom:983.837700px;}
.yc9{bottom:987.620970px;}
.y83{bottom:988.200000px;}
.y9c{bottom:989.640000px;}
.yf{bottom:991.992000px;}
.y15a{bottom:993.600000px;}
.y114{bottom:995.760000px;}
.y18b{bottom:996.660000px;}
.y10e{bottom:1001.946750px;}
.ye1{bottom:1002.798000px;}
.y100{bottom:1008.448200px;}
.y61{bottom:1015.919850px;}
.y78{bottom:1015.920000px;}
.y19{bottom:1016.279850px;}
.y36{bottom:1016.280000px;}
.y107{bottom:1018.789200px;}
.ycc{bottom:1019.577630px;}
.yff{bottom:1025.917200px;}
.y81{bottom:1030.320000px;}
.y9a{bottom:1031.760000px;}
.y16c{bottom:1036.080000px;}
.ycb{bottom:1036.833330px;}
.ye{bottom:1037.031000px;}
.y1b1{bottom:1039.679850px;}
.y10f{bottom:1053.152250px;}
.ye2{bottom:1053.153000px;}
.y108{bottom:1053.740700px;}
.y189{bottom:1055.160000px;}
.y60{bottom:1057.319850px;}
.y18{bottom:1057.679850px;}
.y35{bottom:1057.680000px;}
.y157{bottom:1077.480000px;}
.y113{bottom:1081.079850px;}
.y47{bottom:1098.720000px;}
.y17{bottom:1099.079850px;}
.y34{bottom:1099.080000px;}
.y156{bottom:1139.220000px;}
.y33{bottom:1140.120000px;}
.y16{bottom:1140.479850px;}
.h1f{height:21.011484px;}
.h10{height:33.494766px;}
.h1{height:36.703125px;}
.h19{height:36.914062px;}
.h14{height:39.313477px;}
.h13{height:41.398500px;}
.h12{height:41.400000px;}
.h15{height:43.506914px;}
.h5{height:46.025156px;}
.hd{height:47.988281px;}
.h17{height:48.224531px;}
.h7{height:48.796875px;}
.h9{height:49.992188px;}
.h6{height:50.027344px;}
.h8{height:50.027944px;}
.hf{height:50.584090px;}
.ha{height:52.417969px;}
.h18{height:53.299477px;}
.h1e{height:54.029531px;}
.h2{height:55.054688px;}
.h11{height:60.854766px;}
.he{height:60.855366px;}
.hc{height:60.878320px;}
.hb{height:60.878920px;}
.h1d{height:66.960000px;}
.h1c{height:82.620000px;}
.h1a{height:82.800000px;}
.h1b{height:82.801500px;}
.h3{height:110.109375px;}
.h20{height:124.200000px;}
.h16{height:340.020000px;}
.h0{height:1263.000000px;}
.h4{height:1263.060000px;}
.w1e{width:53.100000px;}
.w1f{width:63.901500px;}
.w27{width:64.441500px;}
.w24{width:64.800000px;}
.w10{width:73.260000px;}
.w23{width:74.340000px;}
.wd{width:85.140000px;}
.w28{width:86.040000px;}
.w20{width:86.580000px;}
.we{width:95.760000px;}
.w16{width:95.761500px;}
.w11{width:103.140000px;}
.w26{width:105.840000px;}
.w12{width:106.380000px;}
.wf{width:107.280000px;}
.w14{width:107.820000px;}
.w15{width:111.420000px;}
.w13{width:114.120000px;}
.wc{width:127.440000px;}
.w22{width:127.620000px;}
.w1a{width:138.060000px;}
.w1c{width:138.240000px;}
.w6{width:147.060000px;}
.w7{width:148.500000px;}
.w5{width:151.020000px;}
.w18{width:152.461500px;}
.wa{width:157.500000px;}
.w19{width:162.180000px;}
.wb{width:170.458500px;}
.w4{width:179.100000px;}
.w17{width:184.680000px;}
.w3{width:192.780000px;}
.w21{width:266.220000px;}
.w1d{width:276.120000px;}
.w25{width:276.660000px;}
.w9{width:288.000000px;}
.w1b{width:360.538500px;}
.w8{width:637.740000px;}
.w2{width:892.440000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1f{left:5.220000px;}
.x21{left:8.100000px;}
.x3f{left:25.665150px;}
.x3d{left:26.925150px;}
.x32{left:31.425150px;}
.x1{left:63.723150px;}
.x9{left:127.620000px;}
.x3{left:131.220000px;}
.x67{left:133.920000px;}
.x4d{left:135.720000px;}
.x2e{left:137.318250px;}
.x4c{left:142.560000px;}
.x2c{left:149.016270px;}
.x53{left:150.120000px;}
.x46{left:153.180000px;}
.x27{left:159.026070px;}
.x58{left:161.100000px;}
.x1e{left:163.620000px;}
.x2a{left:167.332710px;}
.x1d{left:170.100000px;}
.x3c{left:174.947850px;}
.xc{left:181.620000px;}
.x1c{left:191.520000px;}
.x41{left:197.100000px;}
.x4e{left:200.880000px;}
.x5a{left:205.020000px;}
.x33{left:211.762350px;}
.x26{left:214.035150px;}
.x2b{left:215.708430px;}
.x42{left:223.560000px;}
.x5b{left:225.360000px;}
.x31{left:228.684000px;}
.x3e{left:230.280150px;}
.x44{left:231.660000px;}
.x2d{left:235.698150px;}
.x28{left:245.304570px;}
.x34{left:248.279850px;}
.x2f{left:252.789510px;}
.x14{left:255.060000px;}
.x29{left:263.217630px;}
.x15{left:266.760000px;}
.x22{left:278.640000px;}
.x35{left:284.797350px;}
.x4{left:293.940000px;}
.x4f{left:304.020000px;}
.x54{left:312.300000px;}
.x40{left:318.589050px;}
.x20{left:320.400000px;}
.x8{left:322.380000px;}
.x47{left:323.640000px;}
.x68{left:330.480000px;}
.x5f{left:334.080000px;}
.x6{left:338.400000px;}
.x57{left:339.840000px;}
.x36{left:357.818850px;}
.x19{left:369.000000px;}
.x7{left:370.260000px;}
.x12{left:371.340000px;}
.x1a{left:372.420000px;}
.x10{left:375.300000px;}
.x30{left:381.756600px;}
.x18{left:383.400000px;}
.xd{left:394.020000px;}
.x4b{left:398.880000px;}
.xa{left:401.040000px;}
.x45{left:402.480000px;}
.x1b{left:404.280000px;}
.x13{left:405.720000px;}
.x50{left:410.400000px;}
.xb{left:412.740000px;}
.xe{left:416.340000px;}
.x11{left:418.320000px;}
.x60{left:419.400000px;}
.x23{left:425.700000px;}
.x64{left:427.500000px;}
.x5c{left:429.300000px;}
.x37{left:430.853850px;}
.xf{left:437.940000px;}
.x2{left:442.080000px;}
.x25{left:443.285100px;}
.x5{left:446.220000px;}
.x48{left:451.080000px;}
.x55{left:464.760000px;}
.x38{left:503.875350px;}
.x43{left:511.560000px;}
.x51{left:524.520000px;}
.x49{left:536.220000px;}
.x61{left:547.020000px;}
.x65{left:555.120000px;}
.x59{left:557.460000px;}
.x5d{left:588.780000px;}
.x62{left:600.120000px;}
.x66{left:608.220000px;}
.x56{left:626.940000px;}
.x4a{left:631.980000px;}
.x16{left:647.280000px;}
.x39{left:649.931850px;}
.x5e{left:652.680000px;}
.x17{left:659.160000px;}
.x63{left:674.460000px;}
.x3a{left:682.669350px;}
.x3b{left:719.186850px;}
.x52{left:743.760000px;}
.x24{left:766.620000px;}
@media print{
.v4{vertical-align:-31.056000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.432000pt;}
.v1{vertical-align:24.320533pt;}
.ls1f{letter-spacing:-1.920000pt;}
.ls6{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.832000pt;}
.ls1e{letter-spacing:-0.704000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.448000pt;}
.ls27{letter-spacing:-0.432000pt;}
.ls26{letter-spacing:-0.384000pt;}
.ls29{letter-spacing:-0.318720pt;}
.ls19{letter-spacing:-0.300160pt;}
.ls24{letter-spacing:-0.294400pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.240000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls25{letter-spacing:-0.117760pt;}
.ls21{letter-spacing:-0.106240pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.042880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.257280pt;}
.ls23{letter-spacing:0.318720pt;}
.lsc{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.343040pt;}
.ls7{letter-spacing:0.448000pt;}
.ls22{letter-spacing:0.531200pt;}
.ls14{letter-spacing:0.576000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.652800pt;}
.lsf{letter-spacing:0.900480pt;}
.ls13{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:21.760000pt;}
.ls10{letter-spacing:33.920000pt;}
.ls17{letter-spacing:112.000000pt;}
.ls16{letter-spacing:119.040000pt;}
.ls18{letter-spacing:145.920000pt;}
.ls20{letter-spacing:149.904000pt;}
.lsb{letter-spacing:176.000000pt;}
.ws2c{word-spacing:-163.248000pt;}
.ws2e{word-spacing:-18.048000pt;}
.wsc{word-spacing:-17.792000pt;}
.ws12{word-spacing:-16.640000pt;}
.ws20{word-spacing:-16.256000pt;}
.ws1c{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws19{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws21{word-spacing:-15.936000pt;}
.wsf{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws36{word-spacing:-15.616000pt;}
.ws22{word-spacing:-15.552000pt;}
.ws9{word-spacing:-15.360000pt;}
.ws46{word-spacing:-15.296000pt;}
.ws18{word-spacing:-15.168000pt;}
.ws15{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-11.620480pt;}
.ws13{word-spacing:-10.977280pt;}
.ws1b{word-spacing:-10.677120pt;}
.ws41{word-spacing:-1.408000pt;}
.ws23{word-spacing:-1.280000pt;}
.ws42{word-spacing:-1.024000pt;}
.ws1f{word-spacing:-0.640000pt;}
.ws30{word-spacing:-0.584320pt;}
.ws31{word-spacing:-0.371840pt;}
.ws17{word-spacing:-0.343040pt;}
.ws14{word-spacing:-0.257280pt;}
.ws38{word-spacing:-0.192000pt;}
.ws4{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.053120pt;}
.ws16{word-spacing:0.128000pt;}
.ws7{word-spacing:0.192000pt;}
.ws5{word-spacing:0.256000pt;}
.ws1d{word-spacing:0.300160pt;}
.ws2b{word-spacing:0.512000pt;}
.ws45{word-spacing:0.622080pt;}
.ws8{word-spacing:0.640000pt;}
.ws34{word-spacing:0.690560pt;}
.ws29{word-spacing:0.704000pt;}
.wse{word-spacing:0.832000pt;}
.ws10{word-spacing:0.896000pt;}
.ws3d{word-spacing:0.912000pt;}
.wsb{word-spacing:1.280000pt;}
.ws35{word-spacing:1.328000pt;}
.wsd{word-spacing:1.472000pt;}
.ws48{word-spacing:1.536000pt;}
.ws1e{word-spacing:1.920000pt;}
.ws2a{word-spacing:2.560000pt;}
.ws25{word-spacing:3.200000pt;}
.ws27{word-spacing:3.840000pt;}
.ws28{word-spacing:3.968000pt;}
.ws24{word-spacing:4.480000pt;}
.ws44{word-spacing:7.680000pt;}
.ws47{word-spacing:10.880000pt;}
.ws26{word-spacing:14.720000pt;}
.ws40{word-spacing:26.880000pt;}
.ws3f{word-spacing:27.392000pt;}
.ws3e{word-spacing:27.648000pt;}
.ws49{word-spacing:45.440000pt;}
.ws4a{word-spacing:45.696000pt;}
.ws1{word-spacing:46.645333pt;}
.ws43{word-spacing:49.920000pt;}
.ws37{word-spacing:62.544000pt;}
.ws3c{word-spacing:75.350229pt;}
.ws3b{word-spacing:76.338411pt;}
.ws33{word-spacing:82.901995pt;}
.ws32{word-spacing:83.319893pt;}
.ws2d{word-spacing:84.058133pt;}
.ws3a{word-spacing:195.283200pt;}
.ws39{word-spacing:224.764800pt;}
._d{margin-left:-149.904000pt;}
._c{margin-left:-12.800000pt;}
._2{margin-left:-2.048000pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.152000pt;}
._3{width:2.105600pt;}
._9{width:3.136000pt;}
._a{width:4.672000pt;}
._4{width:7.872000pt;}
._12{width:27.584000pt;}
._6{width:44.096000pt;}
._b{width:78.336000pt;}
._8{width:83.648000pt;}
._7{width:129.408000pt;}
._5{width:176.000000pt;}
._11{width:239.843200pt;}
._10{width:263.088000pt;}
._f{width:267.545600pt;}
._e{width:300.214400pt;}
.fs9{font-size:26.880000pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:67.461923pt;}
.fs8{font-size:69.120000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:21.919867pt;}
.y9b{bottom:21.920000pt;}
.y1bc{bottom:22.239867pt;}
.y84{bottom:22.240000pt;}
.y12c{bottom:36.800000pt;}
.y126{bottom:44.960000pt;}
.y15{bottom:50.880000pt;}
.y159{bottom:58.720000pt;}
.y121{bottom:58.880000pt;}
.y11c{bottom:59.039867pt;}
.y117{bottom:59.040000pt;}
.y111{bottom:68.705600pt;}
.y109{bottom:81.621333pt;}
.y3{bottom:91.921200pt;}
.ye5{bottom:92.248267pt;}
.y1b4{bottom:95.840000pt;}
.y1b8{bottom:96.960000pt;}
.yc0{bottom:102.079867pt;}
.yf6{bottom:102.559867pt;}
.y2{bottom:104.721200pt;}
.y12b{bottom:106.273280pt;}
.y32{bottom:112.160000pt;}
.y1{bottom:117.521200pt;}
.y155{bottom:118.978560pt;}
.ydc{bottom:120.959867pt;}
.y175{bottom:122.125440pt;}
.y77{bottom:125.760000pt;}
.y99{bottom:127.200000pt;}
.yb1{bottom:128.640000pt;}
.y188{bottom:128.984960pt;}
.y4{bottom:129.830533pt;}
.y19f{bottom:130.080000pt;}
.y4f{bottom:130.559867pt;}
.y31{bottom:130.560000pt;}
.y1b0{bottom:133.440000pt;}
.y154{bottom:134.340480pt;}
.ybf{bottom:138.879867pt;}
.yf5{bottom:139.359867pt;}
.y16b{bottom:141.157120pt;}
.y30{bottom:148.960000pt;}
.y153{bottom:149.702400pt;}
.yd{bottom:156.930667pt;}
.ydb{bottom:157.759867pt;}
.y12a{bottom:162.104960pt;}
.y76{bottom:162.560000pt;}
.y98{bottom:164.000000pt;}
.y152{bottom:165.064320pt;}
.yb0{bottom:165.440000pt;}
.y19e{bottom:166.880000pt;}
.y4e{bottom:167.359867pt;}
.y2f{bottom:167.360000pt;}
.yc{bottom:169.730667pt;}
.y1af{bottom:170.240000pt;}
.ybe{bottom:175.679867pt;}
.yf4{bottom:176.159867pt;}
.y174{bottom:177.957120pt;}
.y151{bottom:180.426240pt;}
.yb{bottom:182.530667pt;}
.y187{bottom:184.816640pt;}
.y2e{bottom:185.760000pt;}
.yda{bottom:194.559867pt;}
.y150{bottom:195.788160pt;}
.y16a{bottom:196.988800pt;}
.y75{bottom:199.360000pt;}
.y97{bottom:200.800000pt;}
.yaf{bottom:202.240000pt;}
.y19d{bottom:203.680000pt;}
.y68{bottom:203.839867pt;}
.y4d{bottom:204.159867pt;}
.y2d{bottom:204.160000pt;}
.y1ae{bottom:206.880000pt;}
.ya{bottom:208.130667pt;}
.y14f{bottom:210.988800pt;}
.ybd{bottom:212.319867pt;}
.yf3{bottom:212.959867pt;}
.y129{bottom:217.936640pt;}
.y9{bottom:220.930667pt;}
.y2c{bottom:222.560000pt;}
.y14e{bottom:226.350720pt;}
.yd9{bottom:231.359867pt;}
.y8{bottom:233.730667pt;}
.y173{bottom:233.788800pt;}
.y74{bottom:236.160000pt;}
.y96{bottom:237.600000pt;}
.yae{bottom:238.880000pt;}
.y19c{bottom:240.480000pt;}
.y79{bottom:240.640000pt;}
.y186{bottom:240.648320pt;}
.y4c{bottom:240.959867pt;}
.y2b{bottom:240.960000pt;}
.y14d{bottom:241.712640pt;}
.y1ad{bottom:243.680000pt;}
.ybc{bottom:249.119867pt;}
.yf2{bottom:249.759867pt;}
.y169{bottom:252.993280pt;}
.y14c{bottom:257.074560pt;}
.y7{bottom:259.330667pt;}
.yd8{bottom:268.159867pt;}
.y6{bottom:272.130667pt;}
.y14b{bottom:272.436480pt;}
.y73{bottom:272.960000pt;}
.y128{bottom:273.768320pt;}
.y95{bottom:274.400000pt;}
.yad{bottom:275.680000pt;}
.y19b{bottom:277.280000pt;}
.y4b{bottom:277.759867pt;}
.y2a{bottom:277.760000pt;}
.y1ac{bottom:280.480000pt;}
.y5{bottom:284.930667pt;}
.ybb{bottom:285.919867pt;}
.yf1{bottom:286.559867pt;}
.y14a{bottom:287.798400pt;}
.y172{bottom:289.793280pt;}
.y185{bottom:296.480000pt;}
.y149{bottom:302.999040pt;}
.yd7{bottom:304.959867pt;}
.y168{bottom:308.824960pt;}
.y72{bottom:309.760000pt;}
.y94{bottom:311.200000pt;}
.yac{bottom:312.480000pt;}
.y19a{bottom:314.080000pt;}
.y29{bottom:314.559867pt;}
.y46{bottom:314.560000pt;}
.y1ab{bottom:317.280000pt;}
.y148{bottom:318.360960pt;}
.yba{bottom:322.719867pt;}
.yf0{bottom:323.359867pt;}
.y199{bottom:329.280000pt;}
.y127{bottom:329.600000pt;}
.y147{bottom:333.722880pt;}
.y184{bottom:334.400000pt;}
.yd6{bottom:341.759867pt;}
.y125{bottom:345.280000pt;}
.y171{bottom:345.624960pt;}
.y71{bottom:346.560000pt;}
.y93{bottom:348.000000pt;}
.y146{bottom:349.084800pt;}
.yab{bottom:349.280000pt;}
.y183{bottom:349.600000pt;}
.y66{bottom:351.039867pt;}
.y67{bottom:351.040000pt;}
.y80{bottom:351.199867pt;}
.y5e{bottom:351.200000pt;}
.y28{bottom:351.359867pt;}
.y45{bottom:351.360000pt;}
.y1aa{bottom:354.080000pt;}
.yb9{bottom:359.519867pt;}
.yef{bottom:360.159867pt;}
.y145{bottom:364.446720pt;}
.y167{bottom:364.656640pt;}
.y198{bottom:366.080000pt;}
.yd5{bottom:378.559867pt;}
.y144{bottom:379.647360pt;}
.y70{bottom:383.360000pt;}
.y92{bottom:384.800000pt;}
.yaa{bottom:386.080000pt;}
.y182{bottom:386.400000pt;}
.y5f{bottom:387.839867pt;}
.y7f{bottom:387.999867pt;}
.y5d{bottom:388.000000pt;}
.y27{bottom:388.159867pt;}
.y44{bottom:388.160000pt;}
.y1a9{bottom:390.880000pt;}
.y143{bottom:395.009280pt;}
.yb8{bottom:396.319867pt;}
.yee{bottom:396.959867pt;}
.y170{bottom:401.456640pt;}
.y197{bottom:403.520000pt;}
.y124{bottom:405.440000pt;}
.y142{bottom:410.371200pt;}
.yd4{bottom:415.359867pt;}
.y166{bottom:420.488320pt;}
.y6e{bottom:421.440000pt;}
.y91{bottom:421.600000pt;}
.ya9{bottom:422.880000pt;}
.y180{bottom:423.840000pt;}
.y6a{bottom:424.639867pt;}
.y7e{bottom:424.799867pt;}
.y5c{bottom:424.800000pt;}
.y26{bottom:424.959867pt;}
.y43{bottom:424.960000pt;}
.y141{bottom:425.733120pt;}
.y6f{bottom:427.520000pt;}
.y1a8{bottom:427.680000pt;}
.yb7{bottom:433.119867pt;}
.yed{bottom:433.759867pt;}
.y196{bottom:440.320000pt;}
.y140{bottom:441.095040pt;}
.y123{bottom:442.240000pt;}
.y181{bottom:446.080000pt;}
.yd3{bottom:452.159867pt;}
.y13f{bottom:456.456960pt;}
.y16f{bottom:457.288320pt;}
.y90{bottom:458.400000pt;}
.ya8{bottom:459.680000pt;}
.y6b{bottom:460.639867pt;}
.y6c{bottom:460.640000pt;}
.y7c{bottom:461.440000pt;}
.y7d{bottom:461.599867pt;}
.y5b{bottom:461.600000pt;}
.y25{bottom:461.759867pt;}
.y42{bottom:461.760000pt;}
.y1a7{bottom:464.480000pt;}
.y6d{bottom:466.720000pt;}
.yb6{bottom:469.919867pt;}
.yec{bottom:470.559867pt;}
.y13e{bottom:471.657600pt;}
.y165{bottom:476.320000pt;}
.y194{bottom:477.120000pt;}
.y120{bottom:479.840000pt;}
.y13d{bottom:487.019520pt;}
.yd2{bottom:488.959867pt;}
.y8f{bottom:495.200000pt;}
.ya7{bottom:496.480000pt;}
.y17e{bottom:497.440000pt;}
.y7b{bottom:498.240000pt;}
.y5a{bottom:498.400000pt;}
.y24{bottom:498.559867pt;}
.y41{bottom:498.560000pt;}
.y195{bottom:499.360000pt;}
.y1a6{bottom:501.280000pt;}
.y122{bottom:502.080000pt;}
.y13c{bottom:502.381440pt;}
.yb5{bottom:506.719867pt;}
.yeb{bottom:507.359867pt;}
.y16e{bottom:513.120000pt;}
.y164{bottom:514.240000pt;}
.y13b{bottom:517.743360pt;}
.y17f{bottom:519.680000pt;}
.yd1{bottom:525.759867pt;}
.y163{bottom:529.440000pt;}
.y8e{bottom:532.000000pt;}
.y13a{bottom:533.105280pt;}
.ya6{bottom:533.280000pt;}
.y64{bottom:535.039867pt;}
.y62{bottom:535.040000pt;}
.y59{bottom:535.200000pt;}
.y23{bottom:535.359867pt;}
.y40{bottom:535.360000pt;}
.y1a5{bottom:538.080000pt;}
.yb4{bottom:543.519867pt;}
.yea{bottom:544.159867pt;}
.y139{bottom:548.467200pt;}
.y16d{bottom:551.040000pt;}
.y193{bottom:551.360000pt;}
.y11e{bottom:553.280000pt;}
.yd0{bottom:562.559867pt;}
.y138{bottom:563.667840pt;}
.y162{bottom:566.240000pt;}
.y8d{bottom:568.800000pt;}
.ya5{bottom:570.080000pt;}
.y17c{bottom:571.040000pt;}
.y58{bottom:572.000000pt;}
.y22{bottom:572.159867pt;}
.y3f{bottom:572.160000pt;}
.y1a4{bottom:574.880000pt;}
.y11f{bottom:575.520000pt;}
.y137{bottom:579.029760pt;}
.yb3{bottom:580.319867pt;}
.ye9{bottom:580.959867pt;}
.y17d{bottom:593.280000pt;}
.y136{bottom:594.391680pt;}
.ycf{bottom:599.359867pt;}
.y161{bottom:603.040000pt;}
.y8c{bottom:605.600000pt;}
.ya4{bottom:606.880000pt;}
.y63{bottom:608.639867pt;}
.y57{bottom:608.800000pt;}
.y21{bottom:608.959867pt;}
.y3e{bottom:608.960000pt;}
.y135{bottom:609.753600pt;}
.y1a3{bottom:611.680000pt;}
.yb2{bottom:613.439867pt;}
.ye8{bottom:617.759867pt;}
.y134{bottom:625.115520pt;}
.y11b{bottom:626.880000pt;}
.y192{bottom:627.040000pt;}
.ycd{bottom:630.225067pt;}
.yce{bottom:636.159867pt;}
.y160{bottom:639.840000pt;}
.y133{bottom:640.316160pt;}
.y8b{bottom:642.400000pt;}
.ya3{bottom:643.680000pt;}
.y17a{bottom:644.640000pt;}
.y69{bottom:645.439867pt;}
.y56{bottom:645.600000pt;}
.y20{bottom:645.759867pt;}
.y3d{bottom:645.760000pt;}
.y1a2{bottom:648.480000pt;}
.y1b7{bottom:649.119867pt;}
.y11d{bottom:649.120000pt;}
.ye7{bottom:650.719867pt;}
.y1ba{bottom:652.320000pt;}
.ye4{bottom:652.480000pt;}
.y132{bottom:655.678080pt;}
.yc1{bottom:659.414000pt;}
.y1bb{bottom:663.680000pt;}
.y191{bottom:663.840000pt;}
.y17b{bottom:666.880000pt;}
.y112{bottom:667.541467pt;}
.ye6{bottom:667.780667pt;}
.y131{bottom:671.040000pt;}
.y15f{bottom:676.640000pt;}
.y8a{bottom:679.200000pt;}
.ya2{bottom:680.480000pt;}
.y14{bottom:682.214667pt;}
.y1f{bottom:682.239867pt;}
.y7a{bottom:682.240000pt;}
.y55{bottom:682.400000pt;}
.y4a{bottom:682.559867pt;}
.y3c{bottom:682.560000pt;}
.y1a1{bottom:685.280000pt;}
.y1b6{bottom:685.919867pt;}
.y1b9{bottom:689.120000pt;}
.y110{bottom:694.239333pt;}
.yc2{bottom:695.245467pt;}
.ye3{bottom:696.115333pt;}
.y13{bottom:696.925333pt;}
.y130{bottom:699.360000pt;}
.y119{bottom:700.480000pt;}
.y190{bottom:700.640000pt;}
.y10a{bottom:708.555333pt;}
.ydd{bottom:712.336000pt;}
.y15e{bottom:713.440000pt;}
.y18f{bottom:715.840000pt;}
.y89{bottom:716.000000pt;}
.ya1{bottom:717.280000pt;}
.y178{bottom:718.240000pt;}
.y1e{bottom:719.039867pt;}
.y101{bottom:719.182400pt;}
.y54{bottom:719.200000pt;}
.y49{bottom:719.359867pt;}
.y3b{bottom:719.360000pt;}
.y11a{bottom:722.720000pt;}
.yf9{bottom:731.134400pt;}
.yc4{bottom:731.313947pt;}
.y12f{bottom:736.160000pt;}
.y1b3{bottom:737.280000pt;}
.y179{bottom:740.480000pt;}
.yc3{bottom:746.652347pt;}
.yfa{bottom:748.834400pt;}
.y15d{bottom:750.240000pt;}
.y102{bottom:750.250400pt;}
.yf8{bottom:750.382400pt;}
.y18e{bottom:752.640000pt;}
.y88{bottom:752.800000pt;}
.y10b{bottom:754.071333pt;}
.ya0{bottom:754.080000pt;}
.y1d{bottom:755.839867pt;}
.y53{bottom:755.999867pt;}
.y48{bottom:756.159867pt;}
.y3a{bottom:756.160000pt;}
.yde{bottom:757.096000pt;}
.y1b5{bottom:759.520000pt;}
.y12{bottom:766.570667pt;}
.yf7{bottom:767.470400pt;}
.y87{bottom:768.000000pt;}
.yfd{bottom:770.578400pt;}
.y12e{bottom:772.960000pt;}
.y116{bottom:774.080000pt;}
.yc6{bottom:775.058267pt;}
.yfb{bottom:779.902400pt;}
.y103{bottom:781.318400pt;}
.y15c{bottom:787.040000pt;}
.y12d{bottom:787.520000pt;}
.y18d{bottom:790.080000pt;}
.yc5{bottom:790.396667pt;}
.y9f{bottom:790.880000pt;}
.y177{bottom:792.480000pt;}
.y52{bottom:792.799867pt;}
.y1c{bottom:792.959867pt;}
.y39{bottom:792.960000pt;}
.yfc{bottom:793.882400pt;}
.y118{bottom:796.320000pt;}
.y10c{bottom:799.587333pt;}
.ydf{bottom:801.856000pt;}
.y86{bottom:804.800000pt;}
.y11{bottom:804.970667pt;}
.y9e{bottom:806.080000pt;}
.y1a0{bottom:810.880000pt;}
.y104{bottom:812.386400pt;}
.yc8{bottom:818.802587pt;}
.y15b{bottom:823.840000pt;}
.y18c{bottom:826.880000pt;}
.y51{bottom:829.599867pt;}
.y1b{bottom:829.759867pt;}
.y38{bottom:829.760000pt;}
.yc7{bottom:834.140987pt;}
.yfe{bottom:837.370400pt;}
.y85{bottom:841.600000pt;}
.y9d{bottom:842.880000pt;}
.y10{bottom:843.370667pt;}
.y105{bottom:843.454400pt;}
.y10d{bottom:845.103333pt;}
.ye0{bottom:846.616000pt;}
.y115{bottom:847.680000pt;}
.y1b2{bottom:848.320000pt;}
.y158{bottom:861.280000pt;}
.yca{bottom:862.546907pt;}
.y18a{bottom:863.680000pt;}
.y65{bottom:866.239867pt;}
.y50{bottom:866.399867pt;}
.y1a{bottom:866.559867pt;}
.y37{bottom:866.560000pt;}
.y176{bottom:868.160000pt;}
.y106{bottom:874.522400pt;}
.yc9{bottom:877.885307pt;}
.y83{bottom:878.400000pt;}
.y9c{bottom:879.680000pt;}
.yf{bottom:881.770667pt;}
.y15a{bottom:883.200000pt;}
.y114{bottom:885.120000pt;}
.y18b{bottom:885.920000pt;}
.y10e{bottom:890.619333pt;}
.ye1{bottom:891.376000pt;}
.y100{bottom:896.398400pt;}
.y61{bottom:903.039867pt;}
.y78{bottom:903.040000pt;}
.y19{bottom:903.359867pt;}
.y36{bottom:903.360000pt;}
.y107{bottom:905.590400pt;}
.ycc{bottom:906.291227pt;}
.yff{bottom:911.926400pt;}
.y81{bottom:915.840000pt;}
.y9a{bottom:917.120000pt;}
.y16c{bottom:920.960000pt;}
.ycb{bottom:921.629627pt;}
.ye{bottom:921.805333pt;}
.y1b1{bottom:924.159867pt;}
.y10f{bottom:936.135333pt;}
.ye2{bottom:936.136000pt;}
.y108{bottom:936.658400pt;}
.y189{bottom:937.920000pt;}
.y60{bottom:939.839867pt;}
.y18{bottom:940.159867pt;}
.y35{bottom:940.160000pt;}
.y157{bottom:957.760000pt;}
.y113{bottom:960.959867pt;}
.y47{bottom:976.640000pt;}
.y17{bottom:976.959867pt;}
.y34{bottom:976.960000pt;}
.y156{bottom:1012.640000pt;}
.y33{bottom:1013.440000pt;}
.y16{bottom:1013.759867pt;}
.h1f{height:18.676875pt;}
.h10{height:29.773125pt;}
.h1{height:32.625000pt;}
.h19{height:32.812500pt;}
.h14{height:34.945312pt;}
.h13{height:36.798667pt;}
.h12{height:36.800000pt;}
.h15{height:38.672812pt;}
.h5{height:40.911250pt;}
.hd{height:42.656250pt;}
.h17{height:42.866250pt;}
.h7{height:43.375000pt;}
.h9{height:44.437500pt;}
.h6{height:44.468750pt;}
.h8{height:44.469283pt;}
.hf{height:44.963635pt;}
.ha{height:46.593750pt;}
.h18{height:47.377313pt;}
.h1e{height:48.026250pt;}
.h2{height:48.937500pt;}
.h11{height:54.093125pt;}
.he{height:54.093658pt;}
.hc{height:54.114062pt;}
.hb{height:54.114596pt;}
.h1d{height:59.520000pt;}
.h1c{height:73.440000pt;}
.h1a{height:73.600000pt;}
.h1b{height:73.601333pt;}
.h3{height:97.875000pt;}
.h20{height:110.400000pt;}
.h16{height:302.240000pt;}
.h0{height:1122.666667pt;}
.h4{height:1122.720000pt;}
.w1e{width:47.200000pt;}
.w1f{width:56.801333pt;}
.w27{width:57.281333pt;}
.w24{width:57.600000pt;}
.w10{width:65.120000pt;}
.w23{width:66.080000pt;}
.wd{width:75.680000pt;}
.w28{width:76.480000pt;}
.w20{width:76.960000pt;}
.we{width:85.120000pt;}
.w16{width:85.121333pt;}
.w11{width:91.680000pt;}
.w26{width:94.080000pt;}
.w12{width:94.560000pt;}
.wf{width:95.360000pt;}
.w14{width:95.840000pt;}
.w15{width:99.040000pt;}
.w13{width:101.440000pt;}
.wc{width:113.280000pt;}
.w22{width:113.440000pt;}
.w1a{width:122.720000pt;}
.w1c{width:122.880000pt;}
.w6{width:130.720000pt;}
.w7{width:132.000000pt;}
.w5{width:134.240000pt;}
.w18{width:135.521333pt;}
.wa{width:140.000000pt;}
.w19{width:144.160000pt;}
.wb{width:151.518667pt;}
.w4{width:159.200000pt;}
.w17{width:164.160000pt;}
.w3{width:171.360000pt;}
.w21{width:236.640000pt;}
.w1d{width:245.440000pt;}
.w25{width:245.920000pt;}
.w9{width:256.000000pt;}
.w1b{width:320.478667pt;}
.w8{width:566.880000pt;}
.w2{width:793.280000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1f{left:4.640000pt;}
.x21{left:7.200000pt;}
.x3f{left:22.813467pt;}
.x3d{left:23.933467pt;}
.x32{left:27.933467pt;}
.x1{left:56.642800pt;}
.x9{left:113.440000pt;}
.x3{left:116.640000pt;}
.x67{left:119.040000pt;}
.x4d{left:120.640000pt;}
.x2e{left:122.060667pt;}
.x4c{left:126.720000pt;}
.x2c{left:132.458907pt;}
.x53{left:133.440000pt;}
.x46{left:136.160000pt;}
.x27{left:141.356507pt;}
.x58{left:143.200000pt;}
.x1e{left:145.440000pt;}
.x2a{left:148.740187pt;}
.x1d{left:151.200000pt;}
.x3c{left:155.509200pt;}
.xc{left:161.440000pt;}
.x1c{left:170.240000pt;}
.x41{left:175.200000pt;}
.x4e{left:178.560000pt;}
.x5a{left:182.240000pt;}
.x33{left:188.233200pt;}
.x26{left:190.253467pt;}
.x2b{left:191.740827pt;}
.x42{left:198.720000pt;}
.x5b{left:200.320000pt;}
.x31{left:203.274667pt;}
.x3e{left:204.693467pt;}
.x44{left:205.920000pt;}
.x2d{left:209.509467pt;}
.x28{left:218.048507pt;}
.x34{left:220.693200pt;}
.x2f{left:224.701787pt;}
.x14{left:226.720000pt;}
.x29{left:233.971227pt;}
.x15{left:237.120000pt;}
.x22{left:247.680000pt;}
.x35{left:253.153200pt;}
.x4{left:261.280000pt;}
.x4f{left:270.240000pt;}
.x54{left:277.600000pt;}
.x40{left:283.190267pt;}
.x20{left:284.800000pt;}
.x8{left:286.560000pt;}
.x47{left:287.680000pt;}
.x68{left:293.760000pt;}
.x5f{left:296.960000pt;}
.x6{left:300.800000pt;}
.x57{left:302.080000pt;}
.x36{left:318.061200pt;}
.x19{left:328.000000pt;}
.x7{left:329.120000pt;}
.x12{left:330.080000pt;}
.x1a{left:331.040000pt;}
.x10{left:333.600000pt;}
.x30{left:339.339200pt;}
.x18{left:340.800000pt;}
.xd{left:350.240000pt;}
.x4b{left:354.560000pt;}
.xa{left:356.480000pt;}
.x45{left:357.760000pt;}
.x1b{left:359.360000pt;}
.x13{left:360.640000pt;}
.x50{left:364.800000pt;}
.xb{left:366.880000pt;}
.xe{left:370.080000pt;}
.x11{left:371.840000pt;}
.x60{left:372.800000pt;}
.x23{left:378.400000pt;}
.x64{left:380.000000pt;}
.x5c{left:381.600000pt;}
.x37{left:382.981200pt;}
.xf{left:389.280000pt;}
.x2{left:392.960000pt;}
.x25{left:394.031200pt;}
.x5{left:396.640000pt;}
.x48{left:400.960000pt;}
.x55{left:413.120000pt;}
.x38{left:447.889200pt;}
.x43{left:454.720000pt;}
.x51{left:466.240000pt;}
.x49{left:476.640000pt;}
.x61{left:486.240000pt;}
.x65{left:493.440000pt;}
.x59{left:495.520000pt;}
.x5d{left:523.360000pt;}
.x62{left:533.440000pt;}
.x66{left:540.640000pt;}
.x56{left:557.280000pt;}
.x4a{left:561.760000pt;}
.x16{left:575.360000pt;}
.x39{left:577.717200pt;}
.x5e{left:580.160000pt;}
.x17{left:585.920000pt;}
.x63{left:599.520000pt;}
.x3a{left:606.817200pt;}
.x3b{left:639.277200pt;}
.x52{left:661.120000pt;}
.x24{left:681.440000pt;}
}


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;
}
