
    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_9c6233649fd90d95a26a42e4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_db9e7eb887fc57bf82d4c55f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_903f7b4a8cf8c9eeaa371ff6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.908000;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_87ced1e8445639ddc588080f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c0b0f3eacd3cf3c3fbfb6046.woff')format("woff");}.ff5{font-family:ff5;line-height:0.389000;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_2bcbe0edde9e446210bdd680.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bdc856e94ea7ab50103e977b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.908000;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_8fa776244a33cf591c50d1ad.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f963ce0e388f0e618f855781.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6c10c5584bd8d93708973c97.woff')format("woff");}.ffa{font-family:ffa;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ad6a5a59a103645ce667ce1d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ce2c237a6195177c0cbda0c4.woff')format("woff");}.ffc{font-family:ffc;line-height:0.111000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4db68ae9641d6acbb507312f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9cba5e93cccf07eab4e06af2.woff')format("woff");}.ffe{font-family:ffe;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_77a794e99990357e3c93843e.woff')format("woff");}.fff{font-family:fff;line-height:0.916000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0184d39a391a6c6445e6b138.woff')format("woff");}.ff10{font-family:ff10;line-height:0.899000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v15{vertical-align:-72.654000px;}
.v18{vertical-align:-15.720000px;}
.v7{vertical-align:-13.320000px;}
.vf{vertical-align:-11.868000px;}
.v1{vertical-align:-9.816000px;}
.vd{vertical-align:-7.752000px;}
.ve{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.668000px;}
.v10{vertical-align:21.840000px;}
.v2{vertical-align:23.754000px;}
.v13{vertical-align:25.776000px;}
.v17{vertical-align:28.560000px;}
.v4{vertical-align:30.162000px;}
.v8{vertical-align:33.618000px;}
.v6{vertical-align:34.830000px;}
.va{vertical-align:37.410000px;}
.v5{vertical-align:44.646000px;}
.v19{vertical-align:51.924000px;}
.vc{vertical-align:55.902000px;}
.v16{vertical-align:58.908000px;}
.vb{vertical-align:68.190000px;}
.v12{vertical-align:72.660000px;}
.v14{vertical-align:95.226000px;}
.v9{vertical-align:111.924000px;}
.v11{vertical-align:134.184000px;}
.ls1{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.000248px;}
.ls26{letter-spacing:0.000366px;}
.ls36{letter-spacing:0.000462px;}
.ls31{letter-spacing:0.000513px;}
.ls33{letter-spacing:0.000587px;}
.lsd{letter-spacing:0.001044px;}
.ls2f{letter-spacing:0.001050px;}
.ls1a{letter-spacing:0.001593px;}
.ls16{letter-spacing:0.002136px;}
.lsf{letter-spacing:0.002147px;}
.ls27{letter-spacing:0.003422px;}
.ls1d{letter-spacing:0.004275px;}
.ls45{letter-spacing:0.004300px;}
.ls13{letter-spacing:0.004314px;}
.ls5{letter-spacing:0.004332px;}
.ls18{letter-spacing:0.004344px;}
.ls2b{letter-spacing:0.010835px;}
.ls1c{letter-spacing:0.014084px;}
.lse{letter-spacing:0.015215px;}
.lsa{letter-spacing:0.016475px;}
.ls48{letter-spacing:0.016790px;}
.ls9{letter-spacing:0.016823px;}
.ls19{letter-spacing:0.016835px;}
.ls3b{letter-spacing:0.017380px;}
.ls8{letter-spacing:0.017915px;}
.ls3e{letter-spacing:0.019579px;}
.ls20{letter-spacing:0.020084px;}
.ls3{letter-spacing:0.021755px;}
.ls39{letter-spacing:0.022165px;}
.ls10{letter-spacing:0.023262px;}
.ls43{letter-spacing:0.026575px;}
.ls15{letter-spacing:0.026943px;}
.ls14{letter-spacing:0.032584px;}
.ls1b{letter-spacing:0.065455px;}
.ls41{letter-spacing:2.356366px;}
.lsc{letter-spacing:2.984915px;}
.ls3d{letter-spacing:2.985056px;}
.ls49{letter-spacing:2.986059px;}
.ls11{letter-spacing:2.990915px;}
.ls3a{letter-spacing:2.991056px;}
.ls24{letter-spacing:3.873485px;}
.ls12{letter-spacing:4.400783px;}
.ls28{letter-spacing:5.116804px;}
.lsb{letter-spacing:6.283642px;}
.ls4c{letter-spacing:7.069097px;}
.ls32{letter-spacing:7.169412px;}
.ls37{letter-spacing:7.170513px;}
.ls38{letter-spacing:10.467427px;}
.ls34{letter-spacing:10.966491px;}
.ls3f{letter-spacing:13.270183px;}
.ls30{letter-spacing:13.899056px;}
.ls7{letter-spacing:14.530921px;}
.ls47{letter-spacing:17.530059px;}
.ls17{letter-spacing:18.130924px;}
.ls22{letter-spacing:18.179412px;}
.ls6{letter-spacing:18.196379px;}
.ls4b{letter-spacing:18.458197px;}
.ls21{letter-spacing:21.169289px;}
.ls1e{letter-spacing:21.169641px;}
.ls4d{letter-spacing:21.600018px;}
.ls42{letter-spacing:21.718715px;}
.ls25{letter-spacing:21.747172px;}
.ls2{letter-spacing:21.796382px;}
.ls2a{letter-spacing:21.861836px;}
.ls52{letter-spacing:22.450928px;}
.ls2d{letter-spacing:22.806366px;}
.ls4{letter-spacing:24.480020px;}
.ls3c{letter-spacing:24.807056px;}
.ls2e{letter-spacing:25.069112px;}
.ls40{letter-spacing:25.134566px;}
.ls1f{letter-spacing:25.355412px;}
.ls2c{letter-spacing:28.930933px;}
.ls29{letter-spacing:28.996388px;}
.ls54{letter-spacing:30.829117px;}
.ls0{letter-spacing:32.727300px;}
.ls53{letter-spacing:62.411194px;}
.ls35{letter-spacing:65.454513px;}
.ls50{letter-spacing:288.720241px;}
.ls51{letter-spacing:297.818430px;}
.ls4f{letter-spacing:559.182392px;}
.ls44{letter-spacing:671.236923px;}
.ls4a{letter-spacing:698.596946px;}
.ls4e{letter-spacing:719.215145px;}
.ls46{letter-spacing:867.020706px;}
.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;}
}
.ws67{word-spacing:-79.985521px;}
.ws53{word-spacing:-51.820407px;}
.ws1e{word-spacing:-42.637126px;}
.ws16{word-spacing:-40.045124px;}
.ws14{word-spacing:-36.314212px;}
.wsa{word-spacing:-36.052394px;}
.ws13{word-spacing:-34.546938px;}
.ws1f{word-spacing:-33.211407px;}
.ws7{word-spacing:-31.994208px;}
.ws58{word-spacing:-31.771663px;}
.wse{word-spacing:-31.666935px;}
.ws10{word-spacing:-30.750571px;}
.ws4{word-spacing:-26.899125px;}
.wsd{word-spacing:-24.597839px;}
.wsb{word-spacing:-23.877838px;}
.ws15{word-spacing:-22.176018px;}
.wsf{word-spacing:-19.492380px;}
.ws3e{word-spacing:-18.183288px;}
.ws9{word-spacing:-16.743287px;}
.ws2d{word-spacing:-15.677663px;}
.ws2e{word-spacing:-15.676325px;}
.ws30{word-spacing:-15.671663px;}
.ws28{word-spacing:-14.111859px;}
.ws2b{word-spacing:-12.040708px;}
.ws26{word-spacing:-12.040325px;}
.ws3b{word-spacing:-10.284913px;}
.ws3c{word-spacing:-10.259753px;}
.wsc{word-spacing:-8.757825px;}
.ws5f{word-spacing:-7.274826px;}
.ws72{word-spacing:-7.252370px;}
.ws3d{word-spacing:-5.754913px;}
.ws1b{word-spacing:-3.652367px;}
.ws1c{word-spacing:-3.259639px;}
.ws37{word-spacing:-2.644366px;}
.ws18{word-spacing:-1.204365px;}
.ws19{word-spacing:-1.034183px;}
.ws3a{word-spacing:-0.903273px;}
.ws6d{word-spacing:-0.576000px;}
.ws22{word-spacing:-0.510546px;}
.ws6c{word-spacing:-0.379637px;}
.ws3{word-spacing:-0.071731px;}
.ws25{word-spacing:-0.052364px;}
.ws55{word-spacing:-0.035866px;}
.ws5e{word-spacing:-0.015541px;}
.ws71{word-spacing:-0.009541px;}
.ws11{word-spacing:0.000000px;}
.ws2a{word-spacing:0.013091px;}
.ws52{word-spacing:0.471273px;}
.ws1a{word-spacing:0.667637px;}
.ws48{word-spacing:0.890183px;}
.ws49{word-spacing:0.955637px;}
.ws40{word-spacing:1.092247px;}
.ws68{word-spacing:1.191274px;}
.ws6b{word-spacing:1.518547px;}
.ws6a{word-spacing:1.675638px;}
.ws23{word-spacing:2.500366px;}
.ws33{word-spacing:3.154912px;}
.ws38{word-spacing:3.220366px;}
.ws50{word-spacing:3.299613px;}
.ws7d{word-spacing:3.406613px;}
.ws6f{word-spacing:3.417630px;}
.ws29{word-spacing:3.420197px;}
.ws44{word-spacing:3.420281px;}
.ws46{word-spacing:3.421950px;}
.ws5a{word-spacing:3.422243px;}
.ws81{word-spacing:3.423111px;}
.ws57{word-spacing:3.423422px;}
.ws27{word-spacing:3.440287px;}
.ws45{word-spacing:3.442635px;}
.ws60{word-spacing:3.482185px;}
.ws41{word-spacing:3.547639px;}
.ws0{word-spacing:3.613094px;}
.ws20{word-spacing:3.678549px;}
.ws8{word-spacing:4.162913px;}
.ws12{word-spacing:4.228367px;}
.ws77{word-spacing:4.398549px;}
.ws1d{word-spacing:4.483200px;}
.ws21{word-spacing:5.379825px;}
.ws69{word-spacing:6.165823px;}
.ws85{word-spacing:6.196002px;}
.ws34{word-spacing:6.231278px;}
.ws1{word-spacing:6.455775px;}
.ws66{word-spacing:7.052073px;}
.ws6e{word-spacing:7.054172px;}
.ws43{word-spacing:7.055384px;}
.ws80{word-spacing:7.062507px;}
.ws7c{word-spacing:7.064232px;}
.ws51{word-spacing:7.278552px;}
.ws59{word-spacing:7.474915px;}
.ws4a{word-spacing:7.605825px;}
.ws64{word-spacing:8.155643px;}
.ws24{word-spacing:8.221098px;}
.ws42{word-spacing:8.325825px;}
.ws61{word-spacing:8.391280px;}
.ws5d{word-spacing:8.587644px;}
.ws78{word-spacing:8.914917px;}
.ws76{word-spacing:9.792008px;}
.ws7f{word-spacing:9.831281px;}
.ws35{word-spacing:10.250190px;}
.ws3f{word-spacing:10.485827px;}
.ws32{word-spacing:10.678473px;}
.ws39{word-spacing:10.682191px;}
.ws4e{word-spacing:10.695422px;}
.ws7a{word-spacing:11.729464px;}
.ws84{word-spacing:12.645829px;}
.ws83{word-spacing:12.711283px;}
.ws36{word-spacing:13.038556px;}
.ws7b{word-spacing:13.326557px;}
.ws79{word-spacing:13.522920px;}
.ws6{word-spacing:14.544012px;}
.ws2{word-spacing:23.312640px;}
.ws87{word-spacing:23.367292px;}
.ws70{word-spacing:30.352224px;}
.ws86{word-spacing:34.298210px;}
.ws5{word-spacing:39.639306px;}
.ws54{word-spacing:47.271312px;}
.ws73{word-spacing:50.832042px;}
.ws4f{word-spacing:52.638393px;}
.ws5c{word-spacing:54.366591px;}
.ws17{word-spacing:69.937725px;}
.ws62{word-spacing:104.643165px;}
.ws63{word-spacing:137.316508px;}
.ws56{word-spacing:210.907812px;}
.ws74{word-spacing:237.809653px;}
.ws75{word-spacing:272.369682px;}
.ws31{word-spacing:511.213517px;}
.ws47{word-spacing:638.017877px;}
.ws82{word-spacing:695.926398px;}
.ws4d{word-spacing:726.820969px;}
.ws2c{word-spacing:757.322813px;}
.ws7e{word-spacing:794.370117px;}
.ws65{word-spacing:812.566495px;}
.ws2f{word-spacing:814.530133px;}
.ws4c{word-spacing:880.053648px;}
.ws4b{word-spacing:904.006572px;}
.ws5b{word-spacing:1001.082673px;}
._d{margin-left:-38.225486px;}
._11{margin-left:-34.560029px;}
._a{margin-left:-32.727300px;}
._18{margin-left:-30.960026px;}
._60{margin-left:-14.015933px;}
._c{margin-left:-10.865464px;}
._3{margin-left:-9.709486px;}
._12{margin-left:-8.574553px;}
._24{margin-left:-6.610915px;}
._0{margin-left:-5.432732px;}
._2{margin-left:-3.202064px;}
._4{margin-left:-1.936742px;}
._5{width:1.936742px;}
._2e{width:3.044260px;}
._19{width:4.189094px;}
._1a{width:6.349096px;}
._14{width:9.425462px;}
._2f{width:16.402209px;}
._23{width:17.706090px;}
._55{width:19.686602px;}
._8{width:21.692368px;}
._20{width:22.778201px;}
._5f{width:25.069112px;}
._2d{width:26.084279px;}
._1c{width:27.672064px;}
._15{width:29.231311px;}
._29{width:30.278584px;}
._2b{width:31.691690px;}
._16{width:32.819650px;}
._b{width:34.167301px;}
._13{width:35.865552px;}
._1f{width:40.474270px;}
._1d{width:42.152762px;}
._27{width:43.330945px;}
._28{width:45.398597px;}
._66{width:48.120794px;}
._43{width:49.434422px;}
._1{width:51.646200px;}
._65{width:53.372395px;}
._21{width:55.713528px;}
._42{width:56.741044px;}
._f{width:60.545505px;}
._1e{width:62.651716px;}
._41{width:65.454024px;}
._7{width:66.894601px;}
._34{width:71.738242px;}
._47{width:74.356426px;}
._e{width:75.730972px;}
._45{width:77.301883px;}
._30{width:80.697600px;}
._4b{width:82.734614px;}
._4e{width:84.642250px;}
._49{width:86.504086px;}
._50{width:91.007468px;}
._4d{width:95.071831px;}
._31{width:96.836850px;}
._36{width:100.080083px;}
._9{width:107.708855px;}
._51{width:110.346455px;}
._52{width:114.530050px;}
._5a{width:125.229882px;}
._5d{width:139.703122px;}
._4f{width:144.597176px;}
._4a{width:149.013229px;}
._3d{width:173.389235px;}
._53{width:174.484976px;}
._38{width:177.381966px;}
._54{width:181.992779px;}
._32{width:195.289631px;}
._3b{width:206.443808px;}
._61{width:209.127447px;}
._59{width:214.893282px;}
._64{width:218.225636px;}
._62{width:225.556552px;}
._5c{width:228.581894px;}
._48{width:230.307842px;}
._63{width:234.589286px;}
._58{width:243.705121px;}
._3f{width:251.542028px;}
._5e{width:262.295333px;}
._4c{width:269.946610px;}
._5b{width:288.709300px;}
._57{width:303.958926px;}
._3a{width:359.214845px;}
._46{width:405.753065px;}
._40{width:439.878239px;}
._44{width:446.504386px;}
._35{width:505.059357px;}
._37{width:529.670287px;}
._3e{width:567.006304px;}
._39{width:572.373581px;}
._56{width:592.386718px;}
._10{width:685.724074px;}
._3c{width:710.417333px;}
._33{width:711.949684px;}
._1b{width:759.993361px;}
._17{width:1029.339040px;}
._26{width:1644.978112px;}
._2a{width:1685.155573px;}
._67{width:1723.261813px;}
._22{width:1755.989113px;}
._2c{width:1849.877905px;}
._25{width:2020.518047px;}
._6{width:2170.448845px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs4{font-size:47.820600px;}
.fs5{font-size:59.775600px;}
.fs0{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y65{bottom:12.151500px;}
.y29{bottom:12.153000px;}
.y8a{bottom:56.983500px;}
.y117{bottom:67.558500px;}
.yad{bottom:67.720500px;}
.y28{bottom:71.140500px;}
.y89{bottom:77.308500px;}
.yd1{bottom:80.230500px;}
.y15b{bottom:87.876000px;}
.y116{bottom:87.882000px;}
.yac{bottom:88.044000px;}
.y13a{bottom:90.085500px;}
.y27{bottom:91.465500px;}
.yd0{bottom:100.554000px;}
.y139{bottom:103.066500px;}
.y64{bottom:103.629000px;}
.yf7{bottom:108.199500px;}
.y115{bottom:108.205500px;}
.y88{bottom:108.735000px;}
.y26{bottom:111.789000px;}
.y15a{bottom:118.768500px;}
.yab{bottom:118.936500px;}
.y17c{bottom:119.458500px;}
.ycf{bottom:120.877500px;}
.y87{bottom:129.058500px;}
.y25{bottom:132.112500px;}
.y63{bottom:134.520000px;}
.y17b{bottom:139.783500px;}
.yce{bottom:141.201000px;}
.y114{bottom:141.979500px;}
.y138{bottom:146.746500px;}
.yf6{bottom:151.639500px;}
.y24{bottom:152.436000px;}
.y159{bottom:155.893500px;}
.y86{bottom:159.951000px;}
.y17a{bottom:160.107000px;}
.yaa{bottom:162.157500px;}
.ycd{bottom:172.093500px;}
.y23{bottom:172.759500px;}
.y113{bottom:172.870500px;}
.y137{bottom:174.063000px;}
.yf5{bottom:178.906500px;}
.y179{bottom:180.430500px;}
.yf4{bottom:184.549500px;}
.y136{bottom:185.287500px;}
.yf1{bottom:188.640000px;}
.y22{bottom:193.084500px;}
.y62{bottom:195.967500px;}
.ya9{bottom:198.919500px;}
.yef{bottom:199.276500px;}
.y178{bottom:200.754000px;}
.y85{bottom:203.328000px;}
.y158{bottom:207.064500px;}
.yf3{bottom:208.362000px;}
.y21{bottom:213.408000px;}
.y112{bottom:213.616500px;}
.yf2{bottom:214.003500px;}
.ycc{bottom:215.314500px;}
.yf0{bottom:218.095500px;}
.y177{bottom:221.077500px;}
.y84{bottom:223.651500px;}
.y135{bottom:223.672500px;}
.y111{bottom:224.842500px;}
.y157{bottom:227.388000px;}
.y20{bottom:233.731500px;}
.y61{bottom:233.994000px;}
.ya8{bottom:237.177000px;}
.ycb{bottom:240.469500px;}
.y176{bottom:241.402500px;}
.y83{bottom:243.975000px;}
.y134{bottom:243.996000px;}
.yca{bottom:246.112500px;}
.y156{bottom:251.905500px;}
.y1f{bottom:254.055000px;}
.y110{bottom:254.071500px;}
.y60{bottom:254.317500px;}
.yee{bottom:254.640000px;}
.yc7{bottom:261.148500px;}
.y175{bottom:261.726000px;}
.y155{bottom:263.130000px;}
.yc9{bottom:273.507000px;}
.y1e{bottom:274.378500px;}
.y5f{bottom:274.641000px;}
.y133{bottom:274.687500px;}
.y82{bottom:274.867500px;}
.ya7{bottom:275.203500px;}
.y174{bottom:282.049500px;}
.y10f{bottom:284.109000px;}
.yc8{bottom:284.958000px;}
.yed{bottom:285.532500px;}
.y1d{bottom:294.703500px;}
.y5e{bottom:294.966000px;}
.ya6{bottom:295.527000px;}
.y10e{bottom:304.434000px;}
.y132{bottom:305.377500px;}
.y154{bottom:306.564000px;}
.y81{bottom:311.992500px;}
.yc6{bottom:313.500000px;}
.y1c{bottom:315.027000px;}
.y5d{bottom:315.289500px;}
.ya5{bottom:315.850500px;}
.y173{bottom:322.696500px;}
.y10d{bottom:324.757500px;}
.yec{bottom:328.374000px;}
.yc5{bottom:333.823500px;}
.y1b{bottom:335.350500px;}
.y5c{bottom:335.613000px;}
.ya4{bottom:336.174000px;}
.y131{bottom:336.270000px;}
.y153{bottom:337.455000px;}
.yeb{bottom:348.699000px;}
.y1a{bottom:355.674000px;}
.y5b{bottom:355.936500px;}
.y10c{bottom:358.144500px;}
.y172{bottom:360.954000px;}
.y80{bottom:363.109500px;}
.ya3{bottom:364.714500px;}
.yc4{bottom:364.716000px;}
.yea{bottom:369.022500px;}
.y10b{bottom:369.369000px;}
.y19{bottom:375.997500px;}
.y130{bottom:379.134000px;}
.y152{bottom:380.886000px;}
.y7f{bottom:383.433000px;}
.y5a{bottom:384.475500px;}
.ye9{bottom:389.346000px;}
.y171{bottom:391.845000px;}
.y18{bottom:396.321000px;}
.y12f{bottom:399.459000px;}
.y151{bottom:401.209500px;}
.yc3{bottom:407.937000px;}
.ye8{bottom:409.669500px;}
.y10a{bottom:414.735000px;}
.y7e{bottom:414.859500px;}
.ya2{bottom:416.512500px;}
.y17{bottom:416.646000px;}
.y12e{bottom:419.782500px;}
.yc2{bottom:428.262000px;}
.ye7{bottom:429.993000px;}
.y150{bottom:430.011000px;}
.y109{bottom:435.058500px;}
.y7d{bottom:435.183000px;}
.y170{bottom:435.664500px;}
.y59{bottom:436.579500px;}
.y12d{bottom:440.106000px;}
.ye6{bottom:450.318000px;}
.y16{bottom:453.333000px;}
.y108{bottom:455.383500px;}
.y7c{bottom:455.508000px;}
.yc1{bottom:459.153000px;}
.ya1{bottom:459.733500px;}
.y16f{bottom:469.438500px;}
.y14f{bottom:470.659500px;}
.y15{bottom:473.656500px;}
.y12c{bottom:476.634000px;}
.ya0{bottom:480.057000px;}
.y58{bottom:480.399000px;}
.ye5{bottom:481.209000px;}
.y7b{bottom:486.934500px;}
.y107{bottom:493.639500px;}
.y14{bottom:493.980000px;}
.y9f{bottom:500.380500px;}
.y57{bottom:500.722500px;}
.y14e{bottom:501.550500px;}
.y16e{bottom:503.211000px;}
.y7a{bottom:507.258000px;}
.y13{bottom:514.305000px;}
.y9e{bottom:520.705500px;}
.y56{bottom:521.046000px;}
.ye4{bottom:524.052000px;}
.yc0{bottom:524.086500px;}
.y106{bottom:524.532000px;}
.y12b{bottom:527.238000px;}
.y16d{bottom:534.103500px;}
.y12{bottom:534.628500px;}
.y79{bottom:538.150500px;}
.y9d{bottom:541.029000px;}
.ye3{bottom:544.375500px;}
.y14d{bottom:544.981500px;}
.y55{bottom:551.938500px;}
.y12a{bottom:555.952500px;}
.y41{bottom:557.880000px;}
.y9c{bottom:561.352500px;}
.ybf{bottom:561.396000px;}
.y14c{bottom:565.305000px;}
.y11{bottom:571.315500px;}
.ye2{bottom:576.136500px;}
.y129{bottom:576.276000px;}
.y16c{bottom:577.324500px;}
.ybe{bottom:579.328500px;}
.y78{bottom:581.527500px;}
.y9b{bottom:581.676000px;}
.y14b{bottom:585.630000px;}
.y105{bottom:585.685500px;}
.y54{bottom:589.063500px;}
.y10{bottom:591.639000px;}
.y40{bottom:594.567000px;}
.ye1{bottom:596.460000px;}
.y128{bottom:596.599500px;}
.ybd{bottom:597.261000px;}
.y77{bottom:601.851000px;}
.y9a{bottom:601.999500px;}
.y14a{bottom:605.953500px;}
.y16b{bottom:611.098500px;}
.yf{bottom:611.962500px;}
.y3f{bottom:614.892000px;}
.ybc{bottom:615.195000px;}
.ye0{bottom:616.783500px;}
.y127{bottom:616.923000px;}
.y76{bottom:622.174500px;}
.y99{bottom:622.323000px;}
.y104{bottom:622.995000px;}
.y16a{bottom:631.422000px;}
.ye{bottom:632.287500px;}
.y3e{bottom:635.215500px;}
.y149{bottom:636.844500px;}
.ydf{bottom:637.107000px;}
.y53{bottom:640.621500px;}
.y103{bottom:640.927500px;}
.ybb{bottom:641.343000px;}
.y126{bottom:645.637500px;}
.yd{bottom:652.611000px;}
.y75{bottom:653.602500px;}
.y3d{bottom:655.539000px;}
.y98{bottom:656.097000px;}
.y102{bottom:658.860000px;}
.y52{bottom:660.946500px;}
.y169{bottom:665.194500px;}
.yde{bottom:668.868000px;}
.yc{bottom:672.934500px;}
.y74{bottom:673.926000px;}
.y3c{bottom:675.862500px;}
.y125{bottom:676.528500px;}
.y101{bottom:676.792500px;}
.y148{bottom:680.275500px;}
.y51{bottom:681.270000px;}
.y97{bottom:686.989500px;}
.yba{bottom:688.285500px;}
.y73{bottom:694.249500px;}
.y168{bottom:696.087000px;}
.y3b{bottom:696.186000px;}
.ydd{bottom:699.760500px;}
.y147{bottom:700.600500px;}
.y50{bottom:701.593500px;}
.y100{bottom:702.942000px;}
.yb{bottom:709.621500px;}
.y3a{bottom:716.511000px;}
.y96{bottom:717.880500px;}
.y124{bottom:718.797000px;}
.y146{bottom:720.924000px;}
.y4f{bottom:721.917000px;}
.y72{bottom:725.142000px;}
.ya{bottom:729.946500px;}
.yb9{bottom:732.105000px;}
.y123{bottom:739.120500px;}
.y167{bottom:739.308000px;}
.y145{bottom:741.247500px;}
.y4e{bottom:742.240500px;}
.ydc{bottom:742.602000px;}
.y9{bottom:750.270000px;}
.yff{bottom:753.066000px;}
.y39{bottom:753.198000px;}
.yb8{bottom:758.251500px;}
.y122{bottom:759.444000px;}
.y166{bottom:759.633000px;}
.y95{bottom:761.700000px;}
.y4d{bottom:762.565500px;}
.ydb{bottom:762.927000px;}
.y71{bottom:768.517500px;}
.yb7{bottom:769.476000px;}
.y144{bottom:772.140000px;}
.y38{bottom:773.521500px;}
.y121{bottom:779.767500px;}
.y165{bottom:779.956500px;}
.y94{bottom:782.023500px;}
.y8{bottom:786.957000px;}
.y4c{bottom:793.456500px;}
.y37{bottom:793.845000px;}
.yfe{bottom:796.287000px;}
.yda{bottom:798.768000px;}
.y70{bottom:799.944000px;}
.y120{bottom:800.091000px;}
.y164{bottom:800.280000px;}
.y93{bottom:802.348500px;}
.y6f{bottom:811.168500px;}
.yb6{bottom:813.751500px;}
.y36{bottom:814.168500px;}
.y143{bottom:815.569500px;}
.yfd{bottom:816.610500px;}
.y11f{bottom:820.416000px;}
.y163{bottom:820.603500px;}
.yd9{bottom:829.660500px;}
.y35{bottom:834.493500px;}
.yfc{bottom:836.935500px;}
.y4b{bottom:837.276000px;}
.y92{bottom:838.876500px;}
.yb5{bottom:850.513500px;}
.y11e{bottom:851.307000px;}
.y142{bottom:853.002000px;}
.y6e{bottom:853.810500px;}
.y162{bottom:854.377500px;}
.y34{bottom:854.817000px;}
.y181{bottom:856.317000px;}
.y7{bottom:856.447500px;}
.yfb{bottom:857.259000px;}
.y4a{bottom:857.599500px;}
.yb4{bottom:870.837000px;}
.yd8{bottom:872.502000px;}
.y161{bottom:874.701000px;}
.y180{bottom:876.640500px;}
.y49{bottom:877.923000px;}
.y6d{bottom:883.654500px;}
.y91{bottom:890.434500px;}
.yfa{bottom:891.031500px;}
.y33{bottom:891.504000px;}
.y141{bottom:891.937500px;}
.yd7{bottom:892.825500px;}
.y6{bottom:893.035500px;}
.y11d{bottom:893.574000px;}
.y6c{bottom:894.879000px;}
.yb2{bottom:902.587500px;}
.y160{bottom:905.593500px;}
.y48{bottom:908.815500px;}
.y90{bottom:910.758000px;}
.yf9{bottom:911.355000px;}
.y32{bottom:911.827500px;}
.y140{bottom:912.262500px;}
.yb3{bottom:913.812000px;}
.yb1{bottom:913.813500px;}
.y5{bottom:913.957500px;}
.yd6{bottom:923.718000px;}
.y11c{bottom:925.759500px;}
.y13f{bottom:932.586000px;}
.y6b{bottom:937.521000px;}
.y8f{bottom:941.650500px;}
.yf8{bottom:942.247500px;}
.y11b{bottom:946.083000px;}
.y31{bottom:948.516000px;}
.y15f{bottom:948.814500px;}
.y47{bottom:952.635000px;}
.y13e{bottom:952.909500px;}
.yb0{bottom:958.089000px;}
.y4{bottom:959.424000px;}
.y11a{bottom:966.406500px;}
.yd5{bottom:967.158000px;}
.y30{bottom:968.839500px;}
.y6a{bottom:971.467500px;}
.y46{bottom:972.958500px;}
.y17f{bottom:975.349500px;}
.y13d{bottom:981.448500px;}
.y15e{bottom:982.587000px;}
.y8e{bottom:985.468500px;}
.yd4{bottom:987.481500px;}
.y2f{bottom:989.163000px;}
.y3{bottom:992.301000px;}
.y45{bottom:993.282000px;}
.y17e{bottom:995.673000px;}
.yaf{bottom:996.345000px;}
.y119{bottom:997.299000px;}
.y15d{bottom:1002.912000px;}
.y69{bottom:1005.414000px;}
.y8d{bottom:1005.793500px;}
.yd3{bottom:1007.805000px;}
.y2e{bottom:1009.486500px;}
.y44{bottom:1013.605500px;}
.y17d{bottom:1015.996500px;}
.y13c{bottom:1022.764500px;}
.y2{bottom:1025.178000px;}
.y8c{bottom:1026.117000px;}
.yae{bottom:1027.237500px;}
.yd2{bottom:1028.128500px;}
.y2d{bottom:1029.810000px;}
.y43{bottom:1033.930500px;}
.y15c{bottom:1036.684500px;}
.y68{bottom:1037.794500px;}
.y118{bottom:1039.566000px;}
.y66{bottom:1049.020500px;}
.y2c{bottom:1050.135000px;}
.y13b{bottom:1053.655500px;}
.y42{bottom:1054.254000px;}
.y8b{bottom:1059.889500px;}
.y67{bottom:1060.392000px;}
.y2b{bottom:1070.458500px;}
.y2a{bottom:1090.782000px;}
.y1{bottom:1138.641000px;}
.h11{height:2.618184px;}
.hd{height:26.899200px;}
.hf{height:35.865450px;}
.hb{height:44.831700px;}
.h1b{height:45.425492px;}
.h1c{height:46.145493px;}
.h2{height:49.090950px;}
.h4{height:50.498765px;}
.h6{height:53.798400px;}
.h7{height:59.619450px;}
.he{height:63.251702px;}
.h5{height:64.557900px;}
.h8{height:66.027450px;}
.h14{height:75.272184px;}
.h12{height:75.278184px;}
.h3{height:77.469300px;}
.ha{height:93.370950px;}
.h9{height:93.736950px;}
.h16{height:93.988950px;}
.h18{height:93.994950px;}
.h17{height:94.576950px;}
.h13{height:97.844184px;}
.h1a{height:101.014950px;}
.hc{height:114.542184px;}
.h19{height:114.548184px;}
.h15{height:130.570950px;}
.h10{height:136.802184px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:106.299000px;}
.xd{left:126.300000px;}
.x9{left:130.845000px;}
.x38{left:140.662500px;}
.x2{left:147.213000px;}
.xa{left:168.481500px;}
.x4{left:173.334000px;}
.xb{left:175.542000px;}
.x1{left:204.094500px;}
.x39{left:209.389500px;}
.x31{left:212.803500px;}
.x23{left:222.297000px;}
.x32{left:224.506500px;}
.x33{left:228.598500px;}
.x18{left:231.655500px;}
.x3a{left:243.753000px;}
.x24{left:252.771000px;}
.x22{left:260.859000px;}
.x34{left:267.070500px;}
.xc{left:278.956500px;}
.x28{left:281.707500px;}
.x1a{left:289.498500px;}
.x13{left:300.459000px;}
.x2f{left:314.308500px;}
.x19{left:316.774500px;}
.x3b{left:333.475500px;}
.x35{left:338.524500px;}
.x2a{left:344.107500px;}
.x2c{left:350.883000px;}
.x1f{left:354.360000px;}
.x2d{left:356.092500px;}
.x14{left:358.161000px;}
.x6{left:362.320500px;}
.x5{left:365.985000px;}
.x10{left:376.294500px;}
.x7{left:380.854500px;}
.x29{left:383.982000px;}
.x27{left:388.437000px;}
.x1e{left:390.910500px;}
.x1b{left:398.658000px;}
.x3{left:406.437000px;}
.x30{left:408.084000px;}
.x15{left:418.950000px;}
.x11{left:431.937000px;}
.x20{left:444.609000px;}
.x1c{left:455.224500px;}
.x2e{left:465.102000px;}
.x2b{left:467.145000px;}
.x1d{left:480.618000px;}
.xe{left:485.905500px;}
.x26{left:494.772000px;}
.x12{left:502.981500px;}
.x16{left:507.568500px;}
.x36{left:520.515000px;}
.x21{left:524.917500px;}
.x37{left:554.461500px;}
.x25{left:559.684500px;}
.x17{left:578.818500px;}
.xf{left:765.705000px;}
@media print{
.v15{vertical-align:-64.581333pt;}
.v18{vertical-align:-13.973333pt;}
.v7{vertical-align:-11.840000pt;}
.vf{vertical-align:-10.549333pt;}
.v1{vertical-align:-8.725333pt;}
.vd{vertical-align:-6.890667pt;}
.ve{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.482667pt;}
.v10{vertical-align:19.413333pt;}
.v2{vertical-align:21.114667pt;}
.v13{vertical-align:22.912000pt;}
.v17{vertical-align:25.386667pt;}
.v4{vertical-align:26.810667pt;}
.v8{vertical-align:29.882667pt;}
.v6{vertical-align:30.960000pt;}
.va{vertical-align:33.253333pt;}
.v5{vertical-align:39.685333pt;}
.v19{vertical-align:46.154667pt;}
.vc{vertical-align:49.690667pt;}
.v16{vertical-align:52.362667pt;}
.vb{vertical-align:60.613333pt;}
.v12{vertical-align:64.586667pt;}
.v14{vertical-align:84.645333pt;}
.v9{vertical-align:99.488000pt;}
.v11{vertical-align:119.274667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.000220pt;}
.ls26{letter-spacing:0.000325pt;}
.ls36{letter-spacing:0.000411pt;}
.ls31{letter-spacing:0.000456pt;}
.ls33{letter-spacing:0.000522pt;}
.lsd{letter-spacing:0.000928pt;}
.ls2f{letter-spacing:0.000933pt;}
.ls1a{letter-spacing:0.001416pt;}
.ls16{letter-spacing:0.001899pt;}
.lsf{letter-spacing:0.001908pt;}
.ls27{letter-spacing:0.003042pt;}
.ls1d{letter-spacing:0.003800pt;}
.ls45{letter-spacing:0.003822pt;}
.ls13{letter-spacing:0.003834pt;}
.ls5{letter-spacing:0.003851pt;}
.ls18{letter-spacing:0.003861pt;}
.ls2b{letter-spacing:0.009631pt;}
.ls1c{letter-spacing:0.012519pt;}
.lse{letter-spacing:0.013525pt;}
.lsa{letter-spacing:0.014644pt;}
.ls48{letter-spacing:0.014925pt;}
.ls9{letter-spacing:0.014954pt;}
.ls19{letter-spacing:0.014964pt;}
.ls3b{letter-spacing:0.015449pt;}
.ls8{letter-spacing:0.015925pt;}
.ls3e{letter-spacing:0.017404pt;}
.ls20{letter-spacing:0.017853pt;}
.ls3{letter-spacing:0.019337pt;}
.ls39{letter-spacing:0.019702pt;}
.ls10{letter-spacing:0.020677pt;}
.ls43{letter-spacing:0.023623pt;}
.ls15{letter-spacing:0.023949pt;}
.ls14{letter-spacing:0.028964pt;}
.ls1b{letter-spacing:0.058182pt;}
.ls41{letter-spacing:2.094547pt;}
.lsc{letter-spacing:2.653258pt;}
.ls3d{letter-spacing:2.653383pt;}
.ls49{letter-spacing:2.654275pt;}
.ls11{letter-spacing:2.658591pt;}
.ls3a{letter-spacing:2.658717pt;}
.ls24{letter-spacing:3.443098pt;}
.ls12{letter-spacing:3.911807pt;}
.ls28{letter-spacing:4.548270pt;}
.lsb{letter-spacing:5.585459pt;}
.ls4c{letter-spacing:6.283642pt;}
.ls32{letter-spacing:6.372811pt;}
.ls37{letter-spacing:6.373789pt;}
.ls38{letter-spacing:9.304380pt;}
.ls34{letter-spacing:9.747992pt;}
.ls3f{letter-spacing:11.795718pt;}
.ls30{letter-spacing:12.354717pt;}
.ls7{letter-spacing:12.916374pt;}
.ls47{letter-spacing:15.582275pt;}
.ls17{letter-spacing:16.116377pt;}
.ls22{letter-spacing:16.159477pt;}
.ls6{letter-spacing:16.174559pt;}
.ls4b{letter-spacing:16.407286pt;}
.ls21{letter-spacing:18.817146pt;}
.ls1e{letter-spacing:18.817458pt;}
.ls4d{letter-spacing:19.200016pt;}
.ls42{letter-spacing:19.305525pt;}
.ls25{letter-spacing:19.330820pt;}
.ls2{letter-spacing:19.374562pt;}
.ls2a{letter-spacing:19.432743pt;}
.ls52{letter-spacing:19.956380pt;}
.ls2d{letter-spacing:20.272325pt;}
.ls4{letter-spacing:21.760018pt;}
.ls3c{letter-spacing:22.050717pt;}
.ls2e{letter-spacing:22.283655pt;}
.ls40{letter-spacing:22.341837pt;}
.ls1f{letter-spacing:22.538144pt;}
.ls2c{letter-spacing:25.716385pt;}
.ls29{letter-spacing:25.774567pt;}
.ls54{letter-spacing:27.403659pt;}
.ls0{letter-spacing:29.090933pt;}
.ls53{letter-spacing:55.476617pt;}
.ls35{letter-spacing:58.181789pt;}
.ls50{letter-spacing:256.640214pt;}
.ls51{letter-spacing:264.727493pt;}
.ls4f{letter-spacing:497.051015pt;}
.ls44{letter-spacing:596.655043pt;}
.ls4a{letter-spacing:620.975063pt;}
.ls4e{letter-spacing:639.302351pt;}
.ls46{letter-spacing:770.685072pt;}
.ws67{word-spacing:-71.098241pt;}
.ws53{word-spacing:-46.062584pt;}
.ws1e{word-spacing:-37.899668pt;}
.ws16{word-spacing:-35.595666pt;}
.ws14{word-spacing:-32.279300pt;}
.wsa{word-spacing:-32.046572pt;}
.ws13{word-spacing:-30.708389pt;}
.ws1f{word-spacing:-29.521250pt;}
.ws7{word-spacing:-28.439296pt;}
.ws58{word-spacing:-28.241478pt;}
.wse{word-spacing:-28.148387pt;}
.ws10{word-spacing:-27.333841pt;}
.ws4{word-spacing:-23.910333pt;}
.wsd{word-spacing:-21.864745pt;}
.wsb{word-spacing:-21.224745pt;}
.ws15{word-spacing:-19.712016pt;}
.wsf{word-spacing:-17.326560pt;}
.ws3e{word-spacing:-16.162923pt;}
.ws9{word-spacing:-14.882921pt;}
.ws2d{word-spacing:-13.935701pt;}
.ws2e{word-spacing:-13.934511pt;}
.ws30{word-spacing:-13.930368pt;}
.ws28{word-spacing:-12.543875pt;}
.ws2b{word-spacing:-10.702851pt;}
.ws26{word-spacing:-10.702511pt;}
.ws3b{word-spacing:-9.142145pt;}
.ws3c{word-spacing:-9.119781pt;}
.wsc{word-spacing:-7.784734pt;}
.ws5f{word-spacing:-6.466512pt;}
.ws72{word-spacing:-6.446551pt;}
.ws3d{word-spacing:-5.115479pt;}
.ws1b{word-spacing:-3.246548pt;}
.ws1c{word-spacing:-2.897457pt;}
.ws37{word-spacing:-2.350547pt;}
.ws18{word-spacing:-1.070546pt;}
.ws19{word-spacing:-0.919273pt;}
.ws3a{word-spacing:-0.802910pt;}
.ws6d{word-spacing:-0.512000pt;}
.ws22{word-spacing:-0.453819pt;}
.ws6c{word-spacing:-0.337455pt;}
.ws3{word-spacing:-0.063761pt;}
.ws25{word-spacing:-0.046545pt;}
.ws55{word-spacing:-0.031881pt;}
.ws5e{word-spacing:-0.013815pt;}
.ws71{word-spacing:-0.008481pt;}
.ws11{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.011636pt;}
.ws52{word-spacing:0.418909pt;}
.ws1a{word-spacing:0.593455pt;}
.ws48{word-spacing:0.791273pt;}
.ws49{word-spacing:0.849455pt;}
.ws40{word-spacing:0.970886pt;}
.ws68{word-spacing:1.058910pt;}
.ws6b{word-spacing:1.349819pt;}
.ws6a{word-spacing:1.489456pt;}
.ws23{word-spacing:2.222547pt;}
.ws33{word-spacing:2.804366pt;}
.ws38{word-spacing:2.862548pt;}
.ws50{word-spacing:2.932989pt;}
.ws7d{word-spacing:3.028101pt;}
.ws6f{word-spacing:3.037893pt;}
.ws29{word-spacing:3.040175pt;}
.ws44{word-spacing:3.040250pt;}
.ws46{word-spacing:3.041733pt;}
.ws5a{word-spacing:3.041994pt;}
.ws81{word-spacing:3.042766pt;}
.ws57{word-spacing:3.043042pt;}
.ws27{word-spacing:3.058033pt;}
.ws45{word-spacing:3.060120pt;}
.ws60{word-spacing:3.095275pt;}
.ws41{word-spacing:3.153457pt;}
.ws0{word-spacing:3.211639pt;}
.ws20{word-spacing:3.269821pt;}
.ws8{word-spacing:3.700367pt;}
.ws12{word-spacing:3.758549pt;}
.ws77{word-spacing:3.909821pt;}
.ws1d{word-spacing:3.985067pt;}
.ws21{word-spacing:4.782067pt;}
.ws69{word-spacing:5.480732pt;}
.ws85{word-spacing:5.507558pt;}
.ws34{word-spacing:5.538914pt;}
.ws1{word-spacing:5.738467pt;}
.ws66{word-spacing:6.268510pt;}
.ws6e{word-spacing:6.270375pt;}
.ws43{word-spacing:6.271452pt;}
.ws80{word-spacing:6.277784pt;}
.ws7c{word-spacing:6.279317pt;}
.ws51{word-spacing:6.469824pt;}
.ws59{word-spacing:6.644369pt;}
.ws4a{word-spacing:6.760733pt;}
.ws64{word-spacing:7.249461pt;}
.ws24{word-spacing:7.307642pt;}
.ws42{word-spacing:7.400733pt;}
.ws61{word-spacing:7.458915pt;}
.ws5d{word-spacing:7.633461pt;}
.ws78{word-spacing:7.924370pt;}
.ws76{word-spacing:8.704007pt;}
.ws7f{word-spacing:8.738916pt;}
.ws35{word-spacing:9.111280pt;}
.ws3f{word-spacing:9.320735pt;}
.ws32{word-spacing:9.491976pt;}
.ws39{word-spacing:9.495281pt;}
.ws4e{word-spacing:9.507042pt;}
.ws7a{word-spacing:10.426191pt;}
.ws84{word-spacing:11.240737pt;}
.ws83{word-spacing:11.298919pt;}
.ws36{word-spacing:11.589828pt;}
.ws7b{word-spacing:11.845828pt;}
.ws79{word-spacing:12.020374pt;}
.ws6{word-spacing:12.928011pt;}
.ws2{word-spacing:20.722347pt;}
.ws87{word-spacing:20.770926pt;}
.ws70{word-spacing:26.979755pt;}
.ws86{word-spacing:30.487298pt;}
.ws5{word-spacing:35.234938pt;}
.ws54{word-spacing:42.018944pt;}
.ws73{word-spacing:45.184038pt;}
.ws4f{word-spacing:46.789683pt;}
.ws5c{word-spacing:48.325858pt;}
.ws17{word-spacing:62.166867pt;}
.ws62{word-spacing:93.016147pt;}
.ws63{word-spacing:122.059119pt;}
.ws56{word-spacing:187.473611pt;}
.ws74{word-spacing:211.386358pt;}
.ws75{word-spacing:242.106384pt;}
.ws31{word-spacing:454.412015pt;}
.ws47{word-spacing:567.127002pt;}
.ws82{word-spacing:618.601243pt;}
.ws4d{word-spacing:646.063084pt;}
.ws2c{word-spacing:673.175834pt;}
.ws7e{word-spacing:706.106770pt;}
.ws65{word-spacing:722.281329pt;}
.ws2f{word-spacing:724.026785pt;}
.ws4c{word-spacing:782.269909pt;}
.ws4b{word-spacing:803.561397pt;}
.ws5b{word-spacing:889.851265pt;}
._d{margin-left:-33.978210pt;}
._11{margin-left:-30.720026pt;}
._a{margin-left:-29.090933pt;}
._18{margin-left:-27.520023pt;}
._60{margin-left:-12.458607pt;}
._c{margin-left:-9.658190pt;}
._3{margin-left:-8.630654pt;}
._12{margin-left:-7.621825pt;}
._24{margin-left:-5.876369pt;}
._0{margin-left:-4.829095pt;}
._2{margin-left:-2.846279pt;}
._4{margin-left:-1.721549pt;}
._5{width:1.721549pt;}
._2e{width:2.706009pt;}
._19{width:3.723639pt;}
._1a{width:5.643641pt;}
._14{width:8.378189pt;}
._2f{width:14.579741pt;}
._23{width:15.738747pt;}
._55{width:17.499202pt;}
._8{width:19.282105pt;}
._20{width:20.247290pt;}
._5f{width:22.283655pt;}
._2d{width:23.186026pt;}
._1c{width:24.597390pt;}
._15{width:25.983387pt;}
._29{width:26.914297pt;}
._2b{width:28.170391pt;}
._16{width:29.173022pt;}
._b{width:30.370934pt;}
._13{width:31.880491pt;}
._1f{width:35.977129pt;}
._1d{width:37.469122pt;}
._27{width:38.516396pt;}
._28{width:40.354308pt;}
._66{width:42.774039pt;}
._43{width:43.941708pt;}
._1{width:45.907733pt;}
._65{width:47.442129pt;}
._21{width:49.523136pt;}
._42{width:50.436483pt;}
._f{width:53.818227pt;}
._1e{width:55.690414pt;}
._41{width:58.181355pt;}
._7{width:59.461868pt;}
._34{width:63.767326pt;}
._47{width:66.094601pt;}
._e{width:67.316420pt;}
._45{width:68.712785pt;}
._30{width:71.731200pt;}
._4b{width:73.541879pt;}
._4e{width:75.237555pt;}
._49{width:76.892521pt;}
._50{width:80.895527pt;}
._4d{width:84.508294pt;}
._31{width:86.077200pt;}
._36{width:88.960074pt;}
._9{width:95.741205pt;}
._51{width:98.085738pt;}
._52{width:101.804489pt;}
._5a{width:111.315451pt;}
._5d{width:124.180553pt;}
._4f{width:128.530823pt;}
._4a{width:132.456203pt;}
._3d{width:154.123765pt;}
._53{width:155.097757pt;}
._38{width:157.672859pt;}
._54{width:161.771359pt;}
._32{width:173.590783pt;}
._3b{width:183.505607pt;}
._61{width:185.891064pt;}
._59{width:191.016251pt;}
._64{width:193.978343pt;}
._62{width:200.494713pt;}
._5c{width:203.183906pt;}
._48{width:204.718082pt;}
._63{width:208.523810pt;}
._58{width:216.626774pt;}
._3f{width:223.592914pt;}
._5e{width:233.151407pt;}
._4c{width:239.952542pt;}
._5b{width:256.630489pt;}
._57{width:270.185712pt;}
._3a{width:319.302084pt;}
._46{width:360.669391pt;}
._40{width:391.002879pt;}
._44{width:396.892787pt;}
._35{width:448.941651pt;}
._37{width:470.818033pt;}
._3e{width:504.005604pt;}
._39{width:508.776517pt;}
._56{width:526.565972pt;}
._10{width:609.532510pt;}
._3c{width:631.482074pt;}
._33{width:632.844164pt;}
._1b{width:675.549654pt;}
._17{width:914.968035pt;}
._26{width:1462.202766pt;}
._2a{width:1497.916065pt;}
._67{width:1531.788278pt;}
._22{width:1560.879212pt;}
._2c{width:1644.335916pt;}
._25{width:1796.016042pt;}
._6{width:1929.287862pt;}
.fs6{font-size:31.880533pt;}
.fs4{font-size:42.507200pt;}
.fs5{font-size:53.133867pt;}
.fs0{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:10.801333pt;}
.y29{bottom:10.802667pt;}
.y8a{bottom:50.652000pt;}
.y117{bottom:60.052000pt;}
.yad{bottom:60.196000pt;}
.y28{bottom:63.236000pt;}
.y89{bottom:68.718667pt;}
.yd1{bottom:71.316000pt;}
.y15b{bottom:78.112000pt;}
.y116{bottom:78.117333pt;}
.yac{bottom:78.261333pt;}
.y13a{bottom:80.076000pt;}
.y27{bottom:81.302667pt;}
.yd0{bottom:89.381333pt;}
.y139{bottom:91.614667pt;}
.y64{bottom:92.114667pt;}
.yf7{bottom:96.177333pt;}
.y115{bottom:96.182667pt;}
.y88{bottom:96.653333pt;}
.y26{bottom:99.368000pt;}
.y15a{bottom:105.572000pt;}
.yab{bottom:105.721333pt;}
.y17c{bottom:106.185333pt;}
.ycf{bottom:107.446667pt;}
.y87{bottom:114.718667pt;}
.y25{bottom:117.433333pt;}
.y63{bottom:119.573333pt;}
.y17b{bottom:124.252000pt;}
.yce{bottom:125.512000pt;}
.y114{bottom:126.204000pt;}
.y138{bottom:130.441333pt;}
.yf6{bottom:134.790667pt;}
.y24{bottom:135.498667pt;}
.y159{bottom:138.572000pt;}
.y86{bottom:142.178667pt;}
.y17a{bottom:142.317333pt;}
.yaa{bottom:144.140000pt;}
.ycd{bottom:152.972000pt;}
.y23{bottom:153.564000pt;}
.y113{bottom:153.662667pt;}
.y137{bottom:154.722667pt;}
.yf5{bottom:159.028000pt;}
.y179{bottom:160.382667pt;}
.yf4{bottom:164.044000pt;}
.y136{bottom:164.700000pt;}
.yf1{bottom:167.680000pt;}
.y22{bottom:171.630667pt;}
.y62{bottom:174.193333pt;}
.ya9{bottom:176.817333pt;}
.yef{bottom:177.134667pt;}
.y178{bottom:178.448000pt;}
.y85{bottom:180.736000pt;}
.y158{bottom:184.057333pt;}
.yf3{bottom:185.210667pt;}
.y21{bottom:189.696000pt;}
.y112{bottom:189.881333pt;}
.yf2{bottom:190.225333pt;}
.ycc{bottom:191.390667pt;}
.yf0{bottom:193.862667pt;}
.y177{bottom:196.513333pt;}
.y84{bottom:198.801333pt;}
.y135{bottom:198.820000pt;}
.y111{bottom:199.860000pt;}
.y157{bottom:202.122667pt;}
.y20{bottom:207.761333pt;}
.y61{bottom:207.994667pt;}
.ya8{bottom:210.824000pt;}
.ycb{bottom:213.750667pt;}
.y176{bottom:214.580000pt;}
.y83{bottom:216.866667pt;}
.y134{bottom:216.885333pt;}
.yca{bottom:218.766667pt;}
.y156{bottom:223.916000pt;}
.y1f{bottom:225.826667pt;}
.y110{bottom:225.841333pt;}
.y60{bottom:226.060000pt;}
.yee{bottom:226.346667pt;}
.yc7{bottom:232.132000pt;}
.y175{bottom:232.645333pt;}
.y155{bottom:233.893333pt;}
.yc9{bottom:243.117333pt;}
.y1e{bottom:243.892000pt;}
.y5f{bottom:244.125333pt;}
.y133{bottom:244.166667pt;}
.y82{bottom:244.326667pt;}
.ya7{bottom:244.625333pt;}
.y174{bottom:250.710667pt;}
.y10f{bottom:252.541333pt;}
.yc8{bottom:253.296000pt;}
.yed{bottom:253.806667pt;}
.y1d{bottom:261.958667pt;}
.y5e{bottom:262.192000pt;}
.ya6{bottom:262.690667pt;}
.y10e{bottom:270.608000pt;}
.y132{bottom:271.446667pt;}
.y154{bottom:272.501333pt;}
.y81{bottom:277.326667pt;}
.yc6{bottom:278.666667pt;}
.y1c{bottom:280.024000pt;}
.y5d{bottom:280.257333pt;}
.ya5{bottom:280.756000pt;}
.y173{bottom:286.841333pt;}
.y10d{bottom:288.673333pt;}
.yec{bottom:291.888000pt;}
.yc5{bottom:296.732000pt;}
.y1b{bottom:298.089333pt;}
.y5c{bottom:298.322667pt;}
.ya4{bottom:298.821333pt;}
.y131{bottom:298.906667pt;}
.y153{bottom:299.960000pt;}
.yeb{bottom:309.954667pt;}
.y1a{bottom:316.154667pt;}
.y5b{bottom:316.388000pt;}
.y10c{bottom:318.350667pt;}
.y172{bottom:320.848000pt;}
.y80{bottom:322.764000pt;}
.ya3{bottom:324.190667pt;}
.yc4{bottom:324.192000pt;}
.yea{bottom:328.020000pt;}
.y10b{bottom:328.328000pt;}
.y19{bottom:334.220000pt;}
.y130{bottom:337.008000pt;}
.y152{bottom:338.565333pt;}
.y7f{bottom:340.829333pt;}
.y5a{bottom:341.756000pt;}
.ye9{bottom:346.085333pt;}
.y171{bottom:348.306667pt;}
.y18{bottom:352.285333pt;}
.y12f{bottom:355.074667pt;}
.y151{bottom:356.630667pt;}
.yc3{bottom:362.610667pt;}
.ye8{bottom:364.150667pt;}
.y10a{bottom:368.653333pt;}
.y7e{bottom:368.764000pt;}
.ya2{bottom:370.233333pt;}
.y17{bottom:370.352000pt;}
.y12e{bottom:373.140000pt;}
.yc2{bottom:380.677333pt;}
.ye7{bottom:382.216000pt;}
.y150{bottom:382.232000pt;}
.y109{bottom:386.718667pt;}
.y7d{bottom:386.829333pt;}
.y170{bottom:387.257333pt;}
.y59{bottom:388.070667pt;}
.y12d{bottom:391.205333pt;}
.ye6{bottom:400.282667pt;}
.y16{bottom:402.962667pt;}
.y108{bottom:404.785333pt;}
.y7c{bottom:404.896000pt;}
.yc1{bottom:408.136000pt;}
.ya1{bottom:408.652000pt;}
.y16f{bottom:417.278667pt;}
.y14f{bottom:418.364000pt;}
.y15{bottom:421.028000pt;}
.y12c{bottom:423.674667pt;}
.ya0{bottom:426.717333pt;}
.y58{bottom:427.021333pt;}
.ye5{bottom:427.741333pt;}
.y7b{bottom:432.830667pt;}
.y107{bottom:438.790667pt;}
.y14{bottom:439.093333pt;}
.y9f{bottom:444.782667pt;}
.y57{bottom:445.086667pt;}
.y14e{bottom:445.822667pt;}
.y16e{bottom:447.298667pt;}
.y7a{bottom:450.896000pt;}
.y13{bottom:457.160000pt;}
.y9e{bottom:462.849333pt;}
.y56{bottom:463.152000pt;}
.ye4{bottom:465.824000pt;}
.yc0{bottom:465.854667pt;}
.y106{bottom:466.250667pt;}
.y12b{bottom:468.656000pt;}
.y16d{bottom:474.758667pt;}
.y12{bottom:475.225333pt;}
.y79{bottom:478.356000pt;}
.y9d{bottom:480.914667pt;}
.ye3{bottom:483.889333pt;}
.y14d{bottom:484.428000pt;}
.y55{bottom:490.612000pt;}
.y12a{bottom:494.180000pt;}
.y41{bottom:495.893333pt;}
.y9c{bottom:498.980000pt;}
.ybf{bottom:499.018667pt;}
.y14c{bottom:502.493333pt;}
.y11{bottom:507.836000pt;}
.ye2{bottom:512.121333pt;}
.y129{bottom:512.245333pt;}
.y16c{bottom:513.177333pt;}
.ybe{bottom:514.958667pt;}
.y78{bottom:516.913333pt;}
.y9b{bottom:517.045333pt;}
.y14b{bottom:520.560000pt;}
.y105{bottom:520.609333pt;}
.y54{bottom:523.612000pt;}
.y10{bottom:525.901333pt;}
.y40{bottom:528.504000pt;}
.ye1{bottom:530.186667pt;}
.y128{bottom:530.310667pt;}
.ybd{bottom:530.898667pt;}
.y77{bottom:534.978667pt;}
.y9a{bottom:535.110667pt;}
.y14a{bottom:538.625333pt;}
.y16b{bottom:543.198667pt;}
.yf{bottom:543.966667pt;}
.y3f{bottom:546.570667pt;}
.ybc{bottom:546.840000pt;}
.ye0{bottom:548.252000pt;}
.y127{bottom:548.376000pt;}
.y76{bottom:553.044000pt;}
.y99{bottom:553.176000pt;}
.y104{bottom:553.773333pt;}
.y16a{bottom:561.264000pt;}
.ye{bottom:562.033333pt;}
.y3e{bottom:564.636000pt;}
.y149{bottom:566.084000pt;}
.ydf{bottom:566.317333pt;}
.y53{bottom:569.441333pt;}
.y103{bottom:569.713333pt;}
.ybb{bottom:570.082667pt;}
.y126{bottom:573.900000pt;}
.yd{bottom:580.098667pt;}
.y75{bottom:580.980000pt;}
.y3d{bottom:582.701333pt;}
.y98{bottom:583.197333pt;}
.y102{bottom:585.653333pt;}
.y52{bottom:587.508000pt;}
.y169{bottom:591.284000pt;}
.yde{bottom:594.549333pt;}
.yc{bottom:598.164000pt;}
.y74{bottom:599.045333pt;}
.y3c{bottom:600.766667pt;}
.y125{bottom:601.358667pt;}
.y101{bottom:601.593333pt;}
.y148{bottom:604.689333pt;}
.y51{bottom:605.573333pt;}
.y97{bottom:610.657333pt;}
.yba{bottom:611.809333pt;}
.y73{bottom:617.110667pt;}
.y168{bottom:618.744000pt;}
.y3b{bottom:618.832000pt;}
.ydd{bottom:622.009333pt;}
.y147{bottom:622.756000pt;}
.y50{bottom:623.638667pt;}
.y100{bottom:624.837333pt;}
.yb{bottom:630.774667pt;}
.y3a{bottom:636.898667pt;}
.y96{bottom:638.116000pt;}
.y124{bottom:638.930667pt;}
.y146{bottom:640.821333pt;}
.y4f{bottom:641.704000pt;}
.y72{bottom:644.570667pt;}
.ya{bottom:648.841333pt;}
.yb9{bottom:650.760000pt;}
.y123{bottom:656.996000pt;}
.y167{bottom:657.162667pt;}
.y145{bottom:658.886667pt;}
.y4e{bottom:659.769333pt;}
.ydc{bottom:660.090667pt;}
.y9{bottom:666.906667pt;}
.yff{bottom:669.392000pt;}
.y39{bottom:669.509333pt;}
.yb8{bottom:674.001333pt;}
.y122{bottom:675.061333pt;}
.y166{bottom:675.229333pt;}
.y95{bottom:677.066667pt;}
.y4d{bottom:677.836000pt;}
.ydb{bottom:678.157333pt;}
.y71{bottom:683.126667pt;}
.yb7{bottom:683.978667pt;}
.y144{bottom:686.346667pt;}
.y38{bottom:687.574667pt;}
.y121{bottom:693.126667pt;}
.y165{bottom:693.294667pt;}
.y94{bottom:695.132000pt;}
.y8{bottom:699.517333pt;}
.y4c{bottom:705.294667pt;}
.y37{bottom:705.640000pt;}
.yfe{bottom:707.810667pt;}
.yda{bottom:710.016000pt;}
.y70{bottom:711.061333pt;}
.y120{bottom:711.192000pt;}
.y164{bottom:711.360000pt;}
.y93{bottom:713.198667pt;}
.y6f{bottom:721.038667pt;}
.yb6{bottom:723.334667pt;}
.y36{bottom:723.705333pt;}
.y143{bottom:724.950667pt;}
.yfd{bottom:725.876000pt;}
.y11f{bottom:729.258667pt;}
.y163{bottom:729.425333pt;}
.yd9{bottom:737.476000pt;}
.y35{bottom:741.772000pt;}
.yfc{bottom:743.942667pt;}
.y4b{bottom:744.245333pt;}
.y92{bottom:745.668000pt;}
.yb5{bottom:756.012000pt;}
.y11e{bottom:756.717333pt;}
.y142{bottom:758.224000pt;}
.y6e{bottom:758.942667pt;}
.y162{bottom:759.446667pt;}
.y34{bottom:759.837333pt;}
.y181{bottom:761.170667pt;}
.y7{bottom:761.286667pt;}
.yfb{bottom:762.008000pt;}
.y4a{bottom:762.310667pt;}
.yb4{bottom:774.077333pt;}
.yd8{bottom:775.557333pt;}
.y161{bottom:777.512000pt;}
.y180{bottom:779.236000pt;}
.y49{bottom:780.376000pt;}
.y6d{bottom:785.470667pt;}
.y91{bottom:791.497333pt;}
.yfa{bottom:792.028000pt;}
.y33{bottom:792.448000pt;}
.y141{bottom:792.833333pt;}
.yd7{bottom:793.622667pt;}
.y6{bottom:793.809333pt;}
.y11d{bottom:794.288000pt;}
.y6c{bottom:795.448000pt;}
.yb2{bottom:802.300000pt;}
.y160{bottom:804.972000pt;}
.y48{bottom:807.836000pt;}
.y90{bottom:809.562667pt;}
.yf9{bottom:810.093333pt;}
.y32{bottom:810.513333pt;}
.y140{bottom:810.900000pt;}
.yb3{bottom:812.277333pt;}
.yb1{bottom:812.278667pt;}
.y5{bottom:812.406667pt;}
.yd6{bottom:821.082667pt;}
.y11c{bottom:822.897333pt;}
.y13f{bottom:828.965333pt;}
.y6b{bottom:833.352000pt;}
.y8f{bottom:837.022667pt;}
.yf8{bottom:837.553333pt;}
.y11b{bottom:840.962667pt;}
.y31{bottom:843.125333pt;}
.y15f{bottom:843.390667pt;}
.y47{bottom:846.786667pt;}
.y13e{bottom:847.030667pt;}
.yb0{bottom:851.634667pt;}
.y4{bottom:852.821333pt;}
.y11a{bottom:859.028000pt;}
.yd5{bottom:859.696000pt;}
.y30{bottom:861.190667pt;}
.y6a{bottom:863.526667pt;}
.y46{bottom:864.852000pt;}
.y17f{bottom:866.977333pt;}
.y13d{bottom:872.398667pt;}
.y15e{bottom:873.410667pt;}
.y8e{bottom:875.972000pt;}
.yd4{bottom:877.761333pt;}
.y2f{bottom:879.256000pt;}
.y3{bottom:882.045333pt;}
.y45{bottom:882.917333pt;}
.y17e{bottom:885.042667pt;}
.yaf{bottom:885.640000pt;}
.y119{bottom:886.488000pt;}
.y15d{bottom:891.477333pt;}
.y69{bottom:893.701333pt;}
.y8d{bottom:894.038667pt;}
.yd3{bottom:895.826667pt;}
.y2e{bottom:897.321333pt;}
.y44{bottom:900.982667pt;}
.y17d{bottom:903.108000pt;}
.y13c{bottom:909.124000pt;}
.y2{bottom:911.269333pt;}
.y8c{bottom:912.104000pt;}
.yae{bottom:913.100000pt;}
.yd2{bottom:913.892000pt;}
.y2d{bottom:915.386667pt;}
.y43{bottom:919.049333pt;}
.y15c{bottom:921.497333pt;}
.y68{bottom:922.484000pt;}
.y118{bottom:924.058667pt;}
.y66{bottom:932.462667pt;}
.y2c{bottom:933.453333pt;}
.y13b{bottom:936.582667pt;}
.y42{bottom:937.114667pt;}
.y8b{bottom:942.124000pt;}
.y67{bottom:942.570667pt;}
.y2b{bottom:951.518667pt;}
.y2a{bottom:969.584000pt;}
.y1{bottom:1012.125333pt;}
.h11{height:2.327275pt;}
.hd{height:23.910400pt;}
.hf{height:31.880400pt;}
.hb{height:39.850400pt;}
.h1b{height:40.378215pt;}
.h1c{height:41.018216pt;}
.h2{height:43.636400pt;}
.h4{height:44.887791pt;}
.h6{height:47.820800pt;}
.h7{height:52.995067pt;}
.he{height:56.223735pt;}
.h5{height:57.384800pt;}
.h8{height:58.691067pt;}
.h14{height:66.908608pt;}
.h12{height:66.913941pt;}
.h3{height:68.861600pt;}
.ha{height:82.996400pt;}
.h9{height:83.321733pt;}
.h16{height:83.545733pt;}
.h18{height:83.551067pt;}
.h17{height:84.068400pt;}
.h13{height:86.972608pt;}
.h1a{height:89.791067pt;}
.hc{height:101.815275pt;}
.h19{height:101.820608pt;}
.h15{height:116.063067pt;}
.h10{height:121.601941pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:94.488000pt;}
.xd{left:112.266667pt;}
.x9{left:116.306667pt;}
.x38{left:125.033333pt;}
.x2{left:130.856000pt;}
.xa{left:149.761333pt;}
.x4{left:154.074667pt;}
.xb{left:156.037333pt;}
.x1{left:181.417333pt;}
.x39{left:186.124000pt;}
.x31{left:189.158667pt;}
.x23{left:197.597333pt;}
.x32{left:199.561333pt;}
.x33{left:203.198667pt;}
.x18{left:205.916000pt;}
.x3a{left:216.669333pt;}
.x24{left:224.685333pt;}
.x22{left:231.874667pt;}
.x34{left:237.396000pt;}
.xc{left:247.961333pt;}
.x28{left:250.406667pt;}
.x1a{left:257.332000pt;}
.x13{left:267.074667pt;}
.x2f{left:279.385333pt;}
.x19{left:281.577333pt;}
.x3b{left:296.422667pt;}
.x35{left:300.910667pt;}
.x2a{left:305.873333pt;}
.x2c{left:311.896000pt;}
.x1f{left:314.986667pt;}
.x2d{left:316.526667pt;}
.x14{left:318.365333pt;}
.x6{left:322.062667pt;}
.x5{left:325.320000pt;}
.x10{left:334.484000pt;}
.x7{left:338.537333pt;}
.x29{left:341.317333pt;}
.x27{left:345.277333pt;}
.x1e{left:347.476000pt;}
.x1b{left:354.362667pt;}
.x3{left:361.277333pt;}
.x30{left:362.741333pt;}
.x15{left:372.400000pt;}
.x11{left:383.944000pt;}
.x20{left:395.208000pt;}
.x1c{left:404.644000pt;}
.x2e{left:413.424000pt;}
.x2b{left:415.240000pt;}
.x1d{left:427.216000pt;}
.xe{left:431.916000pt;}
.x26{left:439.797333pt;}
.x12{left:447.094667pt;}
.x16{left:451.172000pt;}
.x36{left:462.680000pt;}
.x21{left:466.593333pt;}
.x37{left:492.854667pt;}
.x25{left:497.497333pt;}
.x17{left:514.505333pt;}
.xf{left:680.626667pt;}
}




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