
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* 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("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #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("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -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(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_2f212535e344eb990731d5d3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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('chunks/assets/font_caf536618bde442350b01e62.woff')format("woff");}.ff2{font-family:ff2;line-height:0.732000;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('chunks/assets/font_84eeb7a0451b59816ef88c33.woff')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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('chunks/assets/font_acb3e1be59ec4228247dcc7b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ef98b9dad11e029a8334d54f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.935547;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('chunks/assets/font_a2e36397940b298ff786f636.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_832dcca36fe04028d2517c4d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_df810c4ab6aca329c3a5a8ba.woff')format("woff");}.ff8{font-family:ff8;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;}
.m1{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.231312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231312,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);}
.m3{transform:matrix(0.275482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275482,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.275482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275482,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.275489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275489,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.291517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291517,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.291961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291961,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.291964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291964,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.310392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310392,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.313124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313124,0.000000,0.000000,0.250000,0,0);}
.va{vertical-align:-59.108465px;}
.v6{vertical-align:-45.156000px;}
.v5{vertical-align:-43.835400px;}
.v9{vertical-align:-39.533584px;}
.v4{vertical-align:-25.879500px;}
.v3{vertical-align:-24.452400px;}
.v8{vertical-align:-21.856485px;}
.v2{vertical-align:-18.296700px;}
.v7{vertical-align:-9.915381px;}
.v1{vertical-align:-6.798263px;}
.ve{vertical-align:-4.857000px;}
.vb{vertical-align:-3.197970px;}
.vc{vertical-align:-1.431360px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:1.431360px;}
.lse{letter-spacing:-1.382760px;}
.lsc{letter-spacing:-0.841680px;}
.lsb{letter-spacing:-0.661320px;}
.lsf{letter-spacing:-0.601200px;}
.lsd{letter-spacing:-0.541080px;}
.ls5{letter-spacing:-0.451109px;}
.ls4{letter-spacing:-0.413516px;}
.ls29{letter-spacing:-0.358560px;}
.ls2a{letter-spacing:-0.298800px;}
.ls25{letter-spacing:-0.217106px;}
.ls2c{letter-spacing:-0.180000px;}
.ls26{letter-spacing:-0.162830px;}
.ls28{letter-spacing:-0.059760px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.108000px;}
.ls2b{letter-spacing:0.119520px;}
.ls8{letter-spacing:0.162000px;}
.ls23{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.240000px;}
.ls24{letter-spacing:0.271383px;}
.ls7{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.814538px;}
.ls2{letter-spacing:0.877195px;}
.ls1{letter-spacing:0.908524px;}
.ls6{letter-spacing:13.554000px;}
.ls16{letter-spacing:60.628320px;}
.ls17{letter-spacing:71.414640px;}
.ls19{letter-spacing:106.380720px;}
.ls18{letter-spacing:111.799440px;}
.ls10{letter-spacing:130.509360px;}
.ls1a{letter-spacing:140.273280px;}
.ls1d{letter-spacing:155.711520px;}
.ls12{letter-spacing:159.545520px;}
.ls11{letter-spacing:165.526560px;}
.ls1c{letter-spacing:170.843040px;}
.ls1b{letter-spacing:172.325520px;}
.ls14{letter-spacing:190.984320px;}
.ls15{letter-spacing:198.907920px;}
.ls13{letter-spacing:216.953280px;}
.ls1e{letter-spacing:545.859766px;}
.ls21{letter-spacing:575.820449px;}
.ls20{letter-spacing:605.835409px;}
.ls1f{letter-spacing:616.349971px;}
.ls22{letter-spacing:617.504878px;}
.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;}
}
.ws22{word-spacing:-18.414720px;}
.ws28{word-spacing:-16.713360px;}
.ws3f{word-spacing:-16.613280px;}
.ws32{word-spacing:-15.088895px;}
.ws1d{word-spacing:-15.012000px;}
.ws1a{word-spacing:-14.621688px;}
.ws2e{word-spacing:-14.211360px;}
.ws4{word-spacing:-10.450687px;}
.ws1{word-spacing:-9.617819px;}
.ws0{word-spacing:-8.709295px;}
.ws9{word-spacing:-6.388440px;}
.wsf{word-spacing:-6.383936px;}
.ws12{word-spacing:-6.382769px;}
.ws1f{word-spacing:-1.458000px;}
.ws20{word-spacing:-1.404000px;}
.ws21{word-spacing:-0.972000px;}
.ws16{word-spacing:-0.908524px;}
.ws14{word-spacing:-0.877195px;}
.ws1e{word-spacing:-0.702000px;}
.ws25{word-spacing:-0.540000px;}
.ws24{word-spacing:-0.324000px;}
.ws3b{word-spacing:-0.271383px;}
.ws27{word-spacing:-0.216000px;}
.ws18{word-spacing:-0.187962px;}
.ws23{word-spacing:-0.162000px;}
.ws6c{word-spacing:-0.119520px;}
.ws26{word-spacing:-0.108000px;}
.ws15{word-spacing:0.000000px;}
.ws69{word-spacing:0.059760px;}
.ws3c{word-spacing:0.162830px;}
.ws3a{word-spacing:0.217106px;}
.ws6b{word-spacing:0.298800px;}
.ws6a{word-spacing:0.358560px;}
.ws17{word-spacing:0.413516px;}
.ws1c{word-spacing:0.432000px;}
.ws19{word-spacing:0.451109px;}
.ws2b{word-spacing:0.541080px;}
.ws2d{word-spacing:0.601200px;}
.ws29{word-spacing:0.661320px;}
.ws2a{word-spacing:0.841680px;}
.ws2c{word-spacing:1.382760px;}
.ws2f{word-spacing:5.316480px;}
.wsb{word-spacing:35.482138px;}
.ws10{word-spacing:35.497467px;}
.wsa{word-spacing:35.503461px;}
.ws30{word-spacing:36.090720px;}
.wsc{word-spacing:41.431366px;}
.ws6{word-spacing:44.985600px;}
.ws5{word-spacing:45.006900px;}
.wsd{word-spacing:47.359271px;}
.ws7{word-spacing:49.416000px;}
.ws11{word-spacing:53.278180px;}
.wse{word-spacing:53.287177px;}
.ws2{word-spacing:53.446250px;}
.ws8{word-spacing:56.849700px;}
.ws33{word-spacing:122.068073px;}
.ws34{word-spacing:163.264013px;}
.ws35{word-spacing:285.929129px;}
.ws1b{word-spacing:289.862704px;}
.ws36{word-spacing:355.294624px;}
.ws49{word-spacing:386.718120px;}
.ws48{word-spacing:416.359080px;}
.ws50{word-spacing:423.317760px;}
.ws76{word-spacing:447.029520px;}
.ws85{word-spacing:452.961720px;}
.ws89{word-spacing:456.437760px;}
.ws78{word-spacing:463.104960px;}
.ws4d{word-spacing:463.164120px;}
.ws7c{word-spacing:466.467480px;}
.ws4e{word-spacing:466.524240px;}
.ws7a{word-spacing:466.587000px;}
.ws54{word-spacing:466.643760px;}
.ws7e{word-spacing:469.943520px;}
.ws55{word-spacing:470.003280px;}
.ws75{word-spacing:476.790000px;}
.ws38{word-spacing:480.510740px;}
.ws37{word-spacing:480.565016px;}
.ws83{word-spacing:482.602680px;}
.ws66{word-spacing:483.509040px;}
.ws63{word-spacing:509.910000px;}
.ws64{word-spacing:513.269520px;}
.ws39{word-spacing:630.639815px;}
.ws4c{word-spacing:732.024360px;}
.ws53{word-spacing:735.504000px;}
.ws74{word-spacing:735.805800px;}
.ws70{word-spacing:749.371320px;}
.ws72{word-spacing:765.446760px;}
.ws4f{word-spacing:768.611040px;}
.ws56{word-spacing:772.090080px;}
.ws41{word-spacing:778.159080px;}
.ws4a{word-spacing:778.743720px;}
.ws60{word-spacing:779.128800px;}
.ws6f{word-spacing:779.131800px;}
.ws51{word-spacing:782.222760px;}
.ws61{word-spacing:782.488320px;}
.ws67{word-spacing:785.595840px;}
.ws86{word-spacing:801.731040px;}
.ws40{word-spacing:807.800040px;}
.ws88{word-spacing:811.282680px;}
.ws4b{word-spacing:811.863720px;}
.ws80{word-spacing:811.983840px;}
.ws65{word-spacing:815.356320px;}
.ws82{word-spacing:815.465880px;}
.ws79{word-spacing:821.127120px;}
.ws7d{word-spacing:824.489640px;}
.ws77{word-spacing:825.489600px;}
.ws7b{word-spacing:828.852120px;}
.ws5b{word-spacing:829.088160px;}
.ws84{word-spacing:840.624840px;}
.ws52{word-spacing:848.463360px;}
.ws45{word-spacing:854.545920px;}
.ws46{word-spacing:857.905440px;}
.ws5a{word-spacing:858.848640px;}
.ws5e{word-spacing:862.208160px;}
.ws3{word-spacing:951.162905px;}
.ws3d{word-spacing:1026.924000px;}
.ws6d{word-spacing:1026.927600px;}
.ws5f{word-spacing:1047.989040px;}
.ws6e{word-spacing:1047.992040px;}
.ws13{word-spacing:1067.640000px;}
.ws62{word-spacing:1084.575120px;}
.ws68{word-spacing:1088.280240px;}
.ws59{word-spacing:1094.468760px;}
.ws44{word-spacing:1123.406160px;}
.ws73{word-spacing:1123.468920px;}
.ws5d{word-spacing:1127.589360px;}
.ws71{word-spacing:1127.831400px;}
.ws47{word-spacing:1160.052000px;}
.ws5c{word-spacing:1164.115680px;}
.ws3e{word-spacing:1165.762440px;}
.ws81{word-spacing:1169.946240px;}
.ws42{word-spacing:1170.124920px;}
.ws57{word-spacing:1174.248360px;}
.ws7f{word-spacing:1174.248960px;}
.ws87{word-spacing:1198.886040px;}
.ws43{word-spacing:1203.245520px;}
.ws58{word-spacing:1207.368960px;}
.ws31{word-spacing:1242.931680px;}
._7{margin-left:-165.446878px;}
._6{margin-left:-103.566738px;}
._5{margin-left:-96.332160px;}
._1c{margin-left:-32.119826px;}
._17{margin-left:-13.374266px;}
._1b{margin-left:-6.667308px;}
._1a{margin-left:-5.109746px;}
._18{margin-left:-3.787560px;}
._4{margin-left:-2.757600px;}
._1{margin-left:-1.691734px;}
._0{width:1.691734px;}
._19{width:6.913800px;}
._16{width:12.834266px;}
._12{width:15.744000px;}
._9{width:46.419077px;}
._11{width:47.904000px;}
._10{width:53.040000px;}
._2{width:58.418590px;}
._13{width:63.648000px;}
._c{width:77.253600px;}
._3{width:83.530313px;}
._14{width:95.856000px;}
._f{width:127.632000px;}
._15{width:143.712000px;}
._1d{width:152.562364px;}
._e{width:159.840000px;}
._1f{width:169.885758px;}
._b{width:173.061600px;}
._1e{width:178.570014px;}
._a{width:182.939734px;}
._d{width:202.656000px;}
._24{width:400.344202px;}
._22{width:525.234658px;}
._20{width:616.256516px;}
._21{width:646.217200px;}
._23{width:675.960776px;}
._8{width:1087.620000px;}
.fc14{color:rgb(65,65,65);}
.fc12{color:rgb(49,49,49);}
.fc11{color:rgb(57,57,57);}
.fc10{color:rgb(67,67,67);}
.fcf{color:rgb(68,68,68);}
.fce{color:rgb(62,62,62);}
.fcd{color:rgb(61,61,61);}
.fc13{color:rgb(58,58,58);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(59,59,59);}
.fc2{color:rgb(77,77,77);}
.fc15{color:rgb(64,64,64);}
.fc4{color:rgb(35,35,35);}
.fc5{color:rgb(45,45,45);}
.fc6{color:rgb(52,52,52);}
.fc7{color:rgb(51,51,51);}
.fc8{color:rgb(54,54,54);}
.fc9{color:rgb(55,55,55);}
.fca{color:rgb(60,60,60);}
.fcb{color:rgb(56,56,56);}
.fcc{color:rgb(66,66,66);}
.fc3{color:transparent;}
.fs1e{font-size:2.880000px;}
.fs3{font-size:19.479600px;}
.fs2{font-size:21.300000px;}
.fs9{font-size:21.319800px;}
.fs6{font-size:21.323400px;}
.fsa{font-size:22.959600px;}
.fs7{font-size:22.963800px;}
.fs4{font-size:22.980000px;}
.fsf{font-size:24.000000px;}
.fs1c{font-size:27.360000px;}
.fsb{font-size:27.879600px;}
.fs8{font-size:27.884400px;}
.fs5{font-size:27.900000px;}
.fsd{font-size:28.617000px;}
.fs0{font-size:31.328400px;}
.fse{font-size:34.340400px;}
.fs12{font-size:34.699200px;}
.fs11{font-size:35.465400px;}
.fs15{font-size:36.159600px;}
.fs1{font-size:37.592400px;}
.fs14{font-size:39.453000px;}
.fs13{font-size:41.008200px;}
.fs17{font-size:42.733800px;}
.fs1b{font-size:47.880000px;}
.fs10{font-size:48.000000px;}
.fs1d{font-size:51.120000px;}
.fs16{font-size:52.596000px;}
.fs18{font-size:54.000000px;}
.fs1f{font-size:54.276600px;}
.fs20{font-size:59.760000px;}
.fsc{font-size:60.000000px;}
.fs1a{font-size:60.120000px;}
.fs19{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y19e{bottom:0.000300px;}
.y18c{bottom:2.696100px;}
.y18d{bottom:2.883600px;}
.ye9{bottom:3.148050px;}
.yef{bottom:3.150000px;}
.yd9{bottom:3.150450px;}
.ybb{bottom:3.150750px;}
.yd7{bottom:3.150900px;}
.yda{bottom:3.151200px;}
.y101{bottom:3.151650px;}
.y153{bottom:3.151800px;}
.yff{bottom:3.152100px;}
.y1ea{bottom:3.779400px;}
.y1ec{bottom:3.779550px;}
.y1be{bottom:3.779700px;}
.y1b2{bottom:3.779850px;}
.y1b4{bottom:3.780000px;}
.y1b6{bottom:3.780150px;}
.y1b0{bottom:3.780300px;}
.y1b9{bottom:3.780450px;}
.y1e8{bottom:3.780750px;}
.y1e6{bottom:3.780900px;}
.y1da{bottom:3.781050px;}
.y1dc{bottom:3.781200px;}
.y1de{bottom:3.781350px;}
.y1e0{bottom:3.781500px;}
.y1d0{bottom:3.781650px;}
.y1d2{bottom:3.781800px;}
.y1d4{bottom:3.781950px;}
.y1d6{bottom:3.782100px;}
.y1d8{bottom:3.782250px;}
.y187{bottom:4.327350px;}
.y19d{bottom:4.336200px;}
.y15f{bottom:4.498350px;}
.yf1{bottom:4.498500px;}
.y169{bottom:4.499400px;}
.y141{bottom:4.499550px;}
.yc6{bottom:4.499850px;}
.ye1{bottom:4.500000px;}
.ya9{bottom:4.500150px;}
.yc4{bottom:4.500300px;}
.yb4{bottom:4.500450px;}
.yc7{bottom:4.500600px;}
.yb6{bottom:4.500750px;}
.yec{bottom:4.500900px;}
.ye3{bottom:4.501050px;}
.yd1{bottom:4.501200px;}
.y10a{bottom:4.501350px;}
.yf5{bottom:4.501500px;}
.ya7{bottom:4.501650px;}
.y16e{bottom:4.588050px;}
.yd3{bottom:4.588500px;}
.ydd{bottom:4.588650px;}
.ycb{bottom:4.588800px;}
.y150{bottom:4.588950px;}
.y11d{bottom:4.589100px;}
.yd4{bottom:4.589250px;}
.yde{bottom:4.589400px;}
.ycc{bottom:4.589550px;}
.y134{bottom:4.589700px;}
.yc1{bottom:4.589850px;}
.yb0{bottom:4.590000px;}
.ybe{bottom:4.590150px;}
.yb2{bottom:4.590300px;}
.yab{bottom:4.590450px;}
.yae{bottom:4.590600px;}
.ycf{bottom:4.590750px;}
.yc9{bottom:4.590900px;}
.y10e{bottom:4.591050px;}
.y11b{bottom:4.591200px;}
.ye5{bottom:4.591350px;}
.yf9{bottom:4.591500px;}
.y119{bottom:4.591650px;}
.yfd{bottom:4.591800px;}
.y110{bottom:4.592100px;}
.y106{bottom:4.592400px;}
.ybc{bottom:4.770150px;}
.y194{bottom:5.412000px;}
.y192{bottom:5.413500px;}
.y1a5{bottom:5.467800px;}
.y19a{bottom:6.304950px;}
.y196{bottom:8.460300px;}
.y18f{bottom:17.460300px;}
.y18a{bottom:17.461650px;}
.y16{bottom:55.920750px;}
.y15{bottom:67.198974px;}
.y13{bottom:88.376972px;}
.y14{bottom:99.545547px;}
.y12{bottom:101.354762px;}
.y11{bottom:112.632986px;}
.yb{bottom:117.582873px;}
.ya{bottom:128.861097px;}
.y180{bottom:144.190650px;}
.yd{bottom:153.273753px;}
.y9{bottom:153.281585px;}
.yc{bottom:164.442327px;}
.y10{bottom:164.551977px;}
.y8{bottom:164.559809px;}
.yf{bottom:182.479654px;}
.y7{bottom:182.487486px;}
.y5{bottom:188.980297px;}
.ye{bottom:193.757878px;}
.y6{bottom:193.765710px;}
.y4{bottom:200.258521px;}
.y16f{bottom:204.802500px;}
.y126{bottom:206.530500px;}
.y3{bottom:214.935876px;}
.y16d{bottom:224.619000px;}
.y125{bottom:225.070500px;}
.y2{bottom:226.214100px;}
.y17{bottom:227.074650px;}
.y16c{bottom:241.884000px;}
.y124{bottom:243.610500px;}
.y18{bottom:255.466310px;}
.y16b{bottom:261.697500px;}
.y123{bottom:262.150500px;}
.y16a{bottom:278.962500px;}
.y122{bottom:280.690500px;}
.y168{bottom:298.777500px;}
.y121{bottom:299.230500px;}
.y129{bottom:299.251500px;}
.y167{bottom:315.952500px;}
.y120{bottom:317.680500px;}
.y128{bottom:317.701500px;}
.y166{bottom:335.767500px;}
.y165{bottom:335.772000px;}
.y11f{bottom:336.220500px;}
.y127{bottom:336.241500px;}
.y1ef{bottom:339.340500px;}
.y1ee{bottom:357.160500px;}
.y12f{bottom:358.980180px;}
.y164{bottom:373.618500px;}
.y1ed{bottom:374.980500px;}
.y113{bottom:375.369000px;}
.y11e{bottom:375.717000px;}
.y163{bottom:392.658000px;}
.y1eb{bottom:392.800500px;}
.y112{bottom:393.909000px;}
.y11c{bottom:394.258500px;}
.y1e9{bottom:410.620500px;}
.y162{bottom:410.700000px;}
.y10f{bottom:412.447500px;}
.y11a{bottom:412.797000px;}
.y111{bottom:417.039600px;}
.ya4{bottom:427.180350px;}
.y1e7{bottom:428.440500px;}
.y161{bottom:429.738000px;}
.y10d{bottom:430.989000px;}
.y118{bottom:431.337000px;}
.ya3{bottom:443.380350px;}
.y1e5{bottom:446.304000px;}
.y160{bottom:447.778500px;}
.y10b{bottom:449.529000px;}
.y117{bottom:449.878500px;}
.y10c{bottom:454.029750px;}
.ya2{bottom:459.580350px;}
.y1e4{bottom:464.124000px;}
.y15e{bottom:466.819500px;}
.y109{bottom:468.067500px;}
.y116{bottom:468.417000px;}
.ya1{bottom:475.780350px;}
.y1e3{bottom:481.944000px;}
.y15d{bottom:484.768500px;}
.y107{bottom:486.519000px;}
.y115{bottom:486.868500px;}
.y108{bottom:491.109300px;}
.ya0{bottom:491.980350px;}
.y1e2{bottom:499.764000px;}
.y15c{bottom:503.809500px;}
.y105{bottom:505.057500px;}
.y114{bottom:505.407000px;}
.y9f{bottom:508.180350px;}
.y1e1{bottom:517.584000px;}
.y9e{bottom:524.380350px;}
.y1df{bottom:535.404000px;}
.y130{bottom:540.136770px;}
.y12e{bottom:540.317130px;}
.y9c{bottom:547.765050px;}
.y1dd{bottom:553.224000px;}
.y12d{bottom:561.193800px;}
.y1db{bottom:571.044000px;}
.y99{bottom:588.319050px;}
.y1d9{bottom:588.864000px;}
.y148{bottom:589.833000px;}
.y149{bottom:589.932000px;}
.yf3{bottom:590.463000px;}
.y104{bottom:590.619000px;}
.y98{bottom:604.519050px;}
.y1d7{bottom:606.684000px;}
.y15a{bottom:611.737290px;}
.y175{bottom:612.094950px;}
.y1d5{bottom:624.504000px;}
.y9b{bottom:639.308550px;}
.y1d3{bottom:642.324000px;}
.y146{bottom:645.222000px;}
.y147{bottom:645.552000px;}
.yf2{bottom:646.083000px;}
.y103{bottom:646.150500px;}
.y1d1{bottom:660.144000px;}
.y29{bottom:662.728950px;}
.y144{bottom:663.762000px;}
.y145{bottom:664.093500px;}
.y39{bottom:664.372500px;}
.yf0{bottom:664.624500px;}
.y102{bottom:664.690500px;}
.y4a{bottom:665.245650px;}
.y9a{bottom:669.913050px;}
.y27{bottom:670.211115px;}
.y25{bottom:670.211400px;}
.y28{bottom:670.280055px;}
.y26{bottom:670.343250px;}
.y37{bottom:671.765550px;}
.y4c{bottom:671.976600px;}
.y38{bottom:672.046857px;}
.y49{bottom:672.568321px;}
.y4b{bottom:672.568350px;}
.y48{bottom:672.637200px;}
.y1cf{bottom:677.964000px;}
.y21{bottom:678.933150px;}
.y33{bottom:680.320350px;}
.y44{bottom:681.190500px;}
.y142{bottom:682.302000px;}
.yee{bottom:683.163000px;}
.yfe{bottom:683.229000px;}
.y100{bottom:684.187500px;}
.y143{bottom:684.222000px;}
.y34{bottom:689.264750px;}
.y22{bottom:689.417775px;}
.y45{bottom:690.133264px;}
.y1ce{bottom:695.815500px;}
.y58{bottom:697.678650px;}
.y35{bottom:698.203409px;}
.y46{bottom:699.070288px;}
.y23{bottom:699.908145px;}
.y159{bottom:704.427300px;}
.y174{bottom:704.784960px;}
.y5a{bottom:706.658250px;}
.y36{bottom:707.147809px;}
.y47{bottom:708.013053px;}
.y24{bottom:710.392770px;}
.y2d{bottom:713.633850px;}
.y1cd{bottom:713.635500px;}
.y40{bottom:714.498000px;}
.y97{bottom:716.137050px;}
.y1c{bottom:718.196850px;}
.y13f{bottom:719.562000px;}
.y140{bottom:719.893500px;}
.yed{bottom:720.423000px;}
.yfc{bottom:720.489000px;}
.y3f{bottom:720.509089px;}
.y1cc{bottom:731.455500px;}
.y3e{bottom:732.698685px;}
.y2c{bottom:733.696444px;}
.y1b{bottom:735.605550px;}
.y13d{bottom:738.102000px;}
.y13e{bottom:738.432000px;}
.yeb{bottom:738.963000px;}
.yfb{bottom:739.030500px;}
.y2e{bottom:741.138741px;}
.y32{bottom:741.612300px;}
.y43{bottom:742.472100px;}
.y3d{bottom:743.731681px;}
.y1cb{bottom:749.275500px;}
.y1a{bottom:749.317425px;}
.y96{bottom:753.140550px;}
.y3c{bottom:753.901226px;}
.y5b{bottom:754.084050px;}
.y41{bottom:755.325909px;}
.ya5{bottom:756.471750px;}
.y13b{bottom:756.552000px;}
.y13c{bottom:756.883500px;}
.yea{bottom:757.413000px;}
.yfa{bottom:757.570500px;}
.y20{bottom:757.655250px;}
.y1d{bottom:759.137700px;}
.y2b{bottom:764.524750px;}
.y1ca{bottom:767.095500px;}
.y2f{bottom:768.643633px;}
.y59{bottom:774.395550px;}
.y9d{bottom:775.577550px;}
.y173{bottom:778.191480px;}
.y158{bottom:778.600350px;}
.y1c9{bottom:784.915500px;}
.y139{bottom:793.632000px;}
.ye8{bottom:794.494500px;}
.y13a{bottom:795.090000px;}
.y30{bottom:796.148524px;}
.y42{bottom:796.153817px;}
.y1e{bottom:800.237430px;}
.y3b{bottom:801.241842px;}
.y5c{bottom:801.509700px;}
.y61{bottom:802.092750px;}
.y1c8{bottom:802.735500px;}
.y137{bottom:812.352000px;}
.y138{bottom:812.682000px;}
.yf8{bottom:813.099000px;}
.ye7{bottom:813.213000px;}
.y1c7{bottom:820.555500px;}
.y2a{bottom:821.911350px;}
.y3a{bottom:822.758850px;}
.y31{bottom:823.653416px;}
.y135{bottom:830.892000px;}
.y136{bottom:831.223500px;}
.yf7{bottom:831.640500px;}
.ye6{bottom:831.754500px;}
.y19{bottom:833.542950px;}
.y4d{bottom:837.994650px;}
.y1c6{bottom:838.375500px;}
.y1f{bottom:841.337160px;}
.y94{bottom:846.305700px;}
.y5d{bottom:848.937750px;}
.y132{bottom:849.432000px;}
.y133{bottom:849.763500px;}
.yf6{bottom:850.180500px;}
.ye4{bottom:850.293000px;}
.y1c5{bottom:856.195500px;}
.y93{bottom:862.505700px;}
.y131{bottom:867.967500px;}
.yf4{bottom:868.719000px;}
.ye2{bottom:868.833000px;}
.y177{bottom:872.083890px;}
.y15b{bottom:872.282340px;}
.y1c4{bottom:874.015500px;}
.y92{bottom:878.705700px;}
.y1c3{bottom:891.835500px;}
.y91{bottom:894.905700px;}
.y5e{bottom:896.364300px;}
.y157{bottom:899.550000px;}
.yc3{bottom:899.989500px;}
.ye0{bottom:900.124500px;}
.y1c2{bottom:909.655500px;}
.y90{bottom:911.105700px;}
.yc2{bottom:918.529500px;}
.y172{bottom:921.292110px;}
.y8f{bottom:927.305700px;}
.y1c1{bottom:927.475500px;}
.y156{bottom:936.156000px;}
.yc0{bottom:936.979500px;}
.ydf{bottom:937.114500px;}
.y17e{bottom:938.891850px;}
.y1{bottom:940.543500px;}
.y8e{bottom:943.505700px;}
.y5f{bottom:943.790700px;}
.y1c0{bottom:945.340500px;}
.y155{bottom:954.697500px;}
.ybf{bottom:955.519500px;}
.ydc{bottom:955.656000px;}
.y17d{bottom:956.927850px;}
.y4e{bottom:960.225600px;}
.y1bf{bottom:963.160500px;}
.y1ac{bottom:963.212049px;}
.y8c{bottom:965.308200px;}
.y4f{bottom:969.203550px;}
.y154{bottom:973.236000px;}
.ybd{bottom:974.059500px;}
.ydb{bottom:974.194500px;}
.y17c{bottom:974.963850px;}
.y1bd{bottom:980.980500px;}
.y1ab{bottom:984.067832px;}
.y50{bottom:989.800050px;}
.y60{bottom:991.296450px;}
.yba{bottom:992.599500px;}
.yd8{bottom:992.734500px;}
.y17b{bottom:992.999850px;}
.y152{bottom:993.180000px;}
.yd6{bottom:993.340500px;}
.y53{bottom:995.879850px;}
.y1bc{bottom:998.800500px;}
.y57{bottom:1001.305050px;}
.y1aa{bottom:1004.923616px;}
.y89{bottom:1007.752200px;}
.y56{bottom:1008.505050px;}
.y51{bottom:1010.395800px;}
.y17a{bottom:1011.035850px;}
.yb9{bottom:1011.319500px;}
.y171{bottom:1014.072300px;}
.y55{bottom:1015.705050px;}
.y1bb{bottom:1016.620500px;}
.y88{bottom:1023.952200px;}
.y1a9{bottom:1025.779399px;}
.y64{bottom:1027.434817px;}
.y151{bottom:1029.036000px;}
.y179{bottom:1029.071850px;}
.yb8{bottom:1029.859500px;}
.yd5{bottom:1029.994500px;}
.y52{bottom:1030.992150px;}
.y65{bottom:1033.667862px;}
.y1ba{bottom:1034.440500px;}
.y6e{bottom:1035.548772px;}
.y73{bottom:1042.482037px;}
.y66{bottom:1043.385381px;}
.y1a8{bottom:1046.635183px;}
.y14f{bottom:1047.577500px;}
.yb7{bottom:1048.399500px;}
.y7d{bottom:1048.445480px;}
.yd2{bottom:1048.536000px;}
.y74{bottom:1050.924979px;}
.y1b8{bottom:1052.260500px;}
.y6f{bottom:1052.473307px;}
.y6d{bottom:1055.370690px;}
.y54{bottom:1059.493650px;}
.y8b{bottom:1060.024200px;}
.y67{bottom:1060.062985px;}
.y17f{bottom:1061.866500px;}
.y71{bottom:1063.275900px;}
.y84{bottom:1065.151650px;}
.y14e{bottom:1066.116000px;}
.yb5{bottom:1066.939500px;}
.yd0{bottom:1067.074500px;}
.y1a7{bottom:1067.490966px;}
.y19c{bottom:1067.800500px;}
.y199{bottom:1067.986500px;}
.y1b7{bottom:1070.080500px;}
.y7c{bottom:1072.319855px;}
.y19b{bottom:1072.322700px;}
.y75{bottom:1077.624797px;}
.y6c{bottom:1081.438464px;}
.y68{bottom:1083.150961px;}
.yb3{bottom:1085.479500px;}
.y186{bottom:1085.615040px;}
.y1b5{bottom:1087.900500px;}
.y1a6{bottom:1088.346750px;}
.y170{bottom:1088.921700px;}
.y8a{bottom:1090.628700px;}
.y198{bottom:1092.643050px;}
.y81{bottom:1093.548300px;}
.y63{bottom:1097.922300px;}
.y14d{bottom:1103.106000px;}
.yb1{bottom:1103.929500px;}
.yce{bottom:1104.064500px;}
.y7b{bottom:1104.556139px;}
.y1a4{bottom:1104.954000px;}
.y1b3{bottom:1105.720500px;}
.y82{bottom:1107.906750px;}
.y185{bottom:1108.120080px;}
.y195{bottom:1109.026500px;}
.y1a3{bottom:1109.212792px;}
.y72{bottom:1109.562000px;}
.y69{bottom:1112.862100px;}
.y197{bottom:1115.330550px;}
.y14c{bottom:1121.646000px;}
.y85{bottom:1121.667450px;}
.yaf{bottom:1122.469500px;}
.ycd{bottom:1122.604500px;}
.y1b1{bottom:1123.540500px;}
.y7e{bottom:1125.881263px;}
.y1a2{bottom:1130.068575px;}
.y193{bottom:1130.086500px;}
.y184{bottom:1130.625120px;}
.y7a{bottom:1133.257821px;}
.y70{bottom:1135.274273px;}
.y80{bottom:1136.154000px;}
.y6b{bottom:1136.263200px;}
.y87{bottom:1136.852700px;}
.y14b{bottom:1140.187500px;}
.yac{bottom:1140.264000px;}
.yad{bottom:1141.009500px;}
.yca{bottom:1141.146000px;}
.y1af{bottom:1141.360500px;}
.y6a{bottom:1146.837953px;}
.y191{bottom:1149.526500px;}
.y83{bottom:1150.352100px;}
.y1a1{bottom:1150.924359px;}
.y183{bottom:1153.130160px;}
.y76{bottom:1154.528557px;}
.y79{bottom:1154.817983px;}
.y14a{bottom:1158.726000px;}
.yaa{bottom:1159.549500px;}
.yc8{bottom:1159.684500px;}
.y18e{bottom:1160.842500px;}
.y1f2{bottom:1163.629500px;}
.y1f3{bottom:1166.552550px;}
.y78{bottom:1168.052396px;}
.y189{bottom:1168.966500px;}
.y7f{bottom:1169.592750px;}
.y1a0{bottom:1171.820850px;}
.y77{bottom:1173.150900px;}
.y86{bottom:1173.856200px;}
.y95{bottom:1175.569350px;}
.y182{bottom:1175.635200px;}
.y62{bottom:1177.221750px;}
.ya6{bottom:1177.464000px;}
.ya8{bottom:1178.089500px;}
.yc5{bottom:1178.224500px;}
.y190{bottom:1178.302800px;}
.y18b{bottom:1178.915100px;}
.y188{bottom:1178.916450px;}
.y19f{bottom:1179.247500px;}
.y176{bottom:1182.393270px;}
.y181{bottom:1195.252500px;}
.y8d{bottom:1196.293200px;}
.y1ae{bottom:1203.200700px;}
.y1f1{bottom:1203.201450px;}
.y12a{bottom:1204.026900px;}
.y12c{bottom:1205.048940px;}
.y178{bottom:1221.106950px;}
.y1ad{bottom:1221.200700px;}
.y1f0{bottom:1221.201450px;}
.y12b{bottom:1223.084940px;}
.h33{height:1.919531px;}
.h5{height:14.191193px;}
.h4{height:15.517383px;}
.hb{height:15.531807px;}
.h8{height:15.534430px;}
.h37{height:16.380000px;}
.h3b{height:16.381500px;}
.h3a{height:16.416000px;}
.hc{height:16.726427px;}
.h9{height:16.729487px;}
.h6{height:16.741289px;}
.h1d{height:17.010000px;}
.h11{height:17.040000px;}
.h22{height:17.097000px;}
.h20{height:17.098500px;}
.h23{height:17.100000px;}
.h26{height:17.191500px;}
.h25{height:17.193000px;}
.h21{height:17.280000px;}
.h2a{height:18.235547px;}
.h2e{height:18.720000px;}
.h31{height:18.900000px;}
.h35{height:19.240500px;}
.hd{height:20.310724px;}
.ha{height:20.314221px;}
.hf{height:20.318070px;}
.h7{height:20.325586px;}
.h30{height:21.060000px;}
.h2{height:22.823229px;}
.h10{height:24.381684px;}
.h14{height:25.278909px;}
.h13{height:25.837098px;}
.h17{height:26.342834px;}
.h3{height:27.386651px;}
.h16{height:28.742127px;}
.h15{height:29.875114px;}
.h2d{height:30.778500px;}
.h2c{height:30.780000px;}
.h19{height:31.132241px;}
.h24{height:31.912207px;}
.h12{height:34.945312px;}
.h2b{height:37.216758px;}
.h2f{height:37.241719px;}
.h18{height:38.317008px;}
.h1b{height:39.313477px;}
.h1a{height:39.339844px;}
.h34{height:39.541351px;}
.h38{height:43.506914px;}
.h39{height:43.536094px;}
.he{height:43.560000px;}
.h27{height:43.681641px;}
.h36{height:43.710938px;}
.h1e{height:43.769004px;}
.h1f{height:43.798359px;}
.h29{height:44.149219px;}
.h1c{height:48.224531px;}
.h32{height:131.760000px;}
.h28{height:159.840000px;}
.h1{height:291.747000px;}
.h0{height:1261.500000px;}
.w11{width:66.420000px;}
.w12{width:81.900000px;}
.w1b{width:84.021000px;}
.w13{width:88.741500px;}
.w4{width:90.450000px;}
.w1c{width:92.158500px;}
.w15{width:92.160000px;}
.w19{width:94.500000px;}
.w14{width:98.100000px;}
.w17{width:98.280000px;}
.wd{width:98.820000px;}
.w1a{width:104.359500px;}
.w18{width:105.300000px;}
.w16{width:107.100000px;}
.wb{width:122.691000px;}
.w2{width:123.660000px;}
.w6{width:123.771000px;}
.w10{width:223.830000px;}
.we{width:236.878500px;}
.wf{width:236.880000px;}
.w5{width:246.645000px;}
.wa{width:246.651000px;}
.w8{width:246.868500px;}
.w9{width:246.870000px;}
.w3{width:269.010000px;}
.wc{width:276.217500px;}
.w7{width:276.639000px;}
.w1{width:327.645000px;}
.w21{width:559.185000px;}
.w20{width:632.085000px;}
.w1f{width:632.086500px;}
.w1e{width:829.305000px;}
.w1d{width:850.680000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x73{left:2.879100px;}
.xa4{left:3.965850px;}
.xa8{left:12.236100px;}
.xa0{left:13.319100px;}
.x1b{left:15.652200px;}
.x98{left:17.857200px;}
.xaa{left:19.260750px;}
.xab{left:20.341650px;}
.x9f{left:21.601650px;}
.x99{left:22.725600px;}
.x33{left:24.283095px;}
.xae{left:26.725500px;}
.x9c{left:28.519800px;}
.x12{left:31.186334px;}
.x91{left:34.286850px;}
.x11{left:36.731461px;}
.x72{left:38.067000px;}
.x92{left:39.742740px;}
.x45{left:40.749000px;}
.xa5{left:43.372800px;}
.x6f{left:45.233700px;}
.x6a{left:48.447600px;}
.x60{left:49.854659px;}
.xa3{left:52.009950px;}
.x61{left:54.283258px;}
.x93{left:56.519250px;}
.x8e{left:58.770900px;}
.x32{left:60.089400px;}
.x2e{left:63.471750px;}
.x2f{left:65.214900px;}
.x31{left:66.254012px;}
.x30{left:68.045188px;}
.x6b{left:69.656100px;}
.x2d{left:72.269227px;}
.x5d{left:73.368362px;}
.x2c{left:75.461195px;}
.x75{left:76.918500px;}
.x9{left:78.586203px;}
.x6c{left:81.131100px;}
.x14{left:82.204633px;}
.x8{left:84.131330px;}
.x13{left:87.749760px;}
.x1c{left:90.883990px;}
.x4f{left:93.043950px;}
.x5f{left:94.574634px;}
.x3{left:95.777663px;}
.x2{left:98.714700px;}
.x6d{left:101.840100px;}
.x50{left:103.333050px;}
.x2a{left:105.052800px;}
.x9d{left:108.618150px;}
.xb{left:113.392055px;}
.xa{left:116.924333px;}
.x15{left:120.472274px;}
.x76{left:122.310300px;}
.x81{left:123.773550px;}
.x2b{left:128.748428px;}
.x6e{left:133.875600px;}
.x5c{left:135.150288px;}
.x70{left:145.214700px;}
.x5{left:148.503360px;}
.xc{left:150.751172px;}
.x4{left:154.236457px;}
.x1a{left:157.251815px;}
.x59{left:159.569850px;}
.x74{left:161.967000px;}
.x5b{left:163.117843px;}
.x89{left:164.998500px;}
.x94{left:166.446000px;}
.x8a{left:167.877750px;}
.x46{left:170.055150px;}
.x16{left:174.270969px;}
.x5a{left:175.765702px;}
.x7c{left:177.519600px;}
.x96{left:181.708950px;}
.xe{left:186.293242px;}
.x88{left:187.739100px;}
.x95{left:190.529400px;}
.xd{left:191.579910px;}
.x97{left:195.228000px;}
.x8f{left:196.559550px;}
.x7f{left:201.385050px;}
.x7{left:202.490025px;}
.x90{left:204.750900px;}
.x6{left:208.035152px;}
.x83{left:209.687850px;}
.x17{left:210.792051px;}
.x84{left:212.947050px;}
.x10{left:217.042067px;}
.xf{left:222.132932px;}
.x7e{left:223.436550px;}
.x79{left:227.502900px;}
.x7d{left:229.486350px;}
.x86{left:231.764550px;}
.x7a{left:238.312050px;}
.x8c{left:245.362950px;}
.x82{left:247.003200px;}
.x80{left:256.357800px;}
.x85{left:258.461250px;}
.x19{left:265.099832px;}
.x18{left:269.971399px;}
.x8d{left:274.644900px;}
.x5e{left:282.158250px;}
.x28{left:297.723465px;}
.x27{left:311.919360px;}
.x29{left:320.940000px;}
.x26{left:340.540950px;}
.xac{left:348.579000px;}
.xa9{left:353.248500px;}
.x9e{left:355.828500px;}
.x25{left:357.454050px;}
.x22{left:362.176800px;}
.x24{left:364.500615px;}
.x21{left:365.770050px;}
.x23{left:367.533975px;}
.x20{left:379.601100px;}
.x71{left:395.217750px;}
.x1d{left:402.378000px;}
.x1e{left:428.055150px;}
.xa7{left:448.708500px;}
.xa6{left:451.449000px;}
.x1f{left:452.630025px;}
.x56{left:457.192955px;}
.x57{left:460.056786px;}
.x7b{left:461.325000px;}
.x77{left:462.915000px;}
.x55{left:465.651453px;}
.xad{left:469.410600px;}
.x54{left:480.768579px;}
.x58{left:489.670395px;}
.x67{left:491.714608px;}
.x53{left:502.065552px;}
.x52{left:524.187095px;}
.x1{left:548.547000px;}
.x78{left:554.895000px;}
.x8b{left:557.058000px;}
.x87{left:558.198000px;}
.x62{left:560.282250px;}
.x51{left:579.123000px;}
.x63{left:597.309680px;}
.x42{left:603.816584px;}
.x66{left:605.599269px;}
.x64{left:611.104568px;}
.x65{left:614.865166px;}
.x43{left:623.043450px;}
.x44{left:639.186000px;}
.xa1{left:655.708500px;}
.x41{left:659.728950px;}
.x3d{left:663.112800px;}
.x3e{left:664.854450px;}
.x40{left:665.893372px;}
.x3f{left:667.684221px;}
.x3c{left:671.908262px;}
.x3b{left:675.099647px;}
.x3a{left:684.673800px;}
.x68{left:685.716750px;}
.x34{left:704.685000px;}
.x4b{left:708.691350px;}
.x4a{left:722.932650px;}
.x69{left:724.259700px;}
.x35{left:726.894902px;}
.x49{left:728.003850px;}
.x48{left:732.559500px;}
.x4d{left:738.105450px;}
.x47{left:743.374500px;}
.x36{left:750.581199px;}
.xa2{left:761.908500px;}
.x37{left:772.791101px;}
.x38{left:794.995673px;}
.x39{left:840.897202px;}
.x4c{left:849.880350px;}
.x4e{left:866.241150px;}
.x9a{left:873.332550px;}
.x9b{left:876.566850px;}
@media print{
.va{vertical-align:-52.540858pt;}
.v6{vertical-align:-40.138667pt;}
.v5{vertical-align:-38.964800pt;}
.v9{vertical-align:-35.140963pt;}
.v4{vertical-align:-23.004000pt;}
.v3{vertical-align:-21.735467pt;}
.v8{vertical-align:-19.427987pt;}
.v2{vertical-align:-16.263733pt;}
.v7{vertical-align:-8.813672pt;}
.v1{vertical-align:-6.042900pt;}
.ve{vertical-align:-4.317333pt;}
.vb{vertical-align:-2.842640pt;}
.vc{vertical-align:-1.272320pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:1.272320pt;}
.lse{letter-spacing:-1.229120pt;}
.lsc{letter-spacing:-0.748160pt;}
.lsb{letter-spacing:-0.587840pt;}
.lsf{letter-spacing:-0.534400pt;}
.lsd{letter-spacing:-0.480960pt;}
.ls5{letter-spacing:-0.400986pt;}
.ls4{letter-spacing:-0.367570pt;}
.ls29{letter-spacing:-0.318720pt;}
.ls2a{letter-spacing:-0.265600pt;}
.ls25{letter-spacing:-0.192983pt;}
.ls2c{letter-spacing:-0.160000pt;}
.ls26{letter-spacing:-0.144738pt;}
.ls28{letter-spacing:-0.053120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.096000pt;}
.ls2b{letter-spacing:0.106240pt;}
.ls8{letter-spacing:0.144000pt;}
.ls23{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.213333pt;}
.ls24{letter-spacing:0.241229pt;}
.ls7{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.724034pt;}
.ls2{letter-spacing:0.779729pt;}
.ls1{letter-spacing:0.807577pt;}
.ls6{letter-spacing:12.048000pt;}
.ls16{letter-spacing:53.891840pt;}
.ls17{letter-spacing:63.479680pt;}
.ls19{letter-spacing:94.560640pt;}
.ls18{letter-spacing:99.377280pt;}
.ls10{letter-spacing:116.008320pt;}
.ls1a{letter-spacing:124.687360pt;}
.ls1d{letter-spacing:138.410240pt;}
.ls12{letter-spacing:141.818240pt;}
.ls11{letter-spacing:147.134720pt;}
.ls1c{letter-spacing:151.860480pt;}
.ls1b{letter-spacing:153.178240pt;}
.ls14{letter-spacing:169.763840pt;}
.ls15{letter-spacing:176.807040pt;}
.ls13{letter-spacing:192.847360pt;}
.ls1e{letter-spacing:485.208681pt;}
.ls21{letter-spacing:511.840399pt;}
.ls20{letter-spacing:538.520364pt;}
.ls1f{letter-spacing:547.866641pt;}
.ls22{letter-spacing:548.893225pt;}
.ws22{word-spacing:-16.368640pt;}
.ws28{word-spacing:-14.856320pt;}
.ws3f{word-spacing:-14.767360pt;}
.ws32{word-spacing:-13.412351pt;}
.ws1d{word-spacing:-13.344000pt;}
.ws1a{word-spacing:-12.997056pt;}
.ws2e{word-spacing:-12.632320pt;}
.ws4{word-spacing:-9.289500pt;}
.ws1{word-spacing:-8.549172pt;}
.ws0{word-spacing:-7.741596pt;}
.ws9{word-spacing:-5.678613pt;}
.wsf{word-spacing:-5.674610pt;}
.ws12{word-spacing:-5.673572pt;}
.ws1f{word-spacing:-1.296000pt;}
.ws20{word-spacing:-1.248000pt;}
.ws21{word-spacing:-0.864000pt;}
.ws16{word-spacing:-0.807577pt;}
.ws14{word-spacing:-0.779729pt;}
.ws1e{word-spacing:-0.624000pt;}
.ws25{word-spacing:-0.480000pt;}
.ws24{word-spacing:-0.288000pt;}
.ws3b{word-spacing:-0.241229pt;}
.ws27{word-spacing:-0.192000pt;}
.ws18{word-spacing:-0.167077pt;}
.ws23{word-spacing:-0.144000pt;}
.ws6c{word-spacing:-0.106240pt;}
.ws26{word-spacing:-0.096000pt;}
.ws15{word-spacing:0.000000pt;}
.ws69{word-spacing:0.053120pt;}
.ws3c{word-spacing:0.144738pt;}
.ws3a{word-spacing:0.192983pt;}
.ws6b{word-spacing:0.265600pt;}
.ws6a{word-spacing:0.318720pt;}
.ws17{word-spacing:0.367570pt;}
.ws1c{word-spacing:0.384000pt;}
.ws19{word-spacing:0.400986pt;}
.ws2b{word-spacing:0.480960pt;}
.ws2d{word-spacing:0.534400pt;}
.ws29{word-spacing:0.587840pt;}
.ws2a{word-spacing:0.748160pt;}
.ws2c{word-spacing:1.229120pt;}
.ws2f{word-spacing:4.725760pt;}
.wsb{word-spacing:31.539678pt;}
.ws10{word-spacing:31.553304pt;}
.wsa{word-spacing:31.558632pt;}
.ws30{word-spacing:32.080640pt;}
.wsc{word-spacing:36.827881pt;}
.ws6{word-spacing:39.987200pt;}
.ws5{word-spacing:40.006133pt;}
.wsd{word-spacing:42.097130pt;}
.ws7{word-spacing:43.925333pt;}
.ws11{word-spacing:47.358382pt;}
.wse{word-spacing:47.366379pt;}
.ws2{word-spacing:47.507778pt;}
.ws8{word-spacing:50.533067pt;}
.ws33{word-spacing:108.504954pt;}
.ws34{word-spacing:145.123567pt;}
.ws35{word-spacing:254.159226pt;}
.ws1b{word-spacing:257.655737pt;}
.ws36{word-spacing:315.817443pt;}
.ws49{word-spacing:343.749440pt;}
.ws48{word-spacing:370.096960pt;}
.ws50{word-spacing:376.282453pt;}
.ws76{word-spacing:397.359573pt;}
.ws85{word-spacing:402.632640pt;}
.ws89{word-spacing:405.722453pt;}
.ws78{word-spacing:411.648853pt;}
.ws4d{word-spacing:411.701440pt;}
.ws7c{word-spacing:414.637760pt;}
.ws4e{word-spacing:414.688213pt;}
.ws7a{word-spacing:414.744000pt;}
.ws54{word-spacing:414.794453pt;}
.ws7e{word-spacing:417.727573pt;}
.ws55{word-spacing:417.780693pt;}
.ws75{word-spacing:423.813333pt;}
.ws38{word-spacing:427.120658pt;}
.ws37{word-spacing:427.168903pt;}
.ws83{word-spacing:428.980160pt;}
.ws66{word-spacing:429.785813pt;}
.ws63{word-spacing:453.253333pt;}
.ws64{word-spacing:456.239573pt;}
.ws39{word-spacing:560.568725pt;}
.ws4c{word-spacing:650.688320pt;}
.ws53{word-spacing:653.781333pt;}
.ws74{word-spacing:654.049600pt;}
.ws70{word-spacing:666.107840pt;}
.ws72{word-spacing:680.397120pt;}
.ws4f{word-spacing:683.209813pt;}
.ws56{word-spacing:686.302293pt;}
.ws41{word-spacing:691.696960pt;}
.ws4a{word-spacing:692.216640pt;}
.ws60{word-spacing:692.558933pt;}
.ws6f{word-spacing:692.561600pt;}
.ws51{word-spacing:695.309120pt;}
.ws61{word-spacing:695.545173pt;}
.ws67{word-spacing:698.307413pt;}
.ws86{word-spacing:712.649813pt;}
.ws40{word-spacing:718.044480pt;}
.ws88{word-spacing:721.140160pt;}
.ws4b{word-spacing:721.656640pt;}
.ws80{word-spacing:721.763413pt;}
.ws65{word-spacing:724.761173pt;}
.ws82{word-spacing:724.858560pt;}
.ws79{word-spacing:729.890773pt;}
.ws7d{word-spacing:732.879680pt;}
.ws77{word-spacing:733.768533pt;}
.ws7b{word-spacing:736.757440pt;}
.ws5b{word-spacing:736.967253pt;}
.ws84{word-spacing:747.222080pt;}
.ws52{word-spacing:754.189653pt;}
.ws45{word-spacing:759.596373pt;}
.ws46{word-spacing:762.582613pt;}
.ws5a{word-spacing:763.421013pt;}
.ws5e{word-spacing:766.407253pt;}
.ws3{word-spacing:845.478138pt;}
.ws3d{word-spacing:912.821333pt;}
.ws6d{word-spacing:912.824533pt;}
.ws5f{word-spacing:931.545813pt;}
.ws6e{word-spacing:931.548480pt;}
.ws13{word-spacing:949.013333pt;}
.ws62{word-spacing:964.066773pt;}
.ws68{word-spacing:967.360213pt;}
.ws59{word-spacing:972.861120pt;}
.ws44{word-spacing:998.583253pt;}
.ws73{word-spacing:998.639040pt;}
.ws5d{word-spacing:1002.301653pt;}
.ws71{word-spacing:1002.516800pt;}
.ws47{word-spacing:1031.157333pt;}
.ws5c{word-spacing:1034.769493pt;}
.ws3e{word-spacing:1036.233280pt;}
.ws81{word-spacing:1039.952213pt;}
.ws42{word-spacing:1040.111040pt;}
.ws57{word-spacing:1043.776320pt;}
.ws7f{word-spacing:1043.776853pt;}
.ws87{word-spacing:1065.676480pt;}
.ws43{word-spacing:1069.551573pt;}
.ws58{word-spacing:1073.216853pt;}
.ws31{word-spacing:1104.828160pt;}
._7{margin-left:-147.063891pt;}
._6{margin-left:-92.059323pt;}
._5{margin-left:-85.628587pt;}
._1c{margin-left:-28.550957pt;}
._17{margin-left:-11.888237pt;}
._1b{margin-left:-5.926496pt;}
._1a{margin-left:-4.541997pt;}
._18{margin-left:-3.366720pt;}
._4{margin-left:-2.451200pt;}
._1{margin-left:-1.503763pt;}
._0{width:1.503763pt;}
._19{width:6.145600pt;}
._16{width:11.408237pt;}
._12{width:13.994667pt;}
._9{width:41.261402pt;}
._11{width:42.581333pt;}
._10{width:47.146667pt;}
._2{width:51.927635pt;}
._13{width:56.576000pt;}
._c{width:68.669867pt;}
._3{width:74.249167pt;}
._14{width:85.205333pt;}
._f{width:113.450667pt;}
._15{width:127.744000pt;}
._1d{width:135.610990pt;}
._e{width:142.080000pt;}
._1f{width:151.009563pt;}
._b{width:153.832533pt;}
._1e{width:158.728901pt;}
._a{width:162.613097pt;}
._d{width:180.138667pt;}
._24{width:355.861513pt;}
._22{width:466.875252pt;}
._20{width:547.783570pt;}
._21{width:574.415289pt;}
._23{width:600.854023pt;}
._8{width:966.773333pt;}
.fs1e{font-size:2.560000pt;}
.fs3{font-size:17.315200pt;}
.fs2{font-size:18.933333pt;}
.fs9{font-size:18.950933pt;}
.fs6{font-size:18.954133pt;}
.fsa{font-size:20.408533pt;}
.fs7{font-size:20.412267pt;}
.fs4{font-size:20.426667pt;}
.fsf{font-size:21.333333pt;}
.fs1c{font-size:24.320000pt;}
.fsb{font-size:24.781867pt;}
.fs8{font-size:24.786133pt;}
.fs5{font-size:24.800000pt;}
.fsd{font-size:25.437333pt;}
.fs0{font-size:27.847467pt;}
.fse{font-size:30.524800pt;}
.fs12{font-size:30.843733pt;}
.fs11{font-size:31.524800pt;}
.fs15{font-size:32.141867pt;}
.fs1{font-size:33.415467pt;}
.fs14{font-size:35.069333pt;}
.fs13{font-size:36.451733pt;}
.fs17{font-size:37.985600pt;}
.fs1b{font-size:42.560000pt;}
.fs10{font-size:42.666667pt;}
.fs1d{font-size:45.440000pt;}
.fs16{font-size:46.752000pt;}
.fs18{font-size:48.000000pt;}
.fs1f{font-size:48.245867pt;}
.fs20{font-size:53.120000pt;}
.fsc{font-size:53.333333pt;}
.fs1a{font-size:53.440000pt;}
.fs19{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y19e{bottom:0.000267pt;}
.y18c{bottom:2.396533pt;}
.y18d{bottom:2.563200pt;}
.ye9{bottom:2.798267pt;}
.yef{bottom:2.800000pt;}
.yd9{bottom:2.800400pt;}
.ybb{bottom:2.800667pt;}
.yd7{bottom:2.800800pt;}
.yda{bottom:2.801067pt;}
.y101{bottom:2.801467pt;}
.y153{bottom:2.801600pt;}
.yff{bottom:2.801867pt;}
.y1ea{bottom:3.359467pt;}
.y1ec{bottom:3.359600pt;}
.y1be{bottom:3.359733pt;}
.y1b2{bottom:3.359867pt;}
.y1b4{bottom:3.360000pt;}
.y1b6{bottom:3.360133pt;}
.y1b0{bottom:3.360267pt;}
.y1b9{bottom:3.360400pt;}
.y1e8{bottom:3.360667pt;}
.y1e6{bottom:3.360800pt;}
.y1da{bottom:3.360933pt;}
.y1dc{bottom:3.361067pt;}
.y1de{bottom:3.361200pt;}
.y1e0{bottom:3.361333pt;}
.y1d0{bottom:3.361467pt;}
.y1d2{bottom:3.361600pt;}
.y1d4{bottom:3.361733pt;}
.y1d6{bottom:3.361867pt;}
.y1d8{bottom:3.362000pt;}
.y187{bottom:3.846533pt;}
.y19d{bottom:3.854400pt;}
.y15f{bottom:3.998533pt;}
.yf1{bottom:3.998667pt;}
.y169{bottom:3.999467pt;}
.y141{bottom:3.999600pt;}
.yc6{bottom:3.999867pt;}
.ye1{bottom:4.000000pt;}
.ya9{bottom:4.000133pt;}
.yc4{bottom:4.000267pt;}
.yb4{bottom:4.000400pt;}
.yc7{bottom:4.000533pt;}
.yb6{bottom:4.000667pt;}
.yec{bottom:4.000800pt;}
.ye3{bottom:4.000933pt;}
.yd1{bottom:4.001067pt;}
.y10a{bottom:4.001200pt;}
.yf5{bottom:4.001333pt;}
.ya7{bottom:4.001467pt;}
.y16e{bottom:4.078267pt;}
.yd3{bottom:4.078667pt;}
.ydd{bottom:4.078800pt;}
.ycb{bottom:4.078933pt;}
.y150{bottom:4.079067pt;}
.y11d{bottom:4.079200pt;}
.yd4{bottom:4.079333pt;}
.yde{bottom:4.079467pt;}
.ycc{bottom:4.079600pt;}
.y134{bottom:4.079733pt;}
.yc1{bottom:4.079867pt;}
.yb0{bottom:4.080000pt;}
.ybe{bottom:4.080133pt;}
.yb2{bottom:4.080267pt;}
.yab{bottom:4.080400pt;}
.yae{bottom:4.080533pt;}
.ycf{bottom:4.080667pt;}
.yc9{bottom:4.080800pt;}
.y10e{bottom:4.080933pt;}
.y11b{bottom:4.081067pt;}
.ye5{bottom:4.081200pt;}
.yf9{bottom:4.081333pt;}
.y119{bottom:4.081467pt;}
.yfd{bottom:4.081600pt;}
.y110{bottom:4.081867pt;}
.y106{bottom:4.082133pt;}
.ybc{bottom:4.240133pt;}
.y194{bottom:4.810667pt;}
.y192{bottom:4.812000pt;}
.y1a5{bottom:4.860267pt;}
.y19a{bottom:5.604400pt;}
.y196{bottom:7.520267pt;}
.y18f{bottom:15.520267pt;}
.y18a{bottom:15.521467pt;}
.y16{bottom:49.707333pt;}
.y15{bottom:59.732421pt;}
.y13{bottom:78.557309pt;}
.y14{bottom:88.484930pt;}
.y12{bottom:90.093122pt;}
.y11{bottom:100.118210pt;}
.yb{bottom:104.518109pt;}
.ya{bottom:114.543197pt;}
.y180{bottom:128.169467pt;}
.yd{bottom:136.243336pt;}
.y9{bottom:136.250298pt;}
.yc{bottom:146.170958pt;}
.y10{bottom:146.268424pt;}
.y8{bottom:146.275386pt;}
.yf{bottom:162.204137pt;}
.y7{bottom:162.211098pt;}
.y5{bottom:167.982486pt;}
.ye{bottom:172.229225pt;}
.y6{bottom:172.236186pt;}
.y4{bottom:178.007574pt;}
.y16f{bottom:182.046667pt;}
.y126{bottom:183.582667pt;}
.y3{bottom:191.054112pt;}
.y16d{bottom:199.661333pt;}
.y125{bottom:200.062667pt;}
.y2{bottom:201.079200pt;}
.y17{bottom:201.844133pt;}
.y16c{bottom:215.008000pt;}
.y124{bottom:216.542667pt;}
.y18{bottom:227.081165pt;}
.y16b{bottom:232.620000pt;}
.y123{bottom:233.022667pt;}
.y16a{bottom:247.966667pt;}
.y122{bottom:249.502667pt;}
.y168{bottom:265.580000pt;}
.y121{bottom:265.982667pt;}
.y129{bottom:266.001333pt;}
.y167{bottom:280.846667pt;}
.y120{bottom:282.382667pt;}
.y128{bottom:282.401333pt;}
.y166{bottom:298.460000pt;}
.y165{bottom:298.464000pt;}
.y11f{bottom:298.862667pt;}
.y127{bottom:298.881333pt;}
.y1ef{bottom:301.636000pt;}
.y1ee{bottom:317.476000pt;}
.y12f{bottom:319.093493pt;}
.y164{bottom:332.105333pt;}
.y1ed{bottom:333.316000pt;}
.y113{bottom:333.661333pt;}
.y11e{bottom:333.970667pt;}
.y163{bottom:349.029333pt;}
.y1eb{bottom:349.156000pt;}
.y112{bottom:350.141333pt;}
.y11c{bottom:350.452000pt;}
.y1e9{bottom:364.996000pt;}
.y162{bottom:365.066667pt;}
.y10f{bottom:366.620000pt;}
.y11a{bottom:366.930667pt;}
.y111{bottom:370.701867pt;}
.ya4{bottom:379.715867pt;}
.y1e7{bottom:380.836000pt;}
.y161{bottom:381.989333pt;}
.y10d{bottom:383.101333pt;}
.y118{bottom:383.410667pt;}
.ya3{bottom:394.115867pt;}
.y1e5{bottom:396.714667pt;}
.y160{bottom:398.025333pt;}
.y10b{bottom:399.581333pt;}
.y117{bottom:399.892000pt;}
.y10c{bottom:403.582000pt;}
.ya2{bottom:408.515867pt;}
.y1e4{bottom:412.554667pt;}
.y15e{bottom:414.950667pt;}
.y109{bottom:416.060000pt;}
.y116{bottom:416.370667pt;}
.ya1{bottom:422.915867pt;}
.y1e3{bottom:428.394667pt;}
.y15d{bottom:430.905333pt;}
.y107{bottom:432.461333pt;}
.y115{bottom:432.772000pt;}
.y108{bottom:436.541600pt;}
.ya0{bottom:437.315867pt;}
.y1e2{bottom:444.234667pt;}
.y15c{bottom:447.830667pt;}
.y105{bottom:448.940000pt;}
.y114{bottom:449.250667pt;}
.y9f{bottom:451.715867pt;}
.y1e1{bottom:460.074667pt;}
.y9e{bottom:466.115867pt;}
.y1df{bottom:475.914667pt;}
.y130{bottom:480.121573pt;}
.y12e{bottom:480.281893pt;}
.y9c{bottom:486.902267pt;}
.y1dd{bottom:491.754667pt;}
.y12d{bottom:498.838933pt;}
.y1db{bottom:507.594667pt;}
.y99{bottom:522.950267pt;}
.y1d9{bottom:523.434667pt;}
.y148{bottom:524.296000pt;}
.y149{bottom:524.384000pt;}
.yf3{bottom:524.856000pt;}
.y104{bottom:524.994667pt;}
.y98{bottom:537.350267pt;}
.y1d7{bottom:539.274667pt;}
.y15a{bottom:543.766480pt;}
.y175{bottom:544.084400pt;}
.y1d5{bottom:555.114667pt;}
.y9b{bottom:568.274267pt;}
.y1d3{bottom:570.954667pt;}
.y146{bottom:573.530667pt;}
.y147{bottom:573.824000pt;}
.yf2{bottom:574.296000pt;}
.y103{bottom:574.356000pt;}
.y1d1{bottom:586.794667pt;}
.y29{bottom:589.092400pt;}
.y144{bottom:590.010667pt;}
.y145{bottom:590.305333pt;}
.y39{bottom:590.553333pt;}
.yf0{bottom:590.777333pt;}
.y102{bottom:590.836000pt;}
.y4a{bottom:591.329467pt;}
.y9a{bottom:595.478267pt;}
.y27{bottom:595.743213pt;}
.y25{bottom:595.743467pt;}
.y28{bottom:595.804493pt;}
.y26{bottom:595.860667pt;}
.y37{bottom:597.124933pt;}
.y4c{bottom:597.312533pt;}
.y38{bottom:597.374984pt;}
.y49{bottom:597.838508pt;}
.y4b{bottom:597.838533pt;}
.y48{bottom:597.899733pt;}
.y1cf{bottom:602.634667pt;}
.y21{bottom:603.496133pt;}
.y33{bottom:604.729200pt;}
.y44{bottom:605.502667pt;}
.y142{bottom:606.490667pt;}
.yee{bottom:607.256000pt;}
.yfe{bottom:607.314667pt;}
.y100{bottom:608.166667pt;}
.y143{bottom:608.197333pt;}
.y34{bottom:612.679778pt;}
.y22{bottom:612.815800pt;}
.y45{bottom:613.451790pt;}
.y1ce{bottom:618.502667pt;}
.y58{bottom:620.158800pt;}
.y35{bottom:620.625253pt;}
.y46{bottom:621.395812pt;}
.y23{bottom:622.140573pt;}
.y159{bottom:626.157600pt;}
.y174{bottom:626.475520pt;}
.y5a{bottom:628.140667pt;}
.y36{bottom:628.575831pt;}
.y47{bottom:629.344936pt;}
.y24{bottom:631.460240pt;}
.y2d{bottom:634.341200pt;}
.y1cd{bottom:634.342667pt;}
.y40{bottom:635.109333pt;}
.y97{bottom:636.566267pt;}
.y1c{bottom:638.397200pt;}
.y13f{bottom:639.610667pt;}
.y140{bottom:639.905333pt;}
.yed{bottom:640.376000pt;}
.yfc{bottom:640.434667pt;}
.y3f{bottom:640.452524pt;}
.y1cc{bottom:650.182667pt;}
.y3e{bottom:651.287720pt;}
.y2c{bottom:652.174617pt;}
.y1b{bottom:653.871600pt;}
.y13d{bottom:656.090667pt;}
.y13e{bottom:656.384000pt;}
.yeb{bottom:656.856000pt;}
.yfb{bottom:656.916000pt;}
.y2e{bottom:658.789992pt;}
.y32{bottom:659.210933pt;}
.y43{bottom:659.975200pt;}
.y3d{bottom:661.094828pt;}
.y1cb{bottom:666.022667pt;}
.y1a{bottom:666.059933pt;}
.y96{bottom:669.458267pt;}
.y3c{bottom:670.134423pt;}
.y5b{bottom:670.296933pt;}
.y41{bottom:671.400808pt;}
.ya5{bottom:672.419333pt;}
.y13b{bottom:672.490667pt;}
.y13c{bottom:672.785333pt;}
.yea{bottom:673.256000pt;}
.yfa{bottom:673.396000pt;}
.y20{bottom:673.471333pt;}
.y1d{bottom:674.789067pt;}
.y2b{bottom:679.577555pt;}
.y1ca{bottom:681.862667pt;}
.y2f{bottom:683.238785pt;}
.y59{bottom:688.351600pt;}
.y9d{bottom:689.402267pt;}
.y173{bottom:691.725760pt;}
.y158{bottom:692.089200pt;}
.y1c9{bottom:697.702667pt;}
.y139{bottom:705.450667pt;}
.ye8{bottom:706.217333pt;}
.y13a{bottom:706.746667pt;}
.y30{bottom:707.687577pt;}
.y42{bottom:707.692282pt;}
.y1e{bottom:711.322160pt;}
.y3b{bottom:712.214971pt;}
.y5c{bottom:712.453067pt;}
.y61{bottom:712.971333pt;}
.y1c8{bottom:713.542667pt;}
.y137{bottom:722.090667pt;}
.y138{bottom:722.384000pt;}
.yf8{bottom:722.754667pt;}
.ye7{bottom:722.856000pt;}
.y1c7{bottom:729.382667pt;}
.y2a{bottom:730.587867pt;}
.y3a{bottom:731.341200pt;}
.y31{bottom:732.136370pt;}
.y135{bottom:738.570667pt;}
.y136{bottom:738.865333pt;}
.yf7{bottom:739.236000pt;}
.ye6{bottom:739.337333pt;}
.y19{bottom:740.927067pt;}
.y4d{bottom:744.884133pt;}
.y1c6{bottom:745.222667pt;}
.y1f{bottom:747.855253pt;}
.y94{bottom:752.271733pt;}
.y5d{bottom:754.611333pt;}
.y132{bottom:755.050667pt;}
.y133{bottom:755.345333pt;}
.yf6{bottom:755.716000pt;}
.ye4{bottom:755.816000pt;}
.y1c5{bottom:761.062667pt;}
.y93{bottom:766.671733pt;}
.y131{bottom:771.526667pt;}
.yf4{bottom:772.194667pt;}
.ye2{bottom:772.296000pt;}
.y177{bottom:775.185680pt;}
.y15b{bottom:775.362080pt;}
.y1c4{bottom:776.902667pt;}
.y92{bottom:781.071733pt;}
.y1c3{bottom:792.742667pt;}
.y91{bottom:795.471733pt;}
.y5e{bottom:796.768267pt;}
.y157{bottom:799.600000pt;}
.yc3{bottom:799.990667pt;}
.ye0{bottom:800.110667pt;}
.y1c2{bottom:808.582667pt;}
.y90{bottom:809.871733pt;}
.yc2{bottom:816.470667pt;}
.y172{bottom:818.926320pt;}
.y8f{bottom:824.271733pt;}
.y1c1{bottom:824.422667pt;}
.y156{bottom:832.138667pt;}
.yc0{bottom:832.870667pt;}
.ydf{bottom:832.990667pt;}
.y17e{bottom:834.570533pt;}
.y1{bottom:836.038667pt;}
.y8e{bottom:838.671733pt;}
.y5f{bottom:838.925067pt;}
.y1c0{bottom:840.302667pt;}
.y155{bottom:848.620000pt;}
.ybf{bottom:849.350667pt;}
.ydc{bottom:849.472000pt;}
.y17d{bottom:850.602533pt;}
.y4e{bottom:853.533867pt;}
.y1bf{bottom:856.142667pt;}
.y1ac{bottom:856.188488pt;}
.y8c{bottom:858.051733pt;}
.y4f{bottom:861.514267pt;}
.y154{bottom:865.098667pt;}
.ybd{bottom:865.830667pt;}
.ydb{bottom:865.950667pt;}
.y17c{bottom:866.634533pt;}
.y1bd{bottom:871.982667pt;}
.y1ab{bottom:874.726962pt;}
.y50{bottom:879.822267pt;}
.y60{bottom:881.152400pt;}
.yba{bottom:882.310667pt;}
.yd8{bottom:882.430667pt;}
.y17b{bottom:882.666533pt;}
.y152{bottom:882.826667pt;}
.yd6{bottom:882.969333pt;}
.y53{bottom:885.226533pt;}
.y1bc{bottom:887.822667pt;}
.y57{bottom:890.048933pt;}
.y1aa{bottom:893.265436pt;}
.y89{bottom:895.779733pt;}
.y56{bottom:896.448933pt;}
.y51{bottom:898.129600pt;}
.y17a{bottom:898.698533pt;}
.yb9{bottom:898.950667pt;}
.y171{bottom:901.397600pt;}
.y55{bottom:902.848933pt;}
.y1bb{bottom:903.662667pt;}
.y88{bottom:910.179733pt;}
.y1a9{bottom:911.803911pt;}
.y64{bottom:913.275393pt;}
.y151{bottom:914.698667pt;}
.y179{bottom:914.730533pt;}
.yb8{bottom:915.430667pt;}
.yd5{bottom:915.550667pt;}
.y52{bottom:916.437467pt;}
.y65{bottom:918.815877pt;}
.y1ba{bottom:919.502667pt;}
.y6e{bottom:920.487797pt;}
.y73{bottom:926.650699pt;}
.y66{bottom:927.453672pt;}
.y1a8{bottom:930.342385pt;}
.y14f{bottom:931.180000pt;}
.yb7{bottom:931.910667pt;}
.y7d{bottom:931.951537pt;}
.yd2{bottom:932.032000pt;}
.y74{bottom:934.155537pt;}
.y1b8{bottom:935.342667pt;}
.y6f{bottom:935.531828pt;}
.y6d{bottom:938.107280pt;}
.y54{bottom:941.772133pt;}
.y8b{bottom:942.243733pt;}
.y67{bottom:942.278209pt;}
.y17f{bottom:943.881333pt;}
.y71{bottom:945.134133pt;}
.y84{bottom:946.801467pt;}
.y14e{bottom:947.658667pt;}
.yb5{bottom:948.390667pt;}
.yd0{bottom:948.510667pt;}
.y1a7{bottom:948.880859pt;}
.y19c{bottom:949.156000pt;}
.y199{bottom:949.321333pt;}
.y1b7{bottom:951.182667pt;}
.y7c{bottom:953.173205pt;}
.y19b{bottom:953.175733pt;}
.y75{bottom:957.888708pt;}
.y6c{bottom:961.278635pt;}
.y68{bottom:962.800854pt;}
.yb3{bottom:964.870667pt;}
.y186{bottom:964.991147pt;}
.y1b5{bottom:967.022667pt;}
.y1a6{bottom:967.419333pt;}
.y170{bottom:967.930400pt;}
.y8a{bottom:969.447733pt;}
.y198{bottom:971.238267pt;}
.y81{bottom:972.042933pt;}
.y63{bottom:975.930933pt;}
.y14d{bottom:980.538667pt;}
.yb1{bottom:981.270667pt;}
.yce{bottom:981.390667pt;}
.y7b{bottom:981.827679pt;}
.y1a4{bottom:982.181333pt;}
.y1b3{bottom:982.862667pt;}
.y82{bottom:984.806000pt;}
.y185{bottom:984.995627pt;}
.y195{bottom:985.801333pt;}
.y1a3{bottom:985.966926pt;}
.y72{bottom:986.277333pt;}
.y69{bottom:989.210755pt;}
.y197{bottom:991.404933pt;}
.y14c{bottom:997.018667pt;}
.y85{bottom:997.037733pt;}
.yaf{bottom:997.750667pt;}
.ycd{bottom:997.870667pt;}
.y1b1{bottom:998.702667pt;}
.y7e{bottom:1000.783345pt;}
.y1a2{bottom:1004.505400pt;}
.y193{bottom:1004.521333pt;}
.y184{bottom:1005.000107pt;}
.y7a{bottom:1007.340286pt;}
.y70{bottom:1009.132687pt;}
.y80{bottom:1009.914667pt;}
.y6b{bottom:1010.011733pt;}
.y87{bottom:1010.535733pt;}
.y14b{bottom:1013.500000pt;}
.yac{bottom:1013.568000pt;}
.yad{bottom:1014.230667pt;}
.yca{bottom:1014.352000pt;}
.y1af{bottom:1014.542667pt;}
.y6a{bottom:1019.411514pt;}
.y191{bottom:1021.801333pt;}
.y83{bottom:1022.535200pt;}
.y1a1{bottom:1023.043875pt;}
.y183{bottom:1025.004587pt;}
.y76{bottom:1026.247606pt;}
.y79{bottom:1026.504874pt;}
.y14a{bottom:1029.978667pt;}
.yaa{bottom:1030.710667pt;}
.yc8{bottom:1030.830667pt;}
.y18e{bottom:1031.860000pt;}
.y1f2{bottom:1034.337333pt;}
.y1f3{bottom:1036.935600pt;}
.y78{bottom:1038.268797pt;}
.y189{bottom:1039.081333pt;}
.y7f{bottom:1039.638000pt;}
.y1a0{bottom:1041.618533pt;}
.y77{bottom:1042.800800pt;}
.y86{bottom:1043.427733pt;}
.y95{bottom:1044.950533pt;}
.y182{bottom:1045.009067pt;}
.y62{bottom:1046.419333pt;}
.ya6{bottom:1046.634667pt;}
.ya8{bottom:1047.190667pt;}
.yc5{bottom:1047.310667pt;}
.y190{bottom:1047.380267pt;}
.y18b{bottom:1047.924533pt;}
.y188{bottom:1047.925733pt;}
.y19f{bottom:1048.220000pt;}
.y176{bottom:1051.016240pt;}
.y181{bottom:1062.446667pt;}
.y8d{bottom:1063.371733pt;}
.y1ae{bottom:1069.511733pt;}
.y1f1{bottom:1069.512400pt;}
.y12a{bottom:1070.246133pt;}
.y12c{bottom:1071.154613pt;}
.y178{bottom:1085.428400pt;}
.y1ad{bottom:1085.511733pt;}
.y1f0{bottom:1085.512400pt;}
.y12b{bottom:1087.186613pt;}
.h33{height:1.706250pt;}
.h5{height:12.614394pt;}
.h4{height:13.793229pt;}
.hb{height:13.806051pt;}
.h8{height:13.808382pt;}
.h37{height:14.560000pt;}
.h3b{height:14.561333pt;}
.h3a{height:14.592000pt;}
.hc{height:14.867935pt;}
.h9{height:14.870655pt;}
.h6{height:14.881146pt;}
.h1d{height:15.120000pt;}
.h11{height:15.146667pt;}
.h22{height:15.197333pt;}
.h20{height:15.198667pt;}
.h23{height:15.200000pt;}
.h26{height:15.281333pt;}
.h25{height:15.282667pt;}
.h21{height:15.360000pt;}
.h2a{height:16.209375pt;}
.h2e{height:16.640000pt;}
.h31{height:16.800000pt;}
.h35{height:17.102667pt;}
.hd{height:18.053977pt;}
.ha{height:18.057085pt;}
.hf{height:18.060507pt;}
.h7{height:18.067187pt;}
.h30{height:18.720000pt;}
.h2{height:20.287315pt;}
.h10{height:21.672608pt;}
.h14{height:22.470142pt;}
.h13{height:22.966309pt;}
.h17{height:23.415852pt;}
.h3{height:24.343690pt;}
.h16{height:25.548557pt;}
.h15{height:26.555657pt;}
.h2d{height:27.358667pt;}
.h2c{height:27.360000pt;}
.h19{height:27.673103pt;}
.h24{height:28.366406pt;}
.h12{height:31.062500pt;}
.h2b{height:33.081562pt;}
.h2f{height:33.103750pt;}
.h18{height:34.059562pt;}
.h1b{height:34.945312pt;}
.h1a{height:34.968750pt;}
.h34{height:35.147868pt;}
.h38{height:38.672812pt;}
.h39{height:38.698750pt;}
.he{height:38.720000pt;}
.h27{height:38.828125pt;}
.h36{height:38.854167pt;}
.h1e{height:38.905781pt;}
.h1f{height:38.931875pt;}
.h29{height:39.243750pt;}
.h1c{height:42.866250pt;}
.h32{height:117.120000pt;}
.h28{height:142.080000pt;}
.h1{height:259.330667pt;}
.h0{height:1121.333333pt;}
.w11{width:59.040000pt;}
.w12{width:72.800000pt;}
.w1b{width:74.685333pt;}
.w13{width:78.881333pt;}
.w4{width:80.400000pt;}
.w1c{width:81.918667pt;}
.w15{width:81.920000pt;}
.w19{width:84.000000pt;}
.w14{width:87.200000pt;}
.w17{width:87.360000pt;}
.wd{width:87.840000pt;}
.w1a{width:92.764000pt;}
.w18{width:93.600000pt;}
.w16{width:95.200000pt;}
.wb{width:109.058667pt;}
.w2{width:109.920000pt;}
.w6{width:110.018667pt;}
.w10{width:198.960000pt;}
.we{width:210.558667pt;}
.wf{width:210.560000pt;}
.w5{width:219.240000pt;}
.wa{width:219.245333pt;}
.w8{width:219.438667pt;}
.w9{width:219.440000pt;}
.w3{width:239.120000pt;}
.wc{width:245.526667pt;}
.w7{width:245.901333pt;}
.w1{width:291.240000pt;}
.w21{width:497.053333pt;}
.w20{width:561.853333pt;}
.w1f{width:561.854667pt;}
.w1e{width:737.160000pt;}
.w1d{width:756.160000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x73{left:2.559200pt;}
.xa4{left:3.525200pt;}
.xa8{left:10.876533pt;}
.xa0{left:11.839200pt;}
.x1b{left:13.913067pt;}
.x98{left:15.873067pt;}
.xaa{left:17.120667pt;}
.xab{left:18.081467pt;}
.x9f{left:19.201467pt;}
.x99{left:20.200533pt;}
.x33{left:21.584973pt;}
.xae{left:23.756000pt;}
.x9c{left:25.350933pt;}
.x12{left:27.721186pt;}
.x91{left:30.477200pt;}
.x11{left:32.650187pt;}
.x72{left:33.837333pt;}
.x92{left:35.326880pt;}
.x45{left:36.221333pt;}
.xa5{left:38.553600pt;}
.x6f{left:40.207733pt;}
.x6a{left:43.064533pt;}
.x60{left:44.315252pt;}
.xa3{left:46.231067pt;}
.x61{left:48.251785pt;}
.x93{left:50.239333pt;}
.x8e{left:52.240800pt;}
.x32{left:53.412800pt;}
.x2e{left:56.419333pt;}
.x2f{left:57.968800pt;}
.x31{left:58.892455pt;}
.x30{left:60.484612pt;}
.x6b{left:61.916533pt;}
.x2d{left:64.239313pt;}
.x5d{left:65.216322pt;}
.x2c{left:67.076618pt;}
.x75{left:68.372000pt;}
.x9{left:69.854403pt;}
.x6c{left:72.116533pt;}
.x14{left:73.070785pt;}
.x8{left:74.783404pt;}
.x13{left:77.999787pt;}
.x1c{left:80.785769pt;}
.x4f{left:82.705733pt;}
.x5f{left:84.066341pt;}
.x3{left:85.135700pt;}
.x2{left:87.746400pt;}
.x6d{left:90.524533pt;}
.x50{left:91.851600pt;}
.x2a{left:93.380267pt;}
.x9d{left:96.549467pt;}
.xb{left:100.792938pt;}
.xa{left:103.932740pt;}
.x15{left:107.086466pt;}
.x76{left:108.720267pt;}
.x81{left:110.020933pt;}
.x2b{left:114.443047pt;}
.x6e{left:119.000533pt;}
.x5c{left:120.133589pt;}
.x70{left:129.079733pt;}
.x5{left:132.002986pt;}
.xc{left:134.001042pt;}
.x4{left:137.099073pt;}
.x1a{left:139.779391pt;}
.x59{left:141.839867pt;}
.x74{left:143.970667pt;}
.x5b{left:144.993638pt;}
.x89{left:146.665333pt;}
.x94{left:147.952000pt;}
.x8a{left:149.224667pt;}
.x46{left:151.160133pt;}
.x16{left:154.907528pt;}
.x5a{left:156.236179pt;}
.x7c{left:157.795200pt;}
.x96{left:161.519067pt;}
.xe{left:165.593993pt;}
.x88{left:166.879200pt;}
.x95{left:169.359467pt;}
.xd{left:170.293253pt;}
.x97{left:173.536000pt;}
.x8f{left:174.719600pt;}
.x7f{left:179.008933pt;}
.x7{left:179.991133pt;}
.x90{left:182.000800pt;}
.x6{left:184.920135pt;}
.x83{left:186.389200pt;}
.x17{left:187.370712pt;}
.x84{left:189.286267pt;}
.x10{left:192.926282pt;}
.xf{left:197.451495pt;}
.x7e{left:198.610267pt;}
.x79{left:202.224800pt;}
.x7d{left:203.987867pt;}
.x86{left:206.012933pt;}
.x7a{left:211.832933pt;}
.x8c{left:218.100400pt;}
.x82{left:219.558400pt;}
.x80{left:227.873600pt;}
.x85{left:229.743333pt;}
.x19{left:235.644295pt;}
.x18{left:239.974577pt;}
.x8d{left:244.128800pt;}
.x5e{left:250.807333pt;}
.x28{left:264.643080pt;}
.x27{left:277.261653pt;}
.x29{left:285.280000pt;}
.x26{left:302.703067pt;}
.xac{left:309.848000pt;}
.xa9{left:313.998667pt;}
.x9e{left:316.292000pt;}
.x25{left:317.736933pt;}
.x22{left:321.934933pt;}
.x24{left:324.000547pt;}
.x21{left:325.128933pt;}
.x23{left:326.696867pt;}
.x20{left:337.423200pt;}
.x71{left:351.304667pt;}
.x1d{left:357.669333pt;}
.x1e{left:380.493467pt;}
.xa7{left:398.852000pt;}
.xa6{left:401.288000pt;}
.x1f{left:402.337800pt;}
.x56{left:406.393738pt;}
.x57{left:408.939365pt;}
.x7b{left:410.066667pt;}
.x77{left:411.480000pt;}
.x55{left:413.912402pt;}
.xad{left:417.253867pt;}
.x54{left:427.349848pt;}
.x58{left:435.262573pt;}
.x67{left:437.079652pt;}
.x53{left:446.280491pt;}
.x52{left:465.944085pt;}
.x1{left:487.597333pt;}
.x78{left:493.240000pt;}
.x8b{left:495.162667pt;}
.x87{left:496.176000pt;}
.x62{left:498.028667pt;}
.x51{left:514.776000pt;}
.x63{left:530.941938pt;}
.x42{left:536.725853pt;}
.x66{left:538.310461pt;}
.x64{left:543.204060pt;}
.x65{left:546.546814pt;}
.x43{left:553.816400pt;}
.x44{left:568.165333pt;}
.xa1{left:582.852000pt;}
.x41{left:586.425733pt;}
.x3d{left:589.433600pt;}
.x3e{left:590.981733pt;}
.x40{left:591.905219pt;}
.x3f{left:593.497085pt;}
.x3c{left:597.251789pt;}
.x3b{left:600.088575pt;}
.x3a{left:608.598933pt;}
.x68{left:609.526000pt;}
.x34{left:626.386667pt;}
.x4b{left:629.947867pt;}
.x4a{left:642.606800pt;}
.x69{left:643.786400pt;}
.x35{left:646.128801pt;}
.x49{left:647.114533pt;}
.x48{left:651.164000pt;}
.x4d{left:656.093733pt;}
.x47{left:660.777333pt;}
.x36{left:667.183288pt;}
.xa2{left:677.252000pt;}
.x37{left:686.925423pt;}
.x38{left:706.662820pt;}
.x39{left:747.464180pt;}
.x4c{left:755.449200pt;}
.x4e{left:769.992133pt;}
.x9a{left:776.295600pt;}
.x9b{left:779.170533pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  