
    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_a76eb15f79bf0ea0de65a5b3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.230957;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_3caed935f13f885bafcca400.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_a3b3a11799e035dee1f34588.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_8248521ee189c03717a2750a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.402832;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_8696d021e22b8e79749e5fff.woff')format("woff");}.ff5{font-family:ff5;line-height:1.099609;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_5d010c3f232ced64d0438b91.woff')format("woff");}.ff6{font-family:ff6;line-height:1.066406;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_bed63a9e76f4e94c996c008a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.041992;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;}
.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);}
.v2{vertical-align:-16.977000px;}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.674800px;}
.ls4a{letter-spacing:-4.416000px;}
.ls1{letter-spacing:-4.200000px;}
.ls30{letter-spacing:-3.960000px;}
.ls7a{letter-spacing:-3.906000px;}
.ls5a{letter-spacing:-3.819000px;}
.ls38{letter-spacing:-3.483000px;}
.ls45{letter-spacing:-3.312000px;}
.ls87{letter-spacing:-3.300000px;}
.ls65{letter-spacing:-3.276000px;}
.ls7d{letter-spacing:-3.225000px;}
.ls59{letter-spacing:-3.105000px;}
.ls1a{letter-spacing:-2.760000px;}
.ls89{letter-spacing:-2.640000px;}
.ls53{letter-spacing:-2.553000px;}
.ls43{letter-spacing:-2.550000px;}
.ls86{letter-spacing:-2.340000px;}
.ls79{letter-spacing:-2.331000px;}
.ls75{letter-spacing:-2.268000px;}
.ls6f{letter-spacing:-2.205000px;}
.ls27{letter-spacing:-2.109000px;}
.ls2e{letter-spacing:-2.100000px;}
.ls4b{letter-spacing:-2.070000px;}
.ls20{letter-spacing:-1.863000px;}
.ls48{letter-spacing:-1.794000px;}
.ls29{letter-spacing:-1.725000px;}
.ls3d{letter-spacing:-1.620000px;}
.ls3c{letter-spacing:-1.587000px;}
.ls77{letter-spacing:-1.512000px;}
.ls7e{letter-spacing:-1.449000px;}
.ls31{letter-spacing:-1.440000px;}
.ls5f{letter-spacing:-1.380000px;}
.ls50{letter-spacing:-1.311000px;}
.ls7b{letter-spacing:-1.260000px;}
.ls5b{letter-spacing:-1.242000px;}
.ls13{letter-spacing:-1.215000px;}
.ls36{letter-spacing:-1.200000px;}
.ls49{letter-spacing:-1.173000px;}
.ls4f{letter-spacing:-1.104000px;}
.ls4e{letter-spacing:-1.035000px;}
.ls3a{letter-spacing:-0.966000px;}
.ls76{letter-spacing:-0.945000px;}
.ls23{letter-spacing:-0.897000px;}
.ls12{letter-spacing:-0.855000px;}
.lsa{letter-spacing:-0.840000px;}
.ls18{letter-spacing:-0.828000px;}
.ls33{letter-spacing:-0.780000px;}
.ls44{letter-spacing:-0.759000px;}
.ls72{letter-spacing:-0.756000px;}
.ls68{letter-spacing:-0.693000px;}
.ls1d{letter-spacing:-0.690000px;}
.ls8c{letter-spacing:-0.660000px;}
.ls70{letter-spacing:-0.630000px;}
.ls39{letter-spacing:-0.627000px;}
.ls1f{letter-spacing:-0.621000px;}
.ls61{letter-spacing:-0.570000px;}
.ls69{letter-spacing:-0.567000px;}
.ls4d{letter-spacing:-0.552000px;}
.ls25{letter-spacing:-0.483000px;}
.ls8d{letter-spacing:-0.480000px;}
.ls6d{letter-spacing:-0.441000px;}
.ls32{letter-spacing:-0.420000px;}
.ls4c{letter-spacing:-0.414000px;}
.ls74{letter-spacing:-0.378000px;}
.ls16{letter-spacing:-0.345000px;}
.ls2f{letter-spacing:-0.300000px;}
.ls47{letter-spacing:-0.276000px;}
.ls6a{letter-spacing:-0.252000px;}
.lsd{letter-spacing:-0.240000px;}
.ls5e{letter-spacing:-0.207000px;}
.ls4{letter-spacing:-0.189000px;}
.ls35{letter-spacing:-0.180000px;}
.ls54{letter-spacing:-0.171000px;}
.ls19{letter-spacing:-0.138000px;}
.ls6e{letter-spacing:-0.126000px;}
.ls46{letter-spacing:-0.069000px;}
.ls10{letter-spacing:-0.060000px;}
.ls9{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000300px;}
.ls2c{letter-spacing:0.069000px;}
.ls17{letter-spacing:0.081000px;}
.ls57{letter-spacing:0.138000px;}
.ls41{letter-spacing:0.483000px;}
.ls2b{letter-spacing:0.621000px;}
.ls6b{letter-spacing:0.630000px;}
.ls28{letter-spacing:0.648000px;}
.ls34{letter-spacing:0.720000px;}
.ls56{letter-spacing:0.729000px;}
.ls5d{letter-spacing:0.759000px;}
.lsf{letter-spacing:0.840000px;}
.ls88{letter-spacing:0.900000px;}
.ls24{letter-spacing:1.035000px;}
.ls21{letter-spacing:1.104000px;}
.ls7f{letter-spacing:1.134000px;}
.ls42{letter-spacing:1.173000px;}
.ls64{letter-spacing:1.197000px;}
.ls52{letter-spacing:1.242000px;}
.ls3{letter-spacing:1.260000px;}
.ls6c{letter-spacing:1.323000px;}
.ls7{letter-spacing:1.449000px;}
.ls37{letter-spacing:1.482000px;}
.ls78{letter-spacing:1.512000px;}
.ls66{letter-spacing:1.701000px;}
.ls58{letter-spacing:1.725000px;}
.ls85{letter-spacing:1.740000px;}
.ls3f{letter-spacing:1.794000px;}
.ls3e{letter-spacing:2.070000px;}
.ls8a{letter-spacing:2.280000px;}
.ls15{letter-spacing:2.400000px;}
.ls11{letter-spacing:3.696000px;}
.ls84{letter-spacing:3.720000px;}
.ls71{letter-spacing:4.095000px;}
.ls2a{letter-spacing:4.200000px;}
.lse{letter-spacing:5.460000px;}
.ls1e{letter-spacing:5.658000px;}
.ls82{letter-spacing:5.670000px;}
.ls5{letter-spacing:5.760000px;}
.ls8{letter-spacing:5.820000px;}
.lsb{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls73{letter-spacing:6.048000px;}
.ls67{letter-spacing:6.174000px;}
.ls63{letter-spacing:6.300000px;}
.ls80{letter-spacing:6.804000px;}
.ls62{letter-spacing:7.056000px;}
.ls6{letter-spacing:7.260000px;}
.ls55{letter-spacing:475.141800px;}
.ls2d{letter-spacing:475.441800px;}
.ls5c{letter-spacing:475.666800px;}
.ls83{letter-spacing:475.861800px;}
.ls60{letter-spacing:476.079000px;}
.ls7c{letter-spacing:476.236800px;}
.ls8b{letter-spacing:476.461800px;}
.ls0{letter-spacing:476.634000px;}
.ls14{letter-spacing:477.234000px;}
.ls22{letter-spacing:477.421800px;}
.ls40{letter-spacing:478.509000px;}
.ls81{letter-spacing:479.086800px;}
.ls26{letter-spacing:952.522800px;}
.ls51{letter-spacing:953.017800px;}
.lsc{letter-spacing:955.642800px;}
.ls1b{letter-spacing:959.692800px;}
.ls3b{letter-spacing:961.672800px;}
.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;}
}
.ws74{word-spacing:-24.759000px;}
.ws93{word-spacing:-24.507000px;}
.ws98{word-spacing:-23.751000px;}
.ws99{word-spacing:-23.373000px;}
.ws4{word-spacing:-22.740000px;}
.ws73{word-spacing:-21.546000px;}
.ws42{word-spacing:-21.141000px;}
.ws9a{word-spacing:-20.580000px;}
.ws22{word-spacing:-20.010000px;}
.ws4d{word-spacing:-19.389000px;}
.ws3c{word-spacing:-19.278000px;}
.ws53{word-spacing:-19.251000px;}
.ws2{word-spacing:-19.152000px;}
.ws28{word-spacing:-18.975000px;}
.ws72{word-spacing:-18.768000px;}
.ws6e{word-spacing:-18.630000px;}
.ws45{word-spacing:-18.525000px;}
.ws3{word-spacing:-18.120000px;}
.ws91{word-spacing:-17.850000px;}
.ws6d{word-spacing:-17.802000px;}
.ws52{word-spacing:-17.595000px;}
.ws66{word-spacing:-17.526000px;}
.ws92{word-spacing:-17.451000px;}
.ws75{word-spacing:-17.136000px;}
.ws77{word-spacing:-17.073000px;}
.ws4f{word-spacing:-17.043000px;}
.ws0{word-spacing:-16.875000px;}
.ws4a{word-spacing:-16.767000px;}
.ws31{word-spacing:-16.680000px;}
.ws50{word-spacing:-16.629000px;}
.ws9b{word-spacing:-16.560000px;}
.ws51{word-spacing:-16.491000px;}
.ws88{word-spacing:-16.443000px;}
.ws1a{word-spacing:-16.353000px;}
.ws46{word-spacing:-16.284000px;}
.ws6c{word-spacing:-16.215000px;}
.ws70{word-spacing:-16.146000px;}
.ws2e{word-spacing:-16.080000px;}
.ws47{word-spacing:-16.077000px;}
.ws6b{word-spacing:-16.008000px;}
.ws14{word-spacing:-15.888000px;}
.ws4c{word-spacing:-15.870000px;}
.ws67{word-spacing:-15.732000px;}
.ws6f{word-spacing:-15.663000px;}
.ws41{word-spacing:-15.456000px;}
.ws5a{word-spacing:-15.318000px;}
.ws4b{word-spacing:-15.249000px;}
.ws85{word-spacing:-14.994000px;}
.ws2b{word-spacing:-14.760000px;}
.ws60{word-spacing:-14.400000px;}
.wsa8{word-spacing:-14.340000px;}
.ws49{word-spacing:-14.283000px;}
.wsa7{word-spacing:-14.160000px;}
.ws87{word-spacing:-14.049000px;}
.ws48{word-spacing:-13.731000px;}
.ws76{word-spacing:-13.356000px;}
.ws86{word-spacing:-13.293000px;}
.ws1{word-spacing:-13.062000px;}
.ws4e{word-spacing:-12.627000px;}
.ws9{word-spacing:-7.260000px;}
.ws7a{word-spacing:-6.300000px;}
.ws7e{word-spacing:-6.174000px;}
.ws8b{word-spacing:-6.048000px;}
.ws6{word-spacing:-6.000000px;}
.wsa{word-spacing:-5.820000px;}
.ws8{word-spacing:-5.760000px;}
.ws1b{word-spacing:-5.658000px;}
.wsd{word-spacing:-5.460000px;}
.ws26{word-spacing:-4.200000px;}
.ws89{word-spacing:-4.095000px;}
.ws10{word-spacing:-3.696000px;}
.wsa6{word-spacing:-2.280000px;}
.ws43{word-spacing:-2.070000px;}
.ws97{word-spacing:-1.953000px;}
.ws44{word-spacing:-1.794000px;}
.ws9c{word-spacing:-1.740000px;}
.ws63{word-spacing:-1.725000px;}
.ws7d{word-spacing:-1.701000px;}
.ws8e{word-spacing:-1.512000px;}
.ws3e{word-spacing:-1.482000px;}
.ws95{word-spacing:-1.449000px;}
.ws82{word-spacing:-1.323000px;}
.ws11{word-spacing:-1.260000px;}
.ws5d{word-spacing:-1.242000px;}
.ws7b{word-spacing:-1.197000px;}
.ws96{word-spacing:-1.134000px;}
.ws1e{word-spacing:-1.104000px;}
.ws20{word-spacing:-1.035000px;}
.wsa4{word-spacing:-0.900000px;}
.wse{word-spacing:-0.840000px;}
.ws61{word-spacing:-0.729000px;}
.ws24{word-spacing:-0.648000px;}
.ws81{word-spacing:-0.630000px;}
.ws5c{word-spacing:-0.621000px;}
.ws62{word-spacing:-0.138000px;}
.ws16{word-spacing:-0.081000px;}
.ws27{word-spacing:-0.069000px;}
.ws5{word-spacing:0.000000px;}
.wsf{word-spacing:0.060000px;}
.ws54{word-spacing:0.069000px;}
.ws84{word-spacing:0.126000px;}
.ws18{word-spacing:0.138000px;}
.ws5f{word-spacing:0.171000px;}
.ws9f{word-spacing:0.180000px;}
.ws7{word-spacing:0.189000px;}
.ws71{word-spacing:0.207000px;}
.wsc{word-spacing:0.240000px;}
.ws80{word-spacing:0.252000px;}
.ws3d{word-spacing:0.300000px;}
.ws15{word-spacing:0.345000px;}
.ws8c{word-spacing:0.378000px;}
.wsa0{word-spacing:0.420000px;}
.ws83{word-spacing:0.441000px;}
.ws21{word-spacing:0.483000px;}
.ws65{word-spacing:0.552000px;}
.ws78{word-spacing:0.570000px;}
.ws1c{word-spacing:0.621000px;}
.ws3f{word-spacing:0.627000px;}
.ws57{word-spacing:0.690000px;}
.ws7f{word-spacing:0.693000px;}
.ws8a{word-spacing:0.756000px;}
.ws55{word-spacing:0.759000px;}
.ws9d{word-spacing:0.780000px;}
.ws17{word-spacing:0.828000px;}
.wsb{word-spacing:0.840000px;}
.ws12{word-spacing:0.855000px;}
.ws1f{word-spacing:0.897000px;}
.ws8d{word-spacing:0.945000px;}
.ws40{word-spacing:0.966000px;}
.ws5b{word-spacing:1.035000px;}
.ws58{word-spacing:1.104000px;}
.wsa3{word-spacing:1.200000px;}
.ws13{word-spacing:1.215000px;}
.ws6a{word-spacing:1.242000px;}
.ws59{word-spacing:1.311000px;}
.ws79{word-spacing:1.380000px;}
.ws94{word-spacing:1.449000px;}
.ws9e{word-spacing:1.620000px;}
.ws25{word-spacing:1.725000px;}
.ws64{word-spacing:1.794000px;}
.ws1d{word-spacing:1.863000px;}
.ws56{word-spacing:2.070000px;}
.ws23{word-spacing:2.109000px;}
.ws8f{word-spacing:2.331000px;}
.wsa1{word-spacing:2.340000px;}
.ws5e{word-spacing:2.553000px;}
.wsa5{word-spacing:2.640000px;}
.ws19{word-spacing:2.760000px;}
.ws68{word-spacing:3.105000px;}
.ws7c{word-spacing:3.276000px;}
.wsa2{word-spacing:3.300000px;}
.ws69{word-spacing:3.819000px;}
.ws90{word-spacing:3.906000px;}
.ws39{word-spacing:198.102000px;}
.ws36{word-spacing:217.344000px;}
.ws33{word-spacing:224.616000px;}
.ws30{word-spacing:266.772000px;}
.ws2c{word-spacing:268.038000px;}
.ws37{word-spacing:269.568000px;}
.ws3a{word-spacing:277.038000px;}
.ws34{word-spacing:287.844000px;}
.ws2d{word-spacing:289.116000px;}
.ws35{word-spacing:307.380000px;}
.ws2f{word-spacing:349.110000px;}
.ws38{word-spacing:351.366000px;}
.ws2a{word-spacing:367.350000px;}
.ws29{word-spacing:376.992000px;}
.ws32{word-spacing:402.318000px;}
.ws3b{word-spacing:460.560000px;}
._1e{margin-left:-12.242400px;}
._1f{margin-left:-11.009100px;}
._1b{margin-left:-9.261000px;}
._1a{margin-left:-7.964400px;}
._12{margin-left:-6.362400px;}
._5{margin-left:-5.092500px;}
._8{margin-left:-4.012200px;}
._4{margin-left:-2.576700px;}
._7{margin-left:-1.377600px;}
._2{width:1.056000px;}
._3{width:2.278500px;}
._1{width:4.192500px;}
._0{width:5.617500px;}
._6{width:6.853500px;}
._e{width:8.465400px;}
._9{width:10.193100px;}
._10{width:12.024000px;}
._14{width:13.298700px;}
._17{width:15.213900px;}
._1d{width:16.532100px;}
._19{width:18.347400px;}
._16{width:20.741100px;}
._18{width:22.010700px;}
._f{width:24.024600px;}
._11{width:25.968600px;}
._15{width:33.397200px;}
._1c{width:37.274700px;}
._c{width:41.385900px;}
._13{width:43.445160px;}
._b{width:50.652000px;}
._d{width:253.008000px;}
._a{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fsb{font-size:40.227000px;}
.fs3{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y10c{bottom:106.107300px;}
.y1a9{bottom:106.165350px;}
.y1f{bottom:106.242300px;}
.y1cc{bottom:106.247100px;}
.y151{bottom:106.275000px;}
.y130{bottom:106.276200px;}
.y184{bottom:106.294350px;}
.yad{bottom:106.295400px;}
.y8a{bottom:106.296300px;}
.y65{bottom:106.298850px;}
.ye8{bottom:106.317750px;}
.y1ea{bottom:106.329150px;}
.y42{bottom:106.367700px;}
.y20b{bottom:106.544100px;}
.y16e{bottom:109.042350px;}
.y1e{bottom:125.757300px;}
.y10b{bottom:126.376050px;}
.y1cb{bottom:126.533100px;}
.y89{bottom:126.544800px;}
.y150{bottom:126.578250px;}
.y183{bottom:126.597600px;}
.y24a{bottom:126.645000px;}
.y12f{bottom:126.648450px;}
.ye7{bottom:126.672750px;}
.yac{bottom:127.064400px;}
.y1e9{bottom:127.071900px;}
.y20a{bottom:127.349850px;}
.y41{bottom:127.585200px;}
.y1a8{bottom:127.693350px;}
.y64{bottom:127.861350px;}
.yca{bottom:128.829900px;}
.y16d{bottom:129.293850px;}
.y1d{bottom:145.272300px;}
.y10a{bottom:146.644800px;}
.y1ca{bottom:146.819100px;}
.y14f{bottom:146.881500px;}
.y12e{bottom:147.020700px;}
.ye6{bottom:147.027750px;}
.y249{bottom:147.075000px;}
.y1e8{bottom:147.814650px;}
.yab{bottom:147.833400px;}
.y40{bottom:148.802700px;}
.yc9{bottom:149.081400px;}
.y1a7{bottom:149.221350px;}
.y63{bottom:149.423850px;}
.y16c{bottom:149.545350px;}
.y209{bottom:156.660600px;}
.y1c{bottom:164.787300px;}
.y109{bottom:166.913550px;}
.y1c9{bottom:167.105100px;}
.y14e{bottom:167.184750px;}
.ye5{bottom:167.382750px;}
.y12d{bottom:167.392950px;}
.y248{bottom:167.505000px;}
.y182{bottom:168.155850px;}
.yaa{bottom:168.602400px;}
.yc8{bottom:169.332900px;}
.y16b{bottom:169.796850px;}
.y3f{bottom:170.020200px;}
.y88{bottom:170.527050px;}
.y1a6{bottom:170.749350px;}
.y62{bottom:170.986350px;}
.y1e7{bottom:177.062400px;}
.y208{bottom:177.466350px;}
.y1b{bottom:184.302300px;}
.y108{bottom:187.182300px;}
.y1c8{bottom:187.391100px;}
.y14d{bottom:187.488000px;}
.ye4{bottom:187.737750px;}
.y247{bottom:187.935000px;}
.ya9{bottom:189.371400px;}
.yc7{bottom:189.584400px;}
.y16a{bottom:190.048350px;}
.y3e{bottom:191.237700px;}
.y87{bottom:191.451300px;}
.y1a5{bottom:192.277350px;}
.y61{bottom:192.548850px;}
.y1e6{bottom:197.805150px;}
.y207{bottom:198.272100px;}
.y1a{bottom:203.817300px;}
.y107{bottom:207.451050px;}
.y1c7{bottom:207.677100px;}
.y14c{bottom:207.791250px;}
.ye3{bottom:208.092750px;}
.y246{bottom:208.365000px;}
.y12c{bottom:209.017350px;}
.yc6{bottom:209.835900px;}
.ya8{bottom:210.140400px;}
.y169{bottom:210.299850px;}
.y86{bottom:212.375550px;}
.y3d{bottom:212.455200px;}
.y1a4{bottom:213.805350px;}
.y60{bottom:214.111350px;}
.y19{bottom:223.332300px;}
.y1e5{bottom:227.052900px;}
.y206{bottom:227.582850px;}
.y106{bottom:227.719800px;}
.y1c6{bottom:227.963100px;}
.ye2{bottom:228.447750px;}
.y245{bottom:228.795000px;}
.yc5{bottom:230.087400px;}
.y181{bottom:230.394300px;}
.y168{bottom:230.551350px;}
.y85{bottom:233.299800px;}
.y3c{bottom:233.672700px;}
.y1a3{bottom:235.333350px;}
.y5f{bottom:235.673850px;}
.y18{bottom:242.847300px;}
.y1e4{bottom:247.795650px;}
.y105{bottom:247.988550px;}
.y1c5{bottom:248.249100px;}
.y205{bottom:248.388600px;}
.ye1{bottom:248.802750px;}
.y244{bottom:249.225000px;}
.y14b{bottom:249.349500px;}
.yc4{bottom:250.338900px;}
.y180{bottom:250.697550px;}
.y167{bottom:250.802850px;}
.ya7{bottom:252.163950px;}
.y84{bottom:254.224050px;}
.y3b{bottom:254.890200px;}
.y1a2{bottom:256.861350px;}
.y5e{bottom:257.236350px;}
.y17{bottom:262.362300px;}
.y104{bottom:268.257300px;}
.y1c4{bottom:268.535100px;}
.y204{bottom:269.194350px;}
.y243{bottom:269.655000px;}
.yc3{bottom:270.590400px;}
.y17f{bottom:271.000800px;}
.y166{bottom:271.054350px;}
.y12b{bottom:271.161600px;}
.y83{bottom:275.148300px;}
.y3a{bottom:276.107700px;}
.ya6{bottom:276.686700px;}
.y1e3{bottom:277.043400px;}
.y1a1{bottom:278.389350px;}
.y5d{bottom:278.798850px;}
.y16{bottom:281.877300px;}
.y103{bottom:288.526050px;}
.y1c3{bottom:288.821100px;}
.y242{bottom:290.085000px;}
.ye0{bottom:290.430300px;}
.yc2{bottom:290.841900px;}
.y17e{bottom:291.304050px;}
.y165{bottom:291.305850px;}
.y12a{bottom:291.533850px;}
.y82{bottom:295.898100px;}
.y39{bottom:297.325200px;}
.y1e2{bottom:297.786150px;}
.y203{bottom:298.505100px;}
.y1a0{bottom:299.917350px;}
.y5c{bottom:300.361350px;}
.y15{bottom:301.392300px;}
.y102{bottom:308.794800px;}
.y1c2{bottom:309.107100px;}
.y241{bottom:310.515000px;}
.yc1{bottom:311.093400px;}
.y164{bottom:311.557350px;}
.y14a{bottom:311.602500px;}
.y17d{bottom:311.607300px;}
.y129{bottom:311.906100px;}
.ydf{bottom:314.527800px;}
.y81{bottom:316.822350px;}
.y38{bottom:318.542700px;}
.y202{bottom:319.310850px;}
.y14{bottom:320.907300px;}
.y19f{bottom:321.445350px;}
.y5b{bottom:321.923850px;}
.y1e1{bottom:327.033900px;}
.y101{bottom:329.063550px;}
.y1c1{bottom:329.393100px;}
.y240{bottom:330.945000px;}
.yc0{bottom:331.344900px;}
.y163{bottom:331.808850px;}
.y149{bottom:331.905750px;}
.y17c{bottom:331.910550px;}
.y128{bottom:332.278350px;}
.y80{bottom:337.746600px;}
.ya5{bottom:339.453150px;}
.y37{bottom:339.760200px;}
.y201{bottom:340.116600px;}
.y13{bottom:340.422300px;}
.y19e{bottom:342.973350px;}
.y5a{bottom:343.486350px;}
.y1e0{bottom:347.776650px;}
.y21f{bottom:349.031100px;}
.y100{bottom:349.332300px;}
.y1c0{bottom:349.679100px;}
.y23f{bottom:351.375000px;}
.ybf{bottom:351.596400px;}
.y162{bottom:352.060350px;}
.y148{bottom:352.209000px;}
.y17b{bottom:352.213800px;}
.y127{bottom:352.650600px;}
.y7f{bottom:358.670850px;}
.y12{bottom:359.937300px;}
.ya4{bottom:360.222150px;}
.y200{bottom:360.922350px;}
.y36{bottom:360.977700px;}
.y19d{bottom:364.501350px;}
.y59{bottom:365.048850px;}
.yff{bottom:369.601050px;}
.y1bf{bottom:369.965100px;}
.y23e{bottom:371.805000px;}
.y161{bottom:372.311850px;}
.y147{bottom:372.512250px;}
.y17a{bottom:372.517050px;}
.y126{bottom:373.022850px;}
.yde{bottom:376.924200px;}
.y1df{bottom:377.024400px;}
.y21e{bottom:377.790600px;}
.y11{bottom:379.452300px;}
.y7e{bottom:379.595100px;}
.ya3{bottom:380.991150px;}
.y35{bottom:382.195200px;}
.y19c{bottom:386.029350px;}
.y58{bottom:386.611350px;}
.yfe{bottom:389.869800px;}
.y1ff{bottom:390.233100px;}
.y23d{bottom:392.235000px;}
.y160{bottom:392.563350px;}
.y146{bottom:392.815500px;}
.y179{bottom:392.820300px;}
.y125{bottom:393.395100px;}
.ydd{bottom:397.279200px;}
.y1de{bottom:397.767150px;}
.y10{bottom:398.967300px;}
.y7d{bottom:400.519350px;}
.ya2{bottom:401.760150px;}
.y21d{bottom:406.550100px;}
.y19b{bottom:407.557350px;}
.y57{bottom:408.173850px;}
.yfd{bottom:410.138550px;}
.y1fe{bottom:411.038850px;}
.y1be{bottom:411.507000px;}
.ybe{bottom:412.346400px;}
.y23c{bottom:412.665000px;}
.y15f{bottom:412.814850px;}
.y145{bottom:413.118750px;}
.y178{bottom:413.123550px;}
.y124{bottom:413.767350px;}
.ydc{bottom:417.634200px;}
.y1dd{bottom:418.509900px;}
.y7c{bottom:421.443600px;}
.ya1{bottom:422.529150px;}
.y34{bottom:424.677750px;}
.y19a{bottom:429.085350px;}
.y56{bottom:429.736350px;}
.yfc{bottom:430.407300px;}
.yf{bottom:431.232300px;}
.y1fd{bottom:431.844600px;}
.ybd{bottom:432.596400px;}
.y15e{bottom:433.066350px;}
.y23b{bottom:433.095000px;}
.y144{bottom:433.422000px;}
.y177{bottom:433.426800px;}
.y123{bottom:434.139600px;}
.y21c{bottom:435.309600px;}
.ydb{bottom:437.989200px;}
.y1dc{bottom:439.252650px;}
.y7b{bottom:442.367850px;}
.ya0{bottom:443.298150px;}
.y199{bottom:450.613350px;}
.yfb{bottom:450.676050px;}
.y55{bottom:451.298850px;}
.y15d{bottom:453.317850px;}
.y23a{bottom:453.525000px;}
.y143{bottom:453.725250px;}
.y176{bottom:453.730050px;}
.y122{bottom:454.511850px;}
.yda{bottom:458.344200px;}
.y1db{bottom:459.995400px;}
.y1fc{bottom:461.155350px;}
.y7a{bottom:463.292100px;}
.y9f{bottom:464.067150px;}
.y21b{bottom:464.069100px;}
.yfa{bottom:470.944800px;}
.y198{bottom:472.141350px;}
.y54{bottom:472.861350px;}
.y15c{bottom:473.569350px;}
.y1bd{bottom:473.730300px;}
.y239{bottom:473.955000px;}
.y142{bottom:474.028500px;}
.y175{bottom:474.033300px;}
.y121{bottom:474.884100px;}
.yd9{bottom:478.699200px;}
.y1fb{bottom:481.961100px;}
.y79{bottom:484.216350px;}
.y9e{bottom:484.836150px;}
.ye{bottom:489.016050px;}
.y1da{bottom:489.243150px;}
.yf9{bottom:491.213550px;}
.y21a{bottom:492.828600px;}
.y197{bottom:493.669350px;}
.y15b{bottom:493.820850px;}
.y1bc{bottom:494.016300px;}
.y141{bottom:494.331750px;}
.y174{bottom:494.336550px;}
.y238{bottom:494.385000px;}
.y53{bottom:494.423850px;}
.y120{bottom:495.256350px;}
.yd8{bottom:499.054200px;}
.y78{bottom:505.140600px;}
.y9d{bottom:505.605150px;}
.y33{bottom:509.138850px;}
.y1d9{bottom:509.985900px;}
.y1fa{bottom:511.271850px;}
.yf8{bottom:511.482300px;}
.y15a{bottom:514.072350px;}
.y1bb{bottom:514.302300px;}
.y140{bottom:514.635000px;}
.y173{bottom:514.639800px;}
.y237{bottom:514.815000px;}
.y196{bottom:515.197350px;}
.y11f{bottom:515.628600px;}
.y52{bottom:515.986350px;}
.yd{bottom:516.022050px;}
.yd7{bottom:519.409200px;}
.y219{bottom:521.588100px;}
.y77{bottom:526.064850px;}
.y9c{bottom:526.374150px;}
.y1d8{bottom:530.728650px;}
.y32{bottom:531.113850px;}
.yf7{bottom:531.751050px;}
.y1f9{bottom:532.077600px;}
.y159{bottom:534.323850px;}
.y1ba{bottom:534.588300px;}
.y13f{bottom:534.938250px;}
.y172{bottom:534.943050px;}
.y236{bottom:535.245000px;}
.y11e{bottom:536.000850px;}
.y195{bottom:536.725350px;}
.y51{bottom:537.548850px;}
.yd6{bottom:539.764200px;}
.y76{bottom:546.989100px;}
.y9b{bottom:547.143150px;}
.y218{bottom:550.347600px;}
.y1d7{bottom:551.471400px;}
.yf6{bottom:552.019800px;}
.y31{bottom:553.062750px;}
.y1b9{bottom:554.874300px;}
.y13e{bottom:555.241500px;}
.y171{bottom:555.246300px;}
.y235{bottom:555.675000px;}
.y11d{bottom:556.373100px;}
.y194{bottom:558.253350px;}
.y50{bottom:559.111350px;}
.y1f8{bottom:561.388350px;}
.yc{bottom:564.297150px;}
.y9a{bottom:567.912150px;}
.y75{bottom:567.913350px;}
.yf5{bottom:572.288550px;}
.y30{bottom:573.537750px;}
.y1b8{bottom:575.160300px;}
.y13d{bottom:575.544750px;}
.ybc{bottom:575.675400px;}
.y158{bottom:575.833650px;}
.y234{bottom:576.105000px;}
.y11c{bottom:576.745350px;}
.y217{bottom:579.107100px;}
.y193{bottom:579.781350px;}
.y4f{bottom:580.673850px;}
.y1d6{bottom:580.719150px;}
.yd5{bottom:581.391900px;}
.y1f7{bottom:582.194100px;}
.y99{bottom:588.681150px;}
.y74{bottom:588.837600px;}
.y2f{bottom:594.012750px;}
.y1b7{bottom:595.446300px;}
.yb{bottom:595.806150px;}
.ybb{bottom:595.926900px;}
.y233{bottom:596.535000px;}
.y170{bottom:596.804550px;}
.y11b{bottom:597.117600px;}
.y192{bottom:601.309350px;}
.y4e{bottom:602.236350px;}
.yd4{bottom:605.489400px;}
.y216{bottom:607.866600px;}
.y98{bottom:609.450150px;}
.y73{bottom:609.761850px;}
.y1f6{bottom:611.504850px;}
.yf4{bottom:613.802700px;}
.y2e{bottom:614.487750px;}
.y1b6{bottom:615.732300px;}
.yba{bottom:616.178400px;}
.y232{bottom:616.965000px;}
.y13c{bottom:617.102850px;}
.y11a{bottom:617.489850px;}
.y191{bottom:622.837350px;}
.y4d{bottom:623.798850px;}
.ya{bottom:627.315150px;}
.y97{bottom:630.219150px;}
.y72{bottom:630.686100px;}
.y1f5{bottom:632.310600px;}
.y2d{bottom:634.962750px;}
.y1b5{bottom:636.018300px;}
.yb9{bottom:636.429900px;}
.y215{bottom:636.626100px;}
.y231{bottom:637.395000px;}
.yf3{bottom:637.819200px;}
.y119{bottom:637.862100px;}
.y157{bottom:638.099850px;}
.y190{bottom:644.365350px;}
.y4c{bottom:645.361350px;}
.y96{bottom:650.988150px;}
.y71{bottom:651.610350px;}
.y1d5{bottom:652.679400px;}
.y1f4{bottom:653.116350px;}
.y2c{bottom:655.437750px;}
.y1b4{bottom:656.304300px;}
.yb8{bottom:656.681400px;}
.y230{bottom:657.825000px;}
.y118{bottom:658.234350px;}
.y156{bottom:658.351350px;}
.y16f{bottom:659.062350px;}
.y214{bottom:665.385600px;}
.y18f{bottom:665.893350px;}
.y4b{bottom:666.923850px;}
.y95{bottom:671.757150px;}
.y70{bottom:672.534600px;}
.y1d4{bottom:673.431150px;}
.y1f3{bottom:673.922100px;}
.y2b{bottom:675.912750px;}
.y1b3{bottom:676.590300px;}
.yb7{bottom:676.932900px;}
.y22f{bottom:678.255000px;}
.y117{bottom:678.606600px;}
.y13b{bottom:679.365600px;}
.y253{bottom:683.697750px;}
.y18e{bottom:687.421350px;}
.y4a{bottom:688.486350px;}
.y9{bottom:688.581000px;}
.y94{bottom:692.526150px;}
.y6f{bottom:693.458850px;}
.y1d3{bottom:694.182900px;}
.yd3{bottom:695.923050px;}
.y2a{bottom:696.387750px;}
.y1b2{bottom:696.876300px;}
.yb6{bottom:697.184400px;}
.y22e{bottom:698.685000px;}
.y155{bottom:698.851350px;}
.y116{bottom:698.978850px;}
.y13a{bottom:699.668850px;}
.yf2{bottom:700.013850px;}
.y1f2{bottom:703.232850px;}
.y252{bottom:703.947750px;}
.y18d{bottom:708.949350px;}
.y8{bottom:709.596000px;}
.y49{bottom:710.048850px;}
.y93{bottom:713.295150px;}
.y6e{bottom:714.383100px;}
.y1d2{bottom:714.934650px;}
.y213{bottom:716.147850px;}
.y29{bottom:716.862750px;}
.y1b1{bottom:717.162300px;}
.yb5{bottom:717.435900px;}
.yd2{bottom:718.648050px;}
.y22d{bottom:719.115000px;}
.y115{bottom:719.351100px;}
.y139{bottom:719.972100px;}
.yf1{bottom:720.282600px;}
.y1f1{bottom:724.038600px;}
.y251{bottom:724.197750px;}
.y18c{bottom:730.477350px;}
.y48{bottom:731.611350px;}
.y92{bottom:734.064150px;}
.y6d{bottom:735.307350px;}
.y1d1{bottom:735.686400px;}
.y212{bottom:736.402350px;}
.y28{bottom:737.337750px;}
.y1b0{bottom:737.448300px;}
.yb4{bottom:737.687400px;}
.y7{bottom:739.116000px;}
.y22c{bottom:739.545000px;}
.y114{bottom:739.723350px;}
.y138{bottom:740.275350px;}
.yf0{bottom:740.551350px;}
.yd1{bottom:741.373050px;}
.y18b{bottom:752.005350px;}
.y47{bottom:753.173850px;}
.y1f0{bottom:753.349350px;}
.y91{bottom:754.833150px;}
.y6c{bottom:756.231600px;}
.y1d0{bottom:756.438150px;}
.y211{bottom:756.656850px;}
.y250{bottom:757.197750px;}
.y1af{bottom:757.734300px;}
.y27{bottom:757.812750px;}
.yb3{bottom:757.938900px;}
.y22b{bottom:759.975000px;}
.y113{bottom:760.095600px;}
.y6{bottom:760.127100px;}
.y137{bottom:760.578600px;}
.yef{bottom:760.820100px;}
.yd0{bottom:764.098050px;}
.y18a{bottom:773.533350px;}
.y1ef{bottom:774.155100px;}
.y46{bottom:774.736350px;}
.y90{bottom:775.602150px;}
.y6b{bottom:777.155850px;}
.y1cf{bottom:777.189900px;}
.y24f{bottom:777.447750px;}
.y1ae{bottom:778.020300px;}
.yb2{bottom:778.190400px;}
.y26{bottom:778.287750px;}
.y22a{bottom:780.405000px;}
.y112{bottom:780.467850px;}
.y136{bottom:780.881850px;}
.yee{bottom:781.088850px;}
.y210{bottom:785.416350px;}
.ycf{bottom:786.823050px;}
.y189{bottom:795.061350px;}
.y8f{bottom:796.371150px;}
.y24e{bottom:797.697750px;}
.y6a{bottom:798.080100px;}
.y1ad{bottom:798.306300px;}
.yb1{bottom:798.441900px;}
.y25{bottom:798.762750px;}
.y111{bottom:800.840100px;}
.y135{bottom:801.185100px;}
.yed{bottom:801.357600px;}
.y1ee{bottom:803.465850px;}
.y20f{bottom:805.670850px;}
.yce{bottom:809.548050px;}
.y5{bottom:810.901950px;}
.y229{bottom:813.585000px;}
.y188{bottom:816.589350px;}
.y8e{bottom:817.140150px;}
.y45{bottom:817.558650px;}
.y1ac{bottom:818.592300px;}
.yb0{bottom:818.693400px;}
.y69{bottom:819.004350px;}
.y1ce{bottom:819.194400px;}
.y110{bottom:821.212350px;}
.y134{bottom:821.488350px;}
.yec{bottom:821.626350px;}
.y223{bottom:822.694350px;}
.y1ed{bottom:824.271600px;}
.y24d{bottom:830.697750px;}
.y4{bottom:831.912900px;}
.y24{bottom:831.987750px;}
.ycd{bottom:832.273050px;}
.y20e{bottom:834.430350px;}
.y8d{bottom:837.909150px;}
.y187{bottom:838.117350px;}
.y1ab{bottom:838.878300px;}
.yaf{bottom:838.944900px;}
.y68{bottom:839.928600px;}
.y10f{bottom:841.584600px;}
.y133{bottom:841.791600px;}
.yeb{bottom:841.895100px;}
.y154{bottom:841.946850px;}
.y226{bottom:842.197350px;}
.y222{bottom:842.945850px;}
.y24c{bottom:850.947750px;}
.y1ec{bottom:853.582350px;}
.y20d{bottom:854.684850px;}
.ycc{bottom:854.998050px;}
.y8c{bottom:858.678150px;}
.y1aa{bottom:859.164300px;}
.yae{bottom:859.196400px;}
.y186{bottom:859.645350px;}
.y67{bottom:860.852850px;}
.y10e{bottom:861.956850px;}
.y132{bottom:862.094850px;}
.yea{bottom:862.163850px;}
.y153{bottom:862.198350px;}
.y225{bottom:862.448850px;}
.y221{bottom:863.197350px;}
.y24b{bottom:871.197750px;}
.y228{bottom:872.277450px;}
.y1eb{bottom:874.388100px;}
.y44{bottom:881.138850px;}
.y185{bottom:881.173350px;}
.y66{bottom:881.777100px;}
.y1cd{bottom:881.949600px;}
.y23{bottom:882.222750px;}
.y10d{bottom:882.329100px;}
.y131{bottom:882.398100px;}
.ye9{bottom:882.432600px;}
.y152{bottom:882.449850px;}
.y3{bottom:882.687900px;}
.y224{bottom:882.704100px;}
.y20c{bottom:883.444350px;}
.y220{bottom:883.448850px;}
.ycb{bottom:884.592750px;}
.y227{bottom:900.207450px;}
.y8b{bottom:900.706200px;}
.y43{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:904.197750px;}
.y21{bottom:948.189000px;}
.y20{bottom:966.189000px;}
.hb{height:40.620539px;}
.h7{height:41.396484px;}
.ha{height:46.757812px;}
.hd{height:51.826172px;}
.hc{height:52.602539px;}
.he{height:55.488281px;}
.h4{height:58.447266px;}
.h3{height:61.369629px;}
.h9{height:67.214355px;}
.h2{height:73.059082px;}
.h8{height:78.903809px;}
.h6{height:81.826172px;}
.h5{height:105.205078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:82.214250px;}
.x7{left:83.415750px;}
.x6{left:85.395750px;}
.xf{left:96.251550px;}
.x5{left:104.655750px;}
.x9{left:105.717300px;}
.x10{left:114.622800px;}
.xa{left:148.898550px;}
.xe{left:172.917750px;}
.xd{left:191.708700px;}
.xc{left:201.158850px;}
.xb{left:202.516950px;}
.x8{left:212.663850px;}
.x4{left:230.462400px;}
.x3{left:232.076250px;}
.x2{left:233.345250px;}
.x11{left:234.444900px;}
@media print{
.v2{vertical-align:-15.090667pt;}
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.710933pt;}
.ls4a{letter-spacing:-3.925333pt;}
.ls1{letter-spacing:-3.733333pt;}
.ls30{letter-spacing:-3.520000pt;}
.ls7a{letter-spacing:-3.472000pt;}
.ls5a{letter-spacing:-3.394667pt;}
.ls38{letter-spacing:-3.096000pt;}
.ls45{letter-spacing:-2.944000pt;}
.ls87{letter-spacing:-2.933333pt;}
.ls65{letter-spacing:-2.912000pt;}
.ls7d{letter-spacing:-2.866667pt;}
.ls59{letter-spacing:-2.760000pt;}
.ls1a{letter-spacing:-2.453333pt;}
.ls89{letter-spacing:-2.346667pt;}
.ls53{letter-spacing:-2.269333pt;}
.ls43{letter-spacing:-2.266667pt;}
.ls86{letter-spacing:-2.080000pt;}
.ls79{letter-spacing:-2.072000pt;}
.ls75{letter-spacing:-2.016000pt;}
.ls6f{letter-spacing:-1.960000pt;}
.ls27{letter-spacing:-1.874667pt;}
.ls2e{letter-spacing:-1.866667pt;}
.ls4b{letter-spacing:-1.840000pt;}
.ls20{letter-spacing:-1.656000pt;}
.ls48{letter-spacing:-1.594667pt;}
.ls29{letter-spacing:-1.533333pt;}
.ls3d{letter-spacing:-1.440000pt;}
.ls3c{letter-spacing:-1.410667pt;}
.ls77{letter-spacing:-1.344000pt;}
.ls7e{letter-spacing:-1.288000pt;}
.ls31{letter-spacing:-1.280000pt;}
.ls5f{letter-spacing:-1.226667pt;}
.ls50{letter-spacing:-1.165333pt;}
.ls7b{letter-spacing:-1.120000pt;}
.ls5b{letter-spacing:-1.104000pt;}
.ls13{letter-spacing:-1.080000pt;}
.ls36{letter-spacing:-1.066667pt;}
.ls49{letter-spacing:-1.042667pt;}
.ls4f{letter-spacing:-0.981333pt;}
.ls4e{letter-spacing:-0.920000pt;}
.ls3a{letter-spacing:-0.858667pt;}
.ls76{letter-spacing:-0.840000pt;}
.ls23{letter-spacing:-0.797333pt;}
.ls12{letter-spacing:-0.760000pt;}
.lsa{letter-spacing:-0.746667pt;}
.ls18{letter-spacing:-0.736000pt;}
.ls33{letter-spacing:-0.693333pt;}
.ls44{letter-spacing:-0.674667pt;}
.ls72{letter-spacing:-0.672000pt;}
.ls68{letter-spacing:-0.616000pt;}
.ls1d{letter-spacing:-0.613333pt;}
.ls8c{letter-spacing:-0.586667pt;}
.ls70{letter-spacing:-0.560000pt;}
.ls39{letter-spacing:-0.557333pt;}
.ls1f{letter-spacing:-0.552000pt;}
.ls61{letter-spacing:-0.506667pt;}
.ls69{letter-spacing:-0.504000pt;}
.ls4d{letter-spacing:-0.490667pt;}
.ls25{letter-spacing:-0.429333pt;}
.ls8d{letter-spacing:-0.426667pt;}
.ls6d{letter-spacing:-0.392000pt;}
.ls32{letter-spacing:-0.373333pt;}
.ls4c{letter-spacing:-0.368000pt;}
.ls74{letter-spacing:-0.336000pt;}
.ls16{letter-spacing:-0.306667pt;}
.ls2f{letter-spacing:-0.266667pt;}
.ls47{letter-spacing:-0.245333pt;}
.ls6a{letter-spacing:-0.224000pt;}
.lsd{letter-spacing:-0.213333pt;}
.ls5e{letter-spacing:-0.184000pt;}
.ls4{letter-spacing:-0.168000pt;}
.ls35{letter-spacing:-0.160000pt;}
.ls54{letter-spacing:-0.152000pt;}
.ls19{letter-spacing:-0.122667pt;}
.ls6e{letter-spacing:-0.112000pt;}
.ls46{letter-spacing:-0.061333pt;}
.ls10{letter-spacing:-0.053333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000267pt;}
.ls2c{letter-spacing:0.061333pt;}
.ls17{letter-spacing:0.072000pt;}
.ls57{letter-spacing:0.122667pt;}
.ls41{letter-spacing:0.429333pt;}
.ls2b{letter-spacing:0.552000pt;}
.ls6b{letter-spacing:0.560000pt;}
.ls28{letter-spacing:0.576000pt;}
.ls34{letter-spacing:0.640000pt;}
.ls56{letter-spacing:0.648000pt;}
.ls5d{letter-spacing:0.674667pt;}
.lsf{letter-spacing:0.746667pt;}
.ls88{letter-spacing:0.800000pt;}
.ls24{letter-spacing:0.920000pt;}
.ls21{letter-spacing:0.981333pt;}
.ls7f{letter-spacing:1.008000pt;}
.ls42{letter-spacing:1.042667pt;}
.ls64{letter-spacing:1.064000pt;}
.ls52{letter-spacing:1.104000pt;}
.ls3{letter-spacing:1.120000pt;}
.ls6c{letter-spacing:1.176000pt;}
.ls7{letter-spacing:1.288000pt;}
.ls37{letter-spacing:1.317333pt;}
.ls78{letter-spacing:1.344000pt;}
.ls66{letter-spacing:1.512000pt;}
.ls58{letter-spacing:1.533333pt;}
.ls85{letter-spacing:1.546667pt;}
.ls3f{letter-spacing:1.594667pt;}
.ls3e{letter-spacing:1.840000pt;}
.ls8a{letter-spacing:2.026667pt;}
.ls15{letter-spacing:2.133333pt;}
.ls11{letter-spacing:3.285333pt;}
.ls84{letter-spacing:3.306667pt;}
.ls71{letter-spacing:3.640000pt;}
.ls2a{letter-spacing:3.733333pt;}
.lse{letter-spacing:4.853333pt;}
.ls1e{letter-spacing:5.029333pt;}
.ls82{letter-spacing:5.040000pt;}
.ls5{letter-spacing:5.120000pt;}
.ls8{letter-spacing:5.173333pt;}
.lsb{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls73{letter-spacing:5.376000pt;}
.ls67{letter-spacing:5.488000pt;}
.ls63{letter-spacing:5.600000pt;}
.ls80{letter-spacing:6.048000pt;}
.ls62{letter-spacing:6.272000pt;}
.ls6{letter-spacing:6.453333pt;}
.ls55{letter-spacing:422.348267pt;}
.ls2d{letter-spacing:422.614933pt;}
.ls5c{letter-spacing:422.814933pt;}
.ls83{letter-spacing:422.988267pt;}
.ls60{letter-spacing:423.181333pt;}
.ls7c{letter-spacing:423.321600pt;}
.ls8b{letter-spacing:423.521600pt;}
.ls0{letter-spacing:423.674667pt;}
.ls14{letter-spacing:424.208000pt;}
.ls22{letter-spacing:424.374933pt;}
.ls40{letter-spacing:425.341333pt;}
.ls81{letter-spacing:425.854933pt;}
.ls26{letter-spacing:846.686933pt;}
.ls51{letter-spacing:847.126933pt;}
.lsc{letter-spacing:849.460267pt;}
.ls1b{letter-spacing:853.060267pt;}
.ls3b{letter-spacing:854.820267pt;}
.ws74{word-spacing:-22.008000pt;}
.ws93{word-spacing:-21.784000pt;}
.ws98{word-spacing:-21.112000pt;}
.ws99{word-spacing:-20.776000pt;}
.ws4{word-spacing:-20.213333pt;}
.ws73{word-spacing:-19.152000pt;}
.ws42{word-spacing:-18.792000pt;}
.ws9a{word-spacing:-18.293333pt;}
.ws22{word-spacing:-17.786667pt;}
.ws4d{word-spacing:-17.234667pt;}
.ws3c{word-spacing:-17.136000pt;}
.ws53{word-spacing:-17.112000pt;}
.ws2{word-spacing:-17.024000pt;}
.ws28{word-spacing:-16.866667pt;}
.ws72{word-spacing:-16.682667pt;}
.ws6e{word-spacing:-16.560000pt;}
.ws45{word-spacing:-16.466667pt;}
.ws3{word-spacing:-16.106667pt;}
.ws91{word-spacing:-15.866667pt;}
.ws6d{word-spacing:-15.824000pt;}
.ws52{word-spacing:-15.640000pt;}
.ws66{word-spacing:-15.578667pt;}
.ws92{word-spacing:-15.512000pt;}
.ws75{word-spacing:-15.232000pt;}
.ws77{word-spacing:-15.176000pt;}
.ws4f{word-spacing:-15.149333pt;}
.ws0{word-spacing:-15.000000pt;}
.ws4a{word-spacing:-14.904000pt;}
.ws31{word-spacing:-14.826667pt;}
.ws50{word-spacing:-14.781333pt;}
.ws9b{word-spacing:-14.720000pt;}
.ws51{word-spacing:-14.658667pt;}
.ws88{word-spacing:-14.616000pt;}
.ws1a{word-spacing:-14.536000pt;}
.ws46{word-spacing:-14.474667pt;}
.ws6c{word-spacing:-14.413333pt;}
.ws70{word-spacing:-14.352000pt;}
.ws2e{word-spacing:-14.293333pt;}
.ws47{word-spacing:-14.290667pt;}
.ws6b{word-spacing:-14.229333pt;}
.ws14{word-spacing:-14.122667pt;}
.ws4c{word-spacing:-14.106667pt;}
.ws67{word-spacing:-13.984000pt;}
.ws6f{word-spacing:-13.922667pt;}
.ws41{word-spacing:-13.738667pt;}
.ws5a{word-spacing:-13.616000pt;}
.ws4b{word-spacing:-13.554667pt;}
.ws85{word-spacing:-13.328000pt;}
.ws2b{word-spacing:-13.120000pt;}
.ws60{word-spacing:-12.800000pt;}
.wsa8{word-spacing:-12.746667pt;}
.ws49{word-spacing:-12.696000pt;}
.wsa7{word-spacing:-12.586667pt;}
.ws87{word-spacing:-12.488000pt;}
.ws48{word-spacing:-12.205333pt;}
.ws76{word-spacing:-11.872000pt;}
.ws86{word-spacing:-11.816000pt;}
.ws1{word-spacing:-11.610667pt;}
.ws4e{word-spacing:-11.224000pt;}
.ws9{word-spacing:-6.453333pt;}
.ws7a{word-spacing:-5.600000pt;}
.ws7e{word-spacing:-5.488000pt;}
.ws8b{word-spacing:-5.376000pt;}
.ws6{word-spacing:-5.333333pt;}
.wsa{word-spacing:-5.173333pt;}
.ws8{word-spacing:-5.120000pt;}
.ws1b{word-spacing:-5.029333pt;}
.wsd{word-spacing:-4.853333pt;}
.ws26{word-spacing:-3.733333pt;}
.ws89{word-spacing:-3.640000pt;}
.ws10{word-spacing:-3.285333pt;}
.wsa6{word-spacing:-2.026667pt;}
.ws43{word-spacing:-1.840000pt;}
.ws97{word-spacing:-1.736000pt;}
.ws44{word-spacing:-1.594667pt;}
.ws9c{word-spacing:-1.546667pt;}
.ws63{word-spacing:-1.533333pt;}
.ws7d{word-spacing:-1.512000pt;}
.ws8e{word-spacing:-1.344000pt;}
.ws3e{word-spacing:-1.317333pt;}
.ws95{word-spacing:-1.288000pt;}
.ws82{word-spacing:-1.176000pt;}
.ws11{word-spacing:-1.120000pt;}
.ws5d{word-spacing:-1.104000pt;}
.ws7b{word-spacing:-1.064000pt;}
.ws96{word-spacing:-1.008000pt;}
.ws1e{word-spacing:-0.981333pt;}
.ws20{word-spacing:-0.920000pt;}
.wsa4{word-spacing:-0.800000pt;}
.wse{word-spacing:-0.746667pt;}
.ws61{word-spacing:-0.648000pt;}
.ws24{word-spacing:-0.576000pt;}
.ws81{word-spacing:-0.560000pt;}
.ws5c{word-spacing:-0.552000pt;}
.ws62{word-spacing:-0.122667pt;}
.ws16{word-spacing:-0.072000pt;}
.ws27{word-spacing:-0.061333pt;}
.ws5{word-spacing:0.000000pt;}
.wsf{word-spacing:0.053333pt;}
.ws54{word-spacing:0.061333pt;}
.ws84{word-spacing:0.112000pt;}
.ws18{word-spacing:0.122667pt;}
.ws5f{word-spacing:0.152000pt;}
.ws9f{word-spacing:0.160000pt;}
.ws7{word-spacing:0.168000pt;}
.ws71{word-spacing:0.184000pt;}
.wsc{word-spacing:0.213333pt;}
.ws80{word-spacing:0.224000pt;}
.ws3d{word-spacing:0.266667pt;}
.ws15{word-spacing:0.306667pt;}
.ws8c{word-spacing:0.336000pt;}
.wsa0{word-spacing:0.373333pt;}
.ws83{word-spacing:0.392000pt;}
.ws21{word-spacing:0.429333pt;}
.ws65{word-spacing:0.490667pt;}
.ws78{word-spacing:0.506667pt;}
.ws1c{word-spacing:0.552000pt;}
.ws3f{word-spacing:0.557333pt;}
.ws57{word-spacing:0.613333pt;}
.ws7f{word-spacing:0.616000pt;}
.ws8a{word-spacing:0.672000pt;}
.ws55{word-spacing:0.674667pt;}
.ws9d{word-spacing:0.693333pt;}
.ws17{word-spacing:0.736000pt;}
.wsb{word-spacing:0.746667pt;}
.ws12{word-spacing:0.760000pt;}
.ws1f{word-spacing:0.797333pt;}
.ws8d{word-spacing:0.840000pt;}
.ws40{word-spacing:0.858667pt;}
.ws5b{word-spacing:0.920000pt;}
.ws58{word-spacing:0.981333pt;}
.wsa3{word-spacing:1.066667pt;}
.ws13{word-spacing:1.080000pt;}
.ws6a{word-spacing:1.104000pt;}
.ws59{word-spacing:1.165333pt;}
.ws79{word-spacing:1.226667pt;}
.ws94{word-spacing:1.288000pt;}
.ws9e{word-spacing:1.440000pt;}
.ws25{word-spacing:1.533333pt;}
.ws64{word-spacing:1.594667pt;}
.ws1d{word-spacing:1.656000pt;}
.ws56{word-spacing:1.840000pt;}
.ws23{word-spacing:1.874667pt;}
.ws8f{word-spacing:2.072000pt;}
.wsa1{word-spacing:2.080000pt;}
.ws5e{word-spacing:2.269333pt;}
.wsa5{word-spacing:2.346667pt;}
.ws19{word-spacing:2.453333pt;}
.ws68{word-spacing:2.760000pt;}
.ws7c{word-spacing:2.912000pt;}
.wsa2{word-spacing:2.933333pt;}
.ws69{word-spacing:3.394667pt;}
.ws90{word-spacing:3.472000pt;}
.ws39{word-spacing:176.090667pt;}
.ws36{word-spacing:193.194667pt;}
.ws33{word-spacing:199.658667pt;}
.ws30{word-spacing:237.130667pt;}
.ws2c{word-spacing:238.256000pt;}
.ws37{word-spacing:239.616000pt;}
.ws3a{word-spacing:246.256000pt;}
.ws34{word-spacing:255.861333pt;}
.ws2d{word-spacing:256.992000pt;}
.ws35{word-spacing:273.226667pt;}
.ws2f{word-spacing:310.320000pt;}
.ws38{word-spacing:312.325333pt;}
.ws2a{word-spacing:326.533333pt;}
.ws29{word-spacing:335.104000pt;}
.ws32{word-spacing:357.616000pt;}
.ws3b{word-spacing:409.386667pt;}
._1e{margin-left:-10.882133pt;}
._1f{margin-left:-9.785867pt;}
._1b{margin-left:-8.232000pt;}
._1a{margin-left:-7.079467pt;}
._12{margin-left:-5.655467pt;}
._5{margin-left:-4.526667pt;}
._8{margin-left:-3.566400pt;}
._4{margin-left:-2.290400pt;}
._7{margin-left:-1.224533pt;}
._2{width:0.938667pt;}
._3{width:2.025333pt;}
._1{width:3.726667pt;}
._0{width:4.993333pt;}
._6{width:6.092000pt;}
._e{width:7.524800pt;}
._9{width:9.060533pt;}
._10{width:10.688000pt;}
._14{width:11.821067pt;}
._17{width:13.523467pt;}
._1d{width:14.695200pt;}
._19{width:16.308800pt;}
._16{width:18.436533pt;}
._18{width:19.565067pt;}
._f{width:21.355200pt;}
._11{width:23.083200pt;}
._15{width:29.686400pt;}
._1c{width:33.133067pt;}
._c{width:36.787467pt;}
._13{width:38.617920pt;}
._b{width:45.024000pt;}
._d{width:224.896000pt;}
._a{width:514.133333pt;}
.fsc{font-size:27.984000pt;}
.fsb{font-size:35.757333pt;}
.fs3{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y10c{bottom:94.317600pt;}
.y1a9{bottom:94.369200pt;}
.y1f{bottom:94.437600pt;}
.y1cc{bottom:94.441867pt;}
.y151{bottom:94.466667pt;}
.y130{bottom:94.467733pt;}
.y184{bottom:94.483867pt;}
.yad{bottom:94.484800pt;}
.y8a{bottom:94.485600pt;}
.y65{bottom:94.487867pt;}
.ye8{bottom:94.504667pt;}
.y1ea{bottom:94.514800pt;}
.y42{bottom:94.549067pt;}
.y20b{bottom:94.705867pt;}
.y16e{bottom:96.926533pt;}
.y1e{bottom:111.784267pt;}
.y10b{bottom:112.334267pt;}
.y1cb{bottom:112.473867pt;}
.y89{bottom:112.484267pt;}
.y150{bottom:112.514000pt;}
.y183{bottom:112.531200pt;}
.y24a{bottom:112.573333pt;}
.y12f{bottom:112.576400pt;}
.ye7{bottom:112.598000pt;}
.yac{bottom:112.946133pt;}
.y1e9{bottom:112.952800pt;}
.y20a{bottom:113.199867pt;}
.y41{bottom:113.409067pt;}
.y1a8{bottom:113.505200pt;}
.y64{bottom:113.654533pt;}
.yca{bottom:114.515467pt;}
.y16d{bottom:114.927867pt;}
.y1d{bottom:129.130933pt;}
.y10a{bottom:130.350933pt;}
.y1ca{bottom:130.505867pt;}
.y14f{bottom:130.561333pt;}
.y12e{bottom:130.685067pt;}
.ye6{bottom:130.691333pt;}
.y249{bottom:130.733333pt;}
.y1e8{bottom:131.390800pt;}
.yab{bottom:131.407467pt;}
.y40{bottom:132.269067pt;}
.yc9{bottom:132.516800pt;}
.y1a7{bottom:132.641200pt;}
.y63{bottom:132.821200pt;}
.y16c{bottom:132.929200pt;}
.y209{bottom:139.253867pt;}
.y1c{bottom:146.477600pt;}
.y109{bottom:148.367600pt;}
.y1c9{bottom:148.537867pt;}
.y14e{bottom:148.608667pt;}
.ye5{bottom:148.784667pt;}
.y12d{bottom:148.793733pt;}
.y248{bottom:148.893333pt;}
.y182{bottom:149.471867pt;}
.yaa{bottom:149.868800pt;}
.yc8{bottom:150.518133pt;}
.y16b{bottom:150.930533pt;}
.y3f{bottom:151.129067pt;}
.y88{bottom:151.579600pt;}
.y1a6{bottom:151.777200pt;}
.y62{bottom:151.987867pt;}
.y1e7{bottom:157.388800pt;}
.y208{bottom:157.747867pt;}
.y1b{bottom:163.824267pt;}
.y108{bottom:166.384267pt;}
.y1c8{bottom:166.569867pt;}
.y14d{bottom:166.656000pt;}
.ye4{bottom:166.878000pt;}
.y247{bottom:167.053333pt;}
.ya9{bottom:168.330133pt;}
.yc7{bottom:168.519467pt;}
.y16a{bottom:168.931867pt;}
.y3e{bottom:169.989067pt;}
.y87{bottom:170.178933pt;}
.y1a5{bottom:170.913200pt;}
.y61{bottom:171.154533pt;}
.y1e6{bottom:175.826800pt;}
.y207{bottom:176.241867pt;}
.y1a{bottom:181.170933pt;}
.y107{bottom:184.400933pt;}
.y1c7{bottom:184.601867pt;}
.y14c{bottom:184.703333pt;}
.ye3{bottom:184.971333pt;}
.y246{bottom:185.213333pt;}
.y12c{bottom:185.793200pt;}
.yc6{bottom:186.520800pt;}
.ya8{bottom:186.791467pt;}
.y169{bottom:186.933200pt;}
.y86{bottom:188.778267pt;}
.y3d{bottom:188.849067pt;}
.y1a4{bottom:190.049200pt;}
.y60{bottom:190.321200pt;}
.y19{bottom:198.517600pt;}
.y1e5{bottom:201.824800pt;}
.y206{bottom:202.295867pt;}
.y106{bottom:202.417600pt;}
.y1c6{bottom:202.633867pt;}
.ye2{bottom:203.064667pt;}
.y245{bottom:203.373333pt;}
.yc5{bottom:204.522133pt;}
.y181{bottom:204.794933pt;}
.y168{bottom:204.934533pt;}
.y85{bottom:207.377600pt;}
.y3c{bottom:207.709067pt;}
.y1a3{bottom:209.185200pt;}
.y5f{bottom:209.487867pt;}
.y18{bottom:215.864267pt;}
.y1e4{bottom:220.262800pt;}
.y105{bottom:220.434267pt;}
.y1c5{bottom:220.665867pt;}
.y205{bottom:220.789867pt;}
.ye1{bottom:221.158000pt;}
.y244{bottom:221.533333pt;}
.y14b{bottom:221.644000pt;}
.yc4{bottom:222.523467pt;}
.y180{bottom:222.842267pt;}
.y167{bottom:222.935867pt;}
.ya7{bottom:224.145733pt;}
.y84{bottom:225.976933pt;}
.y3b{bottom:226.569067pt;}
.y1a2{bottom:228.321200pt;}
.y5e{bottom:228.654533pt;}
.y17{bottom:233.210933pt;}
.y104{bottom:238.450933pt;}
.y1c4{bottom:238.697867pt;}
.y204{bottom:239.283867pt;}
.y243{bottom:239.693333pt;}
.yc3{bottom:240.524800pt;}
.y17f{bottom:240.889600pt;}
.y166{bottom:240.937200pt;}
.y12b{bottom:241.032533pt;}
.y83{bottom:244.576267pt;}
.y3a{bottom:245.429067pt;}
.ya6{bottom:245.943733pt;}
.y1e3{bottom:246.260800pt;}
.y1a1{bottom:247.457200pt;}
.y5d{bottom:247.821200pt;}
.y16{bottom:250.557600pt;}
.y103{bottom:256.467600pt;}
.y1c3{bottom:256.729867pt;}
.y242{bottom:257.853333pt;}
.ye0{bottom:258.160267pt;}
.yc2{bottom:258.526133pt;}
.y17e{bottom:258.936933pt;}
.y165{bottom:258.938533pt;}
.y12a{bottom:259.141200pt;}
.y82{bottom:263.020533pt;}
.y39{bottom:264.289067pt;}
.y1e2{bottom:264.698800pt;}
.y203{bottom:265.337867pt;}
.y1a0{bottom:266.593200pt;}
.y5c{bottom:266.987867pt;}
.y15{bottom:267.904267pt;}
.y102{bottom:274.484267pt;}
.y1c2{bottom:274.761867pt;}
.y241{bottom:276.013333pt;}
.yc1{bottom:276.527467pt;}
.y164{bottom:276.939867pt;}
.y14a{bottom:276.980000pt;}
.y17d{bottom:276.984267pt;}
.y129{bottom:277.249867pt;}
.ydf{bottom:279.580267pt;}
.y81{bottom:281.619867pt;}
.y38{bottom:283.149067pt;}
.y202{bottom:283.831867pt;}
.y14{bottom:285.250933pt;}
.y19f{bottom:285.729200pt;}
.y5b{bottom:286.154533pt;}
.y1e1{bottom:290.696800pt;}
.y101{bottom:292.500933pt;}
.y1c1{bottom:292.793867pt;}
.y240{bottom:294.173333pt;}
.yc0{bottom:294.528800pt;}
.y163{bottom:294.941200pt;}
.y149{bottom:295.027333pt;}
.y17c{bottom:295.031600pt;}
.y128{bottom:295.358533pt;}
.y80{bottom:300.219200pt;}
.ya5{bottom:301.736133pt;}
.y37{bottom:302.009067pt;}
.y201{bottom:302.325867pt;}
.y13{bottom:302.597600pt;}
.y19e{bottom:304.865200pt;}
.y5a{bottom:305.321200pt;}
.y1e0{bottom:309.134800pt;}
.y21f{bottom:310.249867pt;}
.y100{bottom:310.517600pt;}
.y1c0{bottom:310.825867pt;}
.y23f{bottom:312.333333pt;}
.ybf{bottom:312.530133pt;}
.y162{bottom:312.942533pt;}
.y148{bottom:313.074667pt;}
.y17b{bottom:313.078933pt;}
.y127{bottom:313.467200pt;}
.y7f{bottom:318.818533pt;}
.y12{bottom:319.944267pt;}
.ya4{bottom:320.197467pt;}
.y200{bottom:320.819867pt;}
.y36{bottom:320.869067pt;}
.y19d{bottom:324.001200pt;}
.y59{bottom:324.487867pt;}
.yff{bottom:328.534267pt;}
.y1bf{bottom:328.857867pt;}
.y23e{bottom:330.493333pt;}
.y161{bottom:330.943867pt;}
.y147{bottom:331.122000pt;}
.y17a{bottom:331.126267pt;}
.y126{bottom:331.575867pt;}
.yde{bottom:335.043733pt;}
.y1df{bottom:335.132800pt;}
.y21e{bottom:335.813867pt;}
.y11{bottom:337.290933pt;}
.y7e{bottom:337.417867pt;}
.ya3{bottom:338.658800pt;}
.y35{bottom:339.729067pt;}
.y19c{bottom:343.137200pt;}
.y58{bottom:343.654533pt;}
.yfe{bottom:346.550933pt;}
.y1ff{bottom:346.873867pt;}
.y23d{bottom:348.653333pt;}
.y160{bottom:348.945200pt;}
.y146{bottom:349.169333pt;}
.y179{bottom:349.173600pt;}
.y125{bottom:349.684533pt;}
.ydd{bottom:353.137067pt;}
.y1de{bottom:353.570800pt;}
.y10{bottom:354.637600pt;}
.y7d{bottom:356.017200pt;}
.ya2{bottom:357.120133pt;}
.y21d{bottom:361.377867pt;}
.y19b{bottom:362.273200pt;}
.y57{bottom:362.821200pt;}
.yfd{bottom:364.567600pt;}
.y1fe{bottom:365.367867pt;}
.y1be{bottom:365.784000pt;}
.ybe{bottom:366.530133pt;}
.y23c{bottom:366.813333pt;}
.y15f{bottom:366.946533pt;}
.y145{bottom:367.216667pt;}
.y178{bottom:367.220933pt;}
.y124{bottom:367.793200pt;}
.ydc{bottom:371.230400pt;}
.y1dd{bottom:372.008800pt;}
.y7c{bottom:374.616533pt;}
.ya1{bottom:375.581467pt;}
.y34{bottom:377.491333pt;}
.y19a{bottom:381.409200pt;}
.y56{bottom:381.987867pt;}
.yfc{bottom:382.584267pt;}
.yf{bottom:383.317600pt;}
.y1fd{bottom:383.861867pt;}
.ybd{bottom:384.530133pt;}
.y15e{bottom:384.947867pt;}
.y23b{bottom:384.973333pt;}
.y144{bottom:385.264000pt;}
.y177{bottom:385.268267pt;}
.y123{bottom:385.901867pt;}
.y21c{bottom:386.941867pt;}
.ydb{bottom:389.323733pt;}
.y1dc{bottom:390.446800pt;}
.y7b{bottom:393.215867pt;}
.ya0{bottom:394.042800pt;}
.y199{bottom:400.545200pt;}
.yfb{bottom:400.600933pt;}
.y55{bottom:401.154533pt;}
.y15d{bottom:402.949200pt;}
.y23a{bottom:403.133333pt;}
.y143{bottom:403.311333pt;}
.y176{bottom:403.315600pt;}
.y122{bottom:404.010533pt;}
.yda{bottom:407.417067pt;}
.y1db{bottom:408.884800pt;}
.y1fc{bottom:409.915867pt;}
.y7a{bottom:411.815200pt;}
.y9f{bottom:412.504133pt;}
.y21b{bottom:412.505867pt;}
.yfa{bottom:418.617600pt;}
.y198{bottom:419.681200pt;}
.y54{bottom:420.321200pt;}
.y15c{bottom:420.950533pt;}
.y1bd{bottom:421.093600pt;}
.y239{bottom:421.293333pt;}
.y142{bottom:421.358667pt;}
.y175{bottom:421.362933pt;}
.y121{bottom:422.119200pt;}
.yd9{bottom:425.510400pt;}
.y1fb{bottom:428.409867pt;}
.y79{bottom:430.414533pt;}
.y9e{bottom:430.965467pt;}
.ye{bottom:434.680933pt;}
.y1da{bottom:434.882800pt;}
.yf9{bottom:436.634267pt;}
.y21a{bottom:438.069867pt;}
.y197{bottom:438.817200pt;}
.y15b{bottom:438.951867pt;}
.y1bc{bottom:439.125600pt;}
.y141{bottom:439.406000pt;}
.y174{bottom:439.410267pt;}
.y238{bottom:439.453333pt;}
.y53{bottom:439.487867pt;}
.y120{bottom:440.227867pt;}
.yd8{bottom:443.603733pt;}
.y78{bottom:449.013867pt;}
.y9d{bottom:449.426800pt;}
.y33{bottom:452.567867pt;}
.y1d9{bottom:453.320800pt;}
.y1fa{bottom:454.463867pt;}
.yf8{bottom:454.650933pt;}
.y15a{bottom:456.953200pt;}
.y1bb{bottom:457.157600pt;}
.y140{bottom:457.453333pt;}
.y173{bottom:457.457600pt;}
.y237{bottom:457.613333pt;}
.y196{bottom:457.953200pt;}
.y11f{bottom:458.336533pt;}
.y52{bottom:458.654533pt;}
.yd{bottom:458.686267pt;}
.yd7{bottom:461.697067pt;}
.y219{bottom:463.633867pt;}
.y77{bottom:467.613200pt;}
.y9c{bottom:467.888133pt;}
.y1d8{bottom:471.758800pt;}
.y32{bottom:472.101200pt;}
.yf7{bottom:472.667600pt;}
.y1f9{bottom:472.957867pt;}
.y159{bottom:474.954533pt;}
.y1ba{bottom:475.189600pt;}
.y13f{bottom:475.500667pt;}
.y172{bottom:475.504933pt;}
.y236{bottom:475.773333pt;}
.y11e{bottom:476.445200pt;}
.y195{bottom:477.089200pt;}
.y51{bottom:477.821200pt;}
.yd6{bottom:479.790400pt;}
.y76{bottom:486.212533pt;}
.y9b{bottom:486.349467pt;}
.y218{bottom:489.197867pt;}
.y1d7{bottom:490.196800pt;}
.yf6{bottom:490.684267pt;}
.y31{bottom:491.611333pt;}
.y1b9{bottom:493.221600pt;}
.y13e{bottom:493.548000pt;}
.y171{bottom:493.552267pt;}
.y235{bottom:493.933333pt;}
.y11d{bottom:494.553867pt;}
.y194{bottom:496.225200pt;}
.y50{bottom:496.987867pt;}
.y1f8{bottom:499.011867pt;}
.yc{bottom:501.597467pt;}
.y9a{bottom:504.810800pt;}
.y75{bottom:504.811867pt;}
.yf5{bottom:508.700933pt;}
.y30{bottom:509.811333pt;}
.y1b8{bottom:511.253600pt;}
.y13d{bottom:511.595333pt;}
.ybc{bottom:511.711467pt;}
.y158{bottom:511.852133pt;}
.y234{bottom:512.093333pt;}
.y11c{bottom:512.662533pt;}
.y217{bottom:514.761867pt;}
.y193{bottom:515.361200pt;}
.y4f{bottom:516.154533pt;}
.y1d6{bottom:516.194800pt;}
.yd5{bottom:516.792800pt;}
.y1f7{bottom:517.505867pt;}
.y99{bottom:523.272133pt;}
.y74{bottom:523.411200pt;}
.y2f{bottom:528.011333pt;}
.y1b7{bottom:529.285600pt;}
.yb{bottom:529.605467pt;}
.ybb{bottom:529.712800pt;}
.y233{bottom:530.253333pt;}
.y170{bottom:530.492933pt;}
.y11b{bottom:530.771200pt;}
.y192{bottom:534.497200pt;}
.y4e{bottom:535.321200pt;}
.yd4{bottom:538.212800pt;}
.y216{bottom:540.325867pt;}
.y98{bottom:541.733467pt;}
.y73{bottom:542.010533pt;}
.y1f6{bottom:543.559867pt;}
.yf4{bottom:545.602400pt;}
.y2e{bottom:546.211333pt;}
.y1b6{bottom:547.317600pt;}
.yba{bottom:547.714133pt;}
.y232{bottom:548.413333pt;}
.y13c{bottom:548.535867pt;}
.y11a{bottom:548.879867pt;}
.y191{bottom:553.633200pt;}
.y4d{bottom:554.487867pt;}
.ya{bottom:557.613467pt;}
.y97{bottom:560.194800pt;}
.y72{bottom:560.609867pt;}
.y1f5{bottom:562.053867pt;}
.y2d{bottom:564.411333pt;}
.y1b5{bottom:565.349600pt;}
.yb9{bottom:565.715467pt;}
.y215{bottom:565.889867pt;}
.y231{bottom:566.573333pt;}
.yf3{bottom:566.950400pt;}
.y119{bottom:566.988533pt;}
.y157{bottom:567.199867pt;}
.y190{bottom:572.769200pt;}
.y4c{bottom:573.654533pt;}
.y96{bottom:578.656133pt;}
.y71{bottom:579.209200pt;}
.y1d5{bottom:580.159467pt;}
.y1f4{bottom:580.547867pt;}
.y2c{bottom:582.611333pt;}
.y1b4{bottom:583.381600pt;}
.yb8{bottom:583.716800pt;}
.y230{bottom:584.733333pt;}
.y118{bottom:585.097200pt;}
.y156{bottom:585.201200pt;}
.y16f{bottom:585.833200pt;}
.y214{bottom:591.453867pt;}
.y18f{bottom:591.905200pt;}
.y4b{bottom:592.821200pt;}
.y95{bottom:597.117467pt;}
.y70{bottom:597.808533pt;}
.y1d4{bottom:598.605467pt;}
.y1f3{bottom:599.041867pt;}
.y2b{bottom:600.811333pt;}
.y1b3{bottom:601.413600pt;}
.yb7{bottom:601.718133pt;}
.y22f{bottom:602.893333pt;}
.y117{bottom:603.205867pt;}
.y13b{bottom:603.880533pt;}
.y253{bottom:607.731333pt;}
.y18e{bottom:611.041200pt;}
.y4a{bottom:611.987867pt;}
.y9{bottom:612.072000pt;}
.y94{bottom:615.578800pt;}
.y6f{bottom:616.407867pt;}
.y1d3{bottom:617.051467pt;}
.yd3{bottom:618.598267pt;}
.y2a{bottom:619.011333pt;}
.y1b2{bottom:619.445600pt;}
.yb6{bottom:619.719467pt;}
.y22e{bottom:621.053333pt;}
.y155{bottom:621.201200pt;}
.y116{bottom:621.314533pt;}
.y13a{bottom:621.927867pt;}
.yf2{bottom:622.234533pt;}
.y1f2{bottom:625.095867pt;}
.y252{bottom:625.731333pt;}
.y18d{bottom:630.177200pt;}
.y8{bottom:630.752000pt;}
.y49{bottom:631.154533pt;}
.y93{bottom:634.040133pt;}
.y6e{bottom:635.007200pt;}
.y1d2{bottom:635.497467pt;}
.y213{bottom:636.575867pt;}
.y29{bottom:637.211333pt;}
.y1b1{bottom:637.477600pt;}
.yb5{bottom:637.720800pt;}
.yd2{bottom:638.798267pt;}
.y22d{bottom:639.213333pt;}
.y115{bottom:639.423200pt;}
.y139{bottom:639.975200pt;}
.yf1{bottom:640.251200pt;}
.y1f1{bottom:643.589867pt;}
.y251{bottom:643.731333pt;}
.y18c{bottom:649.313200pt;}
.y48{bottom:650.321200pt;}
.y92{bottom:652.501467pt;}
.y6d{bottom:653.606533pt;}
.y1d1{bottom:653.943467pt;}
.y212{bottom:654.579867pt;}
.y28{bottom:655.411333pt;}
.y1b0{bottom:655.509600pt;}
.yb4{bottom:655.722133pt;}
.y7{bottom:656.992000pt;}
.y22c{bottom:657.373333pt;}
.y114{bottom:657.531867pt;}
.y138{bottom:658.022533pt;}
.yf0{bottom:658.267867pt;}
.yd1{bottom:658.998267pt;}
.y18b{bottom:668.449200pt;}
.y47{bottom:669.487867pt;}
.y1f0{bottom:669.643867pt;}
.y91{bottom:670.962800pt;}
.y6c{bottom:672.205867pt;}
.y1d0{bottom:672.389467pt;}
.y211{bottom:672.583867pt;}
.y250{bottom:673.064667pt;}
.y1af{bottom:673.541600pt;}
.y27{bottom:673.611333pt;}
.yb3{bottom:673.723467pt;}
.y22b{bottom:675.533333pt;}
.y113{bottom:675.640533pt;}
.y6{bottom:675.668533pt;}
.y137{bottom:676.069867pt;}
.yef{bottom:676.284533pt;}
.yd0{bottom:679.198267pt;}
.y18a{bottom:687.585200pt;}
.y1ef{bottom:688.137867pt;}
.y46{bottom:688.654533pt;}
.y90{bottom:689.424133pt;}
.y6b{bottom:690.805200pt;}
.y1cf{bottom:690.835467pt;}
.y24f{bottom:691.064667pt;}
.y1ae{bottom:691.573600pt;}
.yb2{bottom:691.724800pt;}
.y26{bottom:691.811333pt;}
.y22a{bottom:693.693333pt;}
.y112{bottom:693.749200pt;}
.y136{bottom:694.117200pt;}
.yee{bottom:694.301200pt;}
.y210{bottom:698.147867pt;}
.ycf{bottom:699.398267pt;}
.y189{bottom:706.721200pt;}
.y8f{bottom:707.885467pt;}
.y24e{bottom:709.064667pt;}
.y6a{bottom:709.404533pt;}
.y1ad{bottom:709.605600pt;}
.yb1{bottom:709.726133pt;}
.y25{bottom:710.011333pt;}
.y111{bottom:711.857867pt;}
.y135{bottom:712.164533pt;}
.yed{bottom:712.317867pt;}
.y1ee{bottom:714.191867pt;}
.y20f{bottom:716.151867pt;}
.yce{bottom:719.598267pt;}
.y5{bottom:720.801733pt;}
.y229{bottom:723.186667pt;}
.y188{bottom:725.857200pt;}
.y8e{bottom:726.346800pt;}
.y45{bottom:726.718800pt;}
.y1ac{bottom:727.637600pt;}
.yb0{bottom:727.727467pt;}
.y69{bottom:728.003867pt;}
.y1ce{bottom:728.172800pt;}
.y110{bottom:729.966533pt;}
.y134{bottom:730.211867pt;}
.yec{bottom:730.334533pt;}
.y223{bottom:731.283867pt;}
.y1ed{bottom:732.685867pt;}
.y24d{bottom:738.398000pt;}
.y4{bottom:739.478133pt;}
.y24{bottom:739.544667pt;}
.ycd{bottom:739.798267pt;}
.y20e{bottom:741.715867pt;}
.y8d{bottom:744.808133pt;}
.y187{bottom:744.993200pt;}
.y1ab{bottom:745.669600pt;}
.yaf{bottom:745.728800pt;}
.y68{bottom:746.603200pt;}
.y10f{bottom:748.075200pt;}
.y133{bottom:748.259200pt;}
.yeb{bottom:748.351200pt;}
.y154{bottom:748.397200pt;}
.y226{bottom:748.619867pt;}
.y222{bottom:749.285200pt;}
.y24c{bottom:756.398000pt;}
.y1ec{bottom:758.739867pt;}
.y20d{bottom:759.719867pt;}
.ycc{bottom:759.998267pt;}
.y8c{bottom:763.269467pt;}
.y1aa{bottom:763.701600pt;}
.yae{bottom:763.730133pt;}
.y186{bottom:764.129200pt;}
.y67{bottom:765.202533pt;}
.y10e{bottom:766.183867pt;}
.y132{bottom:766.306533pt;}
.yea{bottom:766.367867pt;}
.y153{bottom:766.398533pt;}
.y225{bottom:766.621200pt;}
.y221{bottom:767.286533pt;}
.y24b{bottom:774.398000pt;}
.y228{bottom:775.357733pt;}
.y1eb{bottom:777.233867pt;}
.y44{bottom:783.234533pt;}
.y185{bottom:783.265200pt;}
.y66{bottom:783.801867pt;}
.y1cd{bottom:783.955200pt;}
.y23{bottom:784.198000pt;}
.y10d{bottom:784.292533pt;}
.y131{bottom:784.353867pt;}
.ye9{bottom:784.384533pt;}
.y152{bottom:784.399867pt;}
.y3{bottom:784.611467pt;}
.y224{bottom:784.625867pt;}
.y20c{bottom:785.283867pt;}
.y220{bottom:785.287867pt;}
.ycb{bottom:786.304667pt;}
.y227{bottom:800.184400pt;}
.y8b{bottom:800.627733pt;}
.y43{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:803.731333pt;}
.y21{bottom:842.834667pt;}
.y20{bottom:858.834667pt;}
.hb{height:36.107146pt;}
.h7{height:36.796875pt;}
.ha{height:41.562500pt;}
.hd{height:46.067708pt;}
.hc{height:46.757812pt;}
.he{height:49.322917pt;}
.h4{height:51.953125pt;}
.h3{height:54.550781pt;}
.h9{height:59.746094pt;}
.h2{height:64.941406pt;}
.h8{height:70.136719pt;}
.h6{height:72.734375pt;}
.h5{height:93.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:73.079333pt;}
.x7{left:74.147333pt;}
.x6{left:75.907333pt;}
.xf{left:85.556933pt;}
.x5{left:93.027333pt;}
.x9{left:93.970933pt;}
.x10{left:101.886933pt;}
.xa{left:132.354267pt;}
.xe{left:153.704667pt;}
.xd{left:170.407733pt;}
.xc{left:178.807867pt;}
.xb{left:180.015067pt;}
.x8{left:189.034533pt;}
.x4{left:204.855467pt;}
.x3{left:206.290000pt;}
.x2{left:207.418000pt;}
.x11{left:208.395467pt;}
}




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