
    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_a733c7ed59eab023e5ccfeb9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_372c9d79c1b6d7c5f1d0990f.woff2')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_f2b246997d698db2d475fe64.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d7c6b84c89e0c2a16cccf4f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.980000;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_7d723dc1fd589ec6f1164bb6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.980000;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_89f892fcde8d159ced7934db.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.760000;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_a0a565006627f69eabda3516.woff2')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_4129c2cb789d42bfda26f379.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9e168e0ac710fb3c9cae89d9.woff2')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_9e168e0ac710fb3c9cae89d9.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9e168e0ac710fb3c9cae89d9.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_70aab1e3a2a30471f135815f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.014000;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_18613b018cbfd4c92ebdfbc4.woff2')format("woff");}.fff{font-family:fff;line-height:0.985000;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_c5b4015ad24036ada006bbf5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d42dd080302fbbc6ee9d6b38.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_4cdedbed8dcefb972892e251.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.985000;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;}
.m2{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m3{transform:matrix(0.244537,0.000000,-0.051977,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051977,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051977,0.244537,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-28.800000px;}
.v5{vertical-align:-24.000000px;}
.v3{vertical-align:-19.200600px;}
.v7{vertical-align:-9.180000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:19.200000px;}
.v8{vertical-align:22.887000px;}
.v4{vertical-align:24.000000px;}
.v1{vertical-align:28.800000px;}
.ls6{letter-spacing:-4.320000px;}
.ls1a{letter-spacing:-2.940000px;}
.ls7{letter-spacing:-2.880000px;}
.ls17{letter-spacing:-2.820000px;}
.ls5{letter-spacing:-2.640000px;}
.ls1d{letter-spacing:-2.580000px;}
.ls8{letter-spacing:-2.400000px;}
.ls9{letter-spacing:-2.160000px;}
.lsa{letter-spacing:-2.024234px;}
.ls4{letter-spacing:-1.987731px;}
.ls3{letter-spacing:-1.920000px;}
.ls10{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000240px;}
.ls15{letter-spacing:0.000312px;}
.ls13{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.111912px;}
.lsb{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.180000px;}
.lse{letter-spacing:0.192000px;}
.ls2{letter-spacing:0.240000px;}
.ls14{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.480000px;}
.ls1c{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.600000px;}
.ls18{letter-spacing:0.780000px;}
.ls1f{letter-spacing:0.840000px;}
.ls1e{letter-spacing:0.960000px;}
.ls16{letter-spacing:1.260000px;}
.lsc{letter-spacing:33.772200px;}
.lsf{letter-spacing:33.884400px;}
.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;}
}
.wse0{word-spacing:-60.000000px;}
.ws6{word-spacing:-26.712000px;}
.ws1f{word-spacing:-25.033022px;}
.ws1{word-spacing:-23.826000px;}
.ws5{word-spacing:-21.660000px;}
.wse3{word-spacing:-17.328000px;}
.ws4{word-spacing:-16.320000px;}
.ws2{word-spacing:-16.244712px;}
.wsb5{word-spacing:-15.300000px;}
.wse1{word-spacing:-15.000000px;}
.wse2{word-spacing:-14.880000px;}
.wsc2{word-spacing:-14.820000px;}
.wsd3{word-spacing:-14.640000px;}
.wsd4{word-spacing:-14.580000px;}
.wsd1{word-spacing:-14.400000px;}
.wsce{word-spacing:-14.340000px;}
.wsc4{word-spacing:-14.280000px;}
.wsc3{word-spacing:-14.220000px;}
.wsb7{word-spacing:-14.160000px;}
.ws9b{word-spacing:-14.100000px;}
.ws20{word-spacing:-14.040000px;}
.ws7e{word-spacing:-12.636000px;}
.wsd2{word-spacing:-11.460000px;}
.wsc1{word-spacing:-11.100000px;}
.ws3{word-spacing:-10.633920px;}
.ws5e{word-spacing:-8.185320px;}
.ws71{word-spacing:-6.548256px;}
.wsd6{word-spacing:-3.960000px;}
.ws98{word-spacing:-3.240000px;}
.wscf{word-spacing:-2.940000px;}
.ws68{word-spacing:-2.820000px;}
.ws2f{word-spacing:-2.760000px;}
.wsea{word-spacing:-2.700000px;}
.ws4d{word-spacing:-2.640000px;}
.ws31{word-spacing:-2.580000px;}
.ws67{word-spacing:-2.460000px;}
.ws8d{word-spacing:-2.400000px;}
.ws45{word-spacing:-2.340000px;}
.ws3a{word-spacing:-2.280000px;}
.ws6e{word-spacing:-2.220000px;}
.ws28{word-spacing:-2.160000px;}
.ws72{word-spacing:-2.100000px;}
.wsa9{word-spacing:-2.040000px;}
.ws12{word-spacing:-1.980000px;}
.ws53{word-spacing:-1.920000px;}
.ws55{word-spacing:-1.860000px;}
.wsab{word-spacing:-1.800000px;}
.ws18{word-spacing:-1.740000px;}
.ws21{word-spacing:-1.680000px;}
.ws26{word-spacing:-1.620000px;}
.ws99{word-spacing:-1.560000px;}
.wse9{word-spacing:-1.500000px;}
.wsac{word-spacing:-1.440000px;}
.ws13{word-spacing:-1.380000px;}
.ws11{word-spacing:-1.320000px;}
.wsaf{word-spacing:-1.260000px;}
.ws7b{word-spacing:-1.200000px;}
.ws7a{word-spacing:-1.140000px;}
.ws4c{word-spacing:-1.080000px;}
.ws43{word-spacing:-1.020000px;}
.ws46{word-spacing:-0.960000px;}
.ws39{word-spacing:-0.900000px;}
.ws64{word-spacing:-0.840000px;}
.wsae{word-spacing:-0.780000px;}
.ws2a{word-spacing:-0.720000px;}
.wsa5{word-spacing:-0.660000px;}
.ws79{word-spacing:-0.600000px;}
.ws3c{word-spacing:-0.540000px;}
.ws3f{word-spacing:-0.480000px;}
.ws44{word-spacing:-0.420000px;}
.ws2e{word-spacing:-0.360000px;}
.ws75{word-spacing:-0.300000px;}
.ws90{word-spacing:-0.240000px;}
.ws8f{word-spacing:-0.180000px;}
.wsa7{word-spacing:-0.120000px;}
.ws9c{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws49{word-spacing:0.060000px;}
.ws1c{word-spacing:0.120000px;}
.wse{word-spacing:0.180000px;}
.wsa8{word-spacing:0.240000px;}
.wsd{word-spacing:0.300000px;}
.ws61{word-spacing:0.360000px;}
.ws47{word-spacing:0.480000px;}
.ws4b{word-spacing:0.540000px;}
.ws3e{word-spacing:0.600000px;}
.ws9a{word-spacing:0.624000px;}
.ws8a{word-spacing:0.660000px;}
.ws65{word-spacing:0.720000px;}
.ws23{word-spacing:0.780000px;}
.ws51{word-spacing:0.840000px;}
.ws29{word-spacing:0.900000px;}
.ws97{word-spacing:0.960000px;}
.ws36{word-spacing:1.020000px;}
.ws27{word-spacing:1.140000px;}
.ws4f{word-spacing:1.200000px;}
.ws5f{word-spacing:1.260000px;}
.ws8c{word-spacing:1.320000px;}
.ws59{word-spacing:1.380000px;}
.ws54{word-spacing:1.440000px;}
.wsc{word-spacing:1.500000px;}
.ws3d{word-spacing:1.560000px;}
.ws6a{word-spacing:1.620000px;}
.ws4a{word-spacing:1.680000px;}
.ws8e{word-spacing:1.740000px;}
.ws76{word-spacing:1.800000px;}
.ws89{word-spacing:1.860000px;}
.ws7{word-spacing:1.920000px;}
.ws74{word-spacing:1.980000px;}
.wsb3{word-spacing:2.024234px;}
.ws17{word-spacing:2.040000px;}
.ws5c{word-spacing:2.100000px;}
.wsbd{word-spacing:2.160000px;}
.ws1b{word-spacing:2.220000px;}
.wsb1{word-spacing:2.280000px;}
.wsf{word-spacing:2.340000px;}
.ws9{word-spacing:2.400000px;}
.ws9e{word-spacing:2.520000px;}
.ws52{word-spacing:2.580000px;}
.ws14{word-spacing:2.640000px;}
.wsa4{word-spacing:2.700000px;}
.ws38{word-spacing:2.760000px;}
.ws57{word-spacing:2.820000px;}
.ws8{word-spacing:2.880000px;}
.ws1a{word-spacing:2.940000px;}
.ws1d{word-spacing:3.000000px;}
.wsbe{word-spacing:3.120000px;}
.ws25{word-spacing:3.240000px;}
.ws6b{word-spacing:3.300000px;}
.ws4e{word-spacing:3.360000px;}
.wsba{word-spacing:3.420000px;}
.wsa6{word-spacing:3.480000px;}
.ws22{word-spacing:3.540000px;}
.ws73{word-spacing:3.600000px;}
.wseb{word-spacing:3.660000px;}
.ws34{word-spacing:3.720000px;}
.ws88{word-spacing:3.780000px;}
.ws86{word-spacing:3.840000px;}
.ws3b{word-spacing:3.900000px;}
.ws42{word-spacing:3.960000px;}
.wsa3{word-spacing:4.020000px;}
.wsbc{word-spacing:4.080000px;}
.ws82{word-spacing:4.140000px;}
.ws2b{word-spacing:4.200000px;}
.wsaa{word-spacing:4.260000px;}
.ws69{word-spacing:4.320000px;}
.wsa1{word-spacing:4.380000px;}
.ws8b{word-spacing:4.440000px;}
.wsb2{word-spacing:4.512000px;}
.ws7d{word-spacing:4.560000px;}
.ws94{word-spacing:4.680000px;}
.ws5b{word-spacing:4.740000px;}
.ws30{word-spacing:4.800000px;}
.ws16{word-spacing:4.860000px;}
.ws41{word-spacing:4.980000px;}
.ws60{word-spacing:5.100000px;}
.ws62{word-spacing:5.160000px;}
.ws5d{word-spacing:5.220000px;}
.ws2d{word-spacing:5.280000px;}
.ws33{word-spacing:5.340000px;}
.ws87{word-spacing:5.400000px;}
.ws35{word-spacing:5.460000px;}
.ws37{word-spacing:5.580000px;}
.ws92{word-spacing:5.640000px;}
.ws7c{word-spacing:5.700000px;}
.ws58{word-spacing:5.820000px;}
.wsad{word-spacing:5.880000px;}
.ws83{word-spacing:5.940000px;}
.ws93{word-spacing:6.060000px;}
.ws32{word-spacing:6.120000px;}
.ws63{word-spacing:6.180000px;}
.ws10{word-spacing:6.240000px;}
.ws85{word-spacing:6.300000px;}
.ws6c{word-spacing:6.360000px;}
.ws24{word-spacing:6.420000px;}
.wsbb{word-spacing:6.480000px;}
.wsd7{word-spacing:6.540000px;}
.ws15{word-spacing:6.600000px;}
.wsa2{word-spacing:6.660000px;}
.ws2c{word-spacing:6.720000px;}
.ws70{word-spacing:6.864000px;}
.ws84{word-spacing:7.020000px;}
.ws9f{word-spacing:7.140000px;}
.wsb9{word-spacing:7.200000px;}
.ws91{word-spacing:7.320000px;}
.ws56{word-spacing:7.380000px;}
.ws6f{word-spacing:7.440000px;}
.ws78{word-spacing:7.500000px;}
.ws66{word-spacing:7.560000px;}
.ws40{word-spacing:7.620000px;}
.ws5a{word-spacing:7.740000px;}
.ws77{word-spacing:7.800000px;}
.ws95{word-spacing:7.860000px;}
.ws6d{word-spacing:7.920000px;}
.ws1e{word-spacing:7.980000px;}
.ws50{word-spacing:8.040000px;}
.wsb4{word-spacing:8.100000px;}
.wsc9{word-spacing:8.160000px;}
.wsd5{word-spacing:8.280000px;}
.wsa0{word-spacing:8.340000px;}
.wsd0{word-spacing:8.400000px;}
.ws19{word-spacing:8.460000px;}
.wsa{word-spacing:8.520000px;}
.wsb{word-spacing:8.700000px;}
.wsec{word-spacing:8.940000px;}
.wsda{word-spacing:9.180000px;}
.wsc8{word-spacing:9.300000px;}
.wscb{word-spacing:9.360000px;}
.ws9d{word-spacing:9.600000px;}
.wscd{word-spacing:9.720000px;}
.wsc6{word-spacing:9.780000px;}
.wse7{word-spacing:9.900000px;}
.wsb8{word-spacing:9.960000px;}
.wsdf{word-spacing:10.200000px;}
.ws48{word-spacing:10.260000px;}
.wsc7{word-spacing:10.380000px;}
.wse5{word-spacing:10.560000px;}
.wsc0{word-spacing:10.620000px;}
.wsb0{word-spacing:10.740000px;}
.wsde{word-spacing:11.580000px;}
.ws96{word-spacing:11.760000px;}
.wsca{word-spacing:11.880000px;}
.wsc5{word-spacing:12.060000px;}
.wsb6{word-spacing:12.480000px;}
.wsdb{word-spacing:12.540000px;}
.wsdc{word-spacing:12.600000px;}
.wsdd{word-spacing:13.740000px;}
.wsbf{word-spacing:13.920000px;}
.wsd9{word-spacing:15.000000px;}
.wscc{word-spacing:15.960000px;}
.wsd8{word-spacing:17.220000px;}
.wse8{word-spacing:18.360000px;}
.wse6{word-spacing:20.160000px;}
.wse4{word-spacing:23.100000px;}
.ws81{word-spacing:238.296000px;}
.ws80{word-spacing:352.884000px;}
.ws7f{word-spacing:358.878000px;}
._d{margin-left:-2601.267000px;}
._1c{margin-left:-26.520000px;}
._1e{margin-left:-24.240000px;}
._b{margin-left:-23.220000px;}
._f{margin-left:-14.040000px;}
._18{margin-left:-12.840000px;}
._e{margin-left:-11.424000px;}
._1f{margin-left:-8.163000px;}
._3{margin-left:-6.727200px;}
._8{margin-left:-5.640000px;}
._4{margin-left:-4.500000px;}
._1{margin-left:-3.120000px;}
._0{margin-left:-1.440000px;}
._2{width:1.920000px;}
._5{width:3.720000px;}
._6{width:5.700000px;}
._7{width:6.907200px;}
._1b{width:7.921800px;}
._19{width:9.312000px;}
._9{width:12.899400px;}
._a{width:13.920000px;}
._1d{width:21.279600px;}
._1a{width:24.120000px;}
._17{width:59.664000px;}
._10{width:73.920000px;}
._15{width:553.786200px;}
._11{width:594.405000px;}
._20{width:696.706200px;}
._14{width:706.918200px;}
._12{width:771.520200px;}
._16{width:934.846200px;}
._13{width:1015.252200px;}
._c{width:1212.893400px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:27.984000px;}
.fsc{font-size:34.980000px;}
.fs9{font-size:41.976000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:49.693267px;}
.fsd{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fsb{font-size:67.474452px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.yd1{bottom:101.834700px;}
.y87{bottom:106.225650px;}
.yb8{bottom:108.012750px;}
.y17c{bottom:110.305350px;}
.y197{bottom:110.551200px;}
.yd0{bottom:116.834700px;}
.y14a{bottom:120.921150px;}
.y10c{bottom:121.305300px;}
.y1e6{bottom:121.727250px;}
.y86{bottom:124.975650px;}
.y196{bottom:125.551200px;}
.y1b8{bottom:125.998500px;}
.yb7{bottom:126.762750px;}
.y17b{bottom:129.055350px;}
.y50{bottom:132.083250px;}
.y149{bottom:135.921150px;}
.y1e5{bottom:136.127250px;}
.y22{bottom:139.264499px;}
.y10b{bottom:140.055300px;}
.y85{bottom:143.725650px;}
.yea{bottom:143.887800px;}
.y1b7{bottom:144.748500px;}
.yb6{bottom:145.512750px;}
.y17a{bottom:147.805350px;}
.y4f{bottom:150.833250px;}
.y148{bottom:150.921150px;}
.y10a{bottom:158.805300px;}
.y1e4{bottom:160.128300px;}
.ye9{bottom:161.887800px;}
.y84{bottom:162.475650px;}
.y1b6{bottom:163.498500px;}
.yb5{bottom:164.262750px;}
.y147{bottom:165.921150px;}
.y179{bottom:166.555350px;}
.y4e{bottom:169.583250px;}
.y1e3{bottom:174.528300px;}
.y109{bottom:177.556500px;}
.y146{bottom:180.921150px;}
.y83{bottom:181.225650px;}
.y1b5{bottom:182.248500px;}
.yb4{bottom:183.012750px;}
.y195{bottom:183.776850px;}
.y178{bottom:185.305350px;}
.y4d{bottom:188.333250px;}
.y1e2{bottom:188.928300px;}
.y19{bottom:196.933500px;}
.y82{bottom:199.975650px;}
.y1b4{bottom:200.998500px;}
.yb3{bottom:201.762750px;}
.y194{bottom:202.526850px;}
.y1e1{bottom:203.328300px;}
.y177{bottom:204.055350px;}
.y4c{bottom:207.083250px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y108{bottom:214.291050px;}
.ycf{bottom:218.725650px;}
.y81{bottom:218.726850px;}
.y1b3{bottom:219.748500px;}
.yb2{bottom:220.512750px;}
.y193{bottom:221.276850px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y176{bottom:222.805350px;}
.y4b{bottom:225.833250px;}
.y1e0{bottom:232.128300px;}
.y107{bottom:233.041050px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yce{bottom:237.475650px;}
.y145{bottom:238.121400px;}
.y1b2{bottom:238.498500px;}
.yb1{bottom:239.262750px;}
.y192{bottom:240.026850px;}
.y175{bottom:241.555350px;}
.y4a{bottom:244.583250px;}
.y106{bottom:251.791050px;}
.y80{bottom:255.461550px;}
.ycd{bottom:256.225650px;}
.y144{bottom:256.871400px;}
.y1b1{bottom:257.248500px;}
.yb0{bottom:258.012750px;}
.y191{bottom:258.776850px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y174{bottom:260.305350px;}
.y1df{bottom:260.928300px;}
.y49{bottom:263.333250px;}
.y105{bottom:270.541050px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y7f{bottom:274.211550px;}
.ycc{bottom:274.975650px;}
.y1de{bottom:275.328300px;}
.y143{bottom:275.621400px;}
.y1b0{bottom:275.998500px;}
.yaf{bottom:276.762750px;}
.y190{bottom:277.526850px;}
.y19f{bottom:279.055350px;}
.y173{bottom:279.056400px;}
.y48{bottom:282.083250px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y104{bottom:289.291050px;}
.y1dd{bottom:289.728300px;}
.y7e{bottom:292.961550px;}
.ycb{bottom:293.726850px;}
.y142{bottom:294.371400px;}
.y1af{bottom:294.748500px;}
.yae{bottom:295.512750px;}
.y18f{bottom:296.276850px;}
.y19e{bottom:297.805350px;}
.y47{bottom:300.833250px;}
.y103{bottom:308.041050px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y7d{bottom:311.711550px;}
.y141{bottom:313.121400px;}
.y1ae{bottom:313.498500px;}
.yad{bottom:314.262750px;}
.y18e{bottom:315.026850px;}
.yca{bottom:315.028200px;}
.y172{bottom:315.791100px;}
.y19d{bottom:316.555350px;}
.y46{bottom:319.583250px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y102{bottom:326.791050px;}
.y7c{bottom:330.461550px;}
.y140{bottom:331.871400px;}
.y1ad{bottom:332.248500px;}
.yac{bottom:333.012750px;}
.y18d{bottom:333.776850px;}
.y171{bottom:334.541100px;}
.y19c{bottom:335.305350px;}
.y1ac{bottom:338.248500px;}
.y45{bottom:338.333250px;}
.y101{bottom:345.541050px;}
.y10{bottom:348.133500px;}
.y7b{bottom:349.211550px;}
.y13f{bottom:350.621400px;}
.y1ab{bottom:350.998500px;}
.yab{bottom:351.762750px;}
.y18c{bottom:352.526850px;}
.y170{bottom:353.291100px;}
.y19b{bottom:354.055350px;}
.y44{bottom:357.083250px;}
.y100{bottom:364.291050px;}
.y7a{bottom:367.961550px;}
.y13e{bottom:369.371400px;}
.y1aa{bottom:369.748500px;}
.yaa{bottom:370.512750px;}
.y18b{bottom:371.276850px;}
.y16f{bottom:372.041100px;}
.y19a{bottom:372.806400px;}
.y43{bottom:375.833250px;}
.yff{bottom:383.042250px;}
.y79{bottom:386.711550px;}
.yf{bottom:386.785499px;}
.y13d{bottom:388.121400px;}
.y1a9{bottom:388.498650px;}
.ya9{bottom:389.262750px;}
.y18a{bottom:390.026850px;}
.y16e{bottom:390.791100px;}
.y42{bottom:394.583250px;}
.y78{bottom:405.461550px;}
.y13c{bottom:406.871400px;}
.y1a8{bottom:407.248650px;}
.ya8{bottom:408.012750px;}
.ye{bottom:408.044999px;}
.y189{bottom:408.776850px;}
.y16d{bottom:409.541100px;}
.y41{bottom:413.333250px;}
.yfe{bottom:419.776950px;}
.y77{bottom:424.211550px;}
.y13b{bottom:425.621400px;}
.y1a7{bottom:425.998650px;}
.ya7{bottom:426.762750px;}
.y188{bottom:427.526850px;}
.y16c{bottom:428.291100px;}
.y199{bottom:428.292300px;}
.y40{bottom:432.083250px;}
.yfd{bottom:438.526950px;}
.y76{bottom:442.961550px;}
.y13a{bottom:444.372600px;}
.y1a6{bottom:444.748650px;}
.ya6{bottom:445.512750px;}
.y187{bottom:446.276850px;}
.y16b{bottom:447.041100px;}
.y3f{bottom:450.833250px;}
.yfc{bottom:457.276950px;}
.y75{bottom:461.711550px;}
.y1a5{bottom:463.498650px;}
.ya5{bottom:464.262750px;}
.y186{bottom:465.026850px;}
.y16a{bottom:465.791100px;}
.y3e{bottom:469.583250px;}
.yfb{bottom:476.026950px;}
.y74{bottom:480.461550px;}
.y139{bottom:481.107300px;}
.y1a4{bottom:482.248650px;}
.ya4{bottom:483.012750px;}
.y185{bottom:483.776850px;}
.y169{bottom:484.542300px;}
.y1dc{bottom:484.798500px;}
.yd{bottom:484.864502px;}
.y3d{bottom:488.333250px;}
.yfa{bottom:494.776950px;}
.y73{bottom:499.211550px;}
.y138{bottom:499.857300px;}
.y1a3{bottom:500.998650px;}
.ya3{bottom:501.762750px;}
.y184{bottom:502.526850px;}
.yc{bottom:502.864502px;}
.y1db{bottom:503.548500px;}
.y3c{bottom:507.083250px;}
.yf9{bottom:513.526950px;}
.y72{bottom:517.961550px;}
.y137{bottom:518.607300px;}
.y1a2{bottom:519.748650px;}
.ya2{bottom:520.512750px;}
.yb{bottom:520.864502px;}
.y168{bottom:521.276850px;}
.y1da{bottom:522.298500px;}
.y3b{bottom:525.833250px;}
.yf8{bottom:532.276950px;}
.y71{bottom:536.711550px;}
.y136{bottom:537.357300px;}
.y1a1{bottom:538.498650px;}
.ya{bottom:538.864499px;}
.yc9{bottom:539.262750px;}
.ya1{bottom:539.263950px;}
.y167{bottom:540.026850px;}
.y1d9{bottom:541.048500px;}
.y3a{bottom:544.583250px;}
.yf7{bottom:551.026950px;}
.y70{bottom:555.461550px;}
.y135{bottom:556.107300px;}
.y9{bottom:556.864499px;}
.y1a0{bottom:557.248650px;}
.yc8{bottom:558.012750px;}
.y166{bottom:558.776850px;}
.y1d8{bottom:559.798500px;}
.y39{bottom:563.334300px;}
.yf6{bottom:569.776950px;}
.y6f{bottom:574.211550px;}
.y134{bottom:574.857300px;}
.ya0{bottom:575.998650px;}
.yc7{bottom:576.762750px;}
.y165{bottom:577.526850px;}
.y1d7{bottom:578.548500px;}
.yf5{bottom:588.526950px;}
.y6e{bottom:592.961550px;}
.y133{bottom:593.607300px;}
.y9f{bottom:594.748650px;}
.yc6{bottom:595.512750px;}
.y164{bottom:596.276850px;}
.y1d6{bottom:597.298500px;}
.yf4{bottom:607.276950px;}
.y6d{bottom:611.711550px;}
.y132{bottom:612.357300px;}
.y9e{bottom:613.498650px;}
.yc5{bottom:614.262750px;}
.y163{bottom:615.026850px;}
.y1d5{bottom:616.048500px;}
.y38{bottom:618.649500px;}
.yf3{bottom:626.026950px;}
.y6c{bottom:630.461550px;}
.y131{bottom:631.107300px;}
.y9d{bottom:632.248650px;}
.yc4{bottom:633.012750px;}
.y162{bottom:633.776850px;}
.y1d4{bottom:634.798500px;}
.y37{bottom:636.649500px;}
.yf2{bottom:644.778150px;}
.y8{bottom:645.510000px;}
.y6b{bottom:649.211550px;}
.y130{bottom:649.857300px;}
.y9c{bottom:650.998650px;}
.yc3{bottom:651.762750px;}
.y161{bottom:652.526850px;}
.y1d3{bottom:653.548500px;}
.y7{bottom:666.771000px;}
.y6a{bottom:667.961550px;}
.y12f{bottom:668.607300px;}
.y9b{bottom:669.748650px;}
.yc2{bottom:670.512750px;}
.y160{bottom:671.276850px;}
.y183{bottom:671.278050px;}
.y1d2{bottom:672.298500px;}
.yf1{bottom:681.512700px;}
.y69{bottom:686.711550px;}
.y12e{bottom:687.357300px;}
.y9a{bottom:688.498650px;}
.y36{bottom:688.665300px;}
.ye8{bottom:688.885650px;}
.yc1{bottom:689.262750px;}
.y15f{bottom:690.026850px;}
.y1d1{bottom:691.048500px;}
.yf0{bottom:700.262700px;}
.y68{bottom:705.461550px;}
.y12d{bottom:706.107300px;}
.y35{bottom:706.665300px;}
.y99{bottom:707.248650px;}
.ye7{bottom:707.635650px;}
.yc0{bottom:708.012750px;}
.y15e{bottom:708.776850px;}
.y1d0{bottom:709.798500px;}
.yef{bottom:719.012700px;}
.y67{bottom:724.211550px;}
.y34{bottom:724.665300px;}
.y12c{bottom:724.857300px;}
.y98{bottom:725.998650px;}
.y6{bottom:726.298500px;}
.ye6{bottom:726.385650px;}
.ybf{bottom:726.762750px;}
.y15d{bottom:727.526850px;}
.y1cf{bottom:728.548500px;}
.yee{bottom:737.762700px;}
.y33{bottom:742.665300px;}
.y66{bottom:742.961550px;}
.y12b{bottom:743.607300px;}
.y97{bottom:744.748650px;}
.ye5{bottom:745.135650px;}
.ybe{bottom:745.512750px;}
.y15c{bottom:746.276850px;}
.y1ce{bottom:747.298500px;}
.y3{bottom:752.599495px;}
.yed{bottom:756.512700px;}
.y32{bottom:760.665300px;}
.y65{bottom:761.711550px;}
.y12a{bottom:762.357300px;}
.y96{bottom:763.498650px;}
.ye4{bottom:763.886700px;}
.ybd{bottom:764.262750px;}
.y15b{bottom:765.026850px;}
.y1cd{bottom:766.048500px;}
.yec{bottom:775.262700px;}
.y31{bottom:778.665300px;}
.y64{bottom:780.461550px;}
.y129{bottom:781.107300px;}
.y95{bottom:782.248500px;}
.ybc{bottom:783.012750px;}
.y15a{bottom:783.776850px;}
.y1cc{bottom:784.798500px;}
.yeb{bottom:794.012700px;}
.y30{bottom:796.665300px;}
.y63{bottom:799.211550px;}
.y128{bottom:799.857300px;}
.ye3{bottom:800.621400px;}
.y94{bottom:800.998500px;}
.ybb{bottom:801.762750px;}
.y159{bottom:802.526850px;}
.y1cb{bottom:803.548500px;}
.y2f{bottom:814.665300px;}
.y62{bottom:817.961550px;}
.y127{bottom:818.607300px;}
.ye2{bottom:819.371400px;}
.y93{bottom:819.748500px;}
.yba{bottom:820.512750px;}
.y158{bottom:821.276850px;}
.y1ca{bottom:822.298500px;}
.y2e{bottom:832.665300px;}
.y61{bottom:836.711550px;}
.y126{bottom:837.357300px;}
.ye1{bottom:838.121400px;}
.y92{bottom:838.498500px;}
.y182{bottom:839.262750px;}
.yb9{bottom:839.263950px;}
.y157{bottom:840.026850px;}
.y1c9{bottom:841.048500px;}
.y11b{bottom:843.797700px;}
.y60{bottom:855.461550px;}
.y125{bottom:856.107300px;}
.ye0{bottom:856.871400px;}
.y91{bottom:857.248500px;}
.y181{bottom:858.012750px;}
.y156{bottom:858.776850px;}
.y1c8{bottom:859.798500px;}
.y11c{bottom:860.672700px;}
.y11a{bottom:862.967700px;}
.y5f{bottom:874.211550px;}
.y124{bottom:874.857300px;}
.ydf{bottom:875.621400px;}
.y90{bottom:875.998500px;}
.y180{bottom:876.762750px;}
.y155{bottom:877.526850px;}
.y1c7{bottom:878.548500px;}
.y2{bottom:879.369000px;}
.y2d{bottom:884.681100px;}
.y119{bottom:885.079050px;}
.y5e{bottom:892.961550px;}
.y123{bottom:893.607300px;}
.yde{bottom:894.371400px;}
.y8f{bottom:894.748500px;}
.y17f{bottom:895.512750px;}
.y154{bottom:896.278050px;}
.y1c6{bottom:897.298500px;}
.y2c{bottom:908.133000px;}
.y118{bottom:909.485550px;}
.y5d{bottom:911.711550px;}
.y122{bottom:912.357300px;}
.ydd{bottom:913.121400px;}
.y8e{bottom:913.498500px;}
.y17e{bottom:914.262750px;}
.y1c5{bottom:916.048500px;}
.y2b{bottom:926.784900px;}
.y5c{bottom:930.461550px;}
.y121{bottom:931.107300px;}
.ydc{bottom:931.871400px;}
.y8d{bottom:932.248500px;}
.y153{bottom:933.012750px;}
.y198{bottom:933.013950px;}
.y117{bottom:933.891900px;}
.y1c4{bottom:934.798500px;}
.y2a{bottom:945.436950px;}
.y5b{bottom:949.211550px;}
.y120{bottom:949.857300px;}
.ydb{bottom:950.621400px;}
.y8c{bottom:950.998500px;}
.y152{bottom:951.762750px;}
.y1c3{bottom:953.548500px;}
.y29{bottom:959.288850px;}
.y116{bottom:960.593250px;}
.y1{bottom:966.726000px;}
.y5a{bottom:967.961550px;}
.y11f{bottom:968.607300px;}
.yda{bottom:969.371400px;}
.y8b{bottom:969.748500px;}
.y151{bottom:970.512750px;}
.y17d{bottom:970.513950px;}
.y1c2{bottom:972.298500px;}
.y115{bottom:984.999600px;}
.y59{bottom:986.712750px;}
.y11e{bottom:987.357300px;}
.yd9{bottom:988.122600px;}
.y8a{bottom:988.498500px;}
.y150{bottom:989.262750px;}
.y1c1{bottom:991.048500px;}
.y28{bottom:997.896750px;}
.y11d{bottom:1006.107300px;}
.y113{bottom:1007.110950px;}
.y89{bottom:1007.248500px;}
.y14f{bottom:1008.012750px;}
.y58{bottom:1008.013950px;}
.y1c0{bottom:1009.798500px;}
.y114{bottom:1023.985950px;}
.yd8{bottom:1024.857300px;}
.y88{bottom:1025.998500px;}
.y112{bottom:1026.280950px;}
.y14e{bottom:1026.762750px;}
.y1bf{bottom:1028.548500px;}
.y27{bottom:1030.296750px;}
.yd7{bottom:1043.607300px;}
.y57{bottom:1044.748500px;}
.y14d{bottom:1045.512750px;}
.y1be{bottom:1047.298500px;}
.y111{bottom:1048.392150px;}
.yd6{bottom:1062.357300px;}
.y56{bottom:1063.498500px;}
.y14c{bottom:1064.262750px;}
.y110{bottom:1065.267150px;}
.y1bd{bottom:1066.048500px;}
.y10f{bottom:1070.503650px;}
.y26{bottom:1071.200700px;}
.yd5{bottom:1081.107300px;}
.y55{bottom:1082.248500px;}
.y14b{bottom:1083.013950px;}
.y1bc{bottom:1084.798500px;}
.y10e{bottom:1087.378650px;}
.yd4{bottom:1099.857300px;}
.y54{bottom:1100.998500px;}
.y1bb{bottom:1103.548500px;}
.yd3{bottom:1118.607300px;}
.y53{bottom:1119.748500px;}
.y10d{bottom:1120.498500px;}
.y1ba{bottom:1122.298500px;}
.yd2{bottom:1137.358500px;}
.y52{bottom:1138.498500px;}
.y1b9{bottom:1141.048500px;}
.y25{bottom:1170.367200px;}
.y24{bottom:1184.767200px;}
.y23{bottom:1199.167200px;}
.y51{bottom:1209.189000px;}
.he{height:21.547680px;}
.h18{height:26.269980px;}
.h7{height:32.130000px;}
.h15{height:36.816000px;}
.h9{height:36.960000px;}
.ha{height:38.263815px;}
.h14{height:40.663728px;}
.h16{height:41.202000px;}
.h17{height:41.418000px;}
.h6{height:45.900000px;}
.h11{height:46.020000px;}
.hf{height:46.200000px;}
.h3{height:48.195000px;}
.hb{height:49.500000px;}
.h12{height:50.605839px;}
.h13{height:50.829660px;}
.h10{height:54.000000px;}
.h2{height:55.080000px;}
.hd{height:60.282000px;}
.h19{height:67.887000px;}
.h5{height:78.030000px;}
.hc{height:81.000000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:114.803100px;}
.xa{left:127.558950px;}
.x19{left:136.062900px;}
.xb{left:140.314950px;}
.xd{left:148.818900px;}
.xe{left:172.840200px;}
.x4{left:203.484001px;}
.x1d{left:244.169250px;}
.xf{left:306.340200px;}
.x5{left:356.244000px;}
.xc{left:439.151850px;}
.x7{left:447.274650px;}
.x8{left:450.118500px;}
.x3{left:454.959000px;}
.x11{left:483.707100px;}
.x1e{left:487.297050px;}
.x12{left:496.801950px;}
.x17{left:520.319250px;}
.x18{left:527.501100px;}
.x10{left:529.509900px;}
.x14{left:568.038900px;}
.x13{left:573.276750px;}
.x6{left:620.407950px;}
.x15{left:659.369550px;}
.x16{left:660.969150px;}
.x1a{left:688.402200px;}
.x1b{left:691.246050px;}
.x1c{left:695.326050px;}
@media print{
.v2{vertical-align:-25.600000pt;}
.v5{vertical-align:-21.333333pt;}
.v3{vertical-align:-17.067200pt;}
.v7{vertical-align:-8.160000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:17.066667pt;}
.v8{vertical-align:20.344000pt;}
.v4{vertical-align:21.333333pt;}
.v1{vertical-align:25.600000pt;}
.ls6{letter-spacing:-3.840000pt;}
.ls1a{letter-spacing:-2.613333pt;}
.ls7{letter-spacing:-2.560000pt;}
.ls17{letter-spacing:-2.506667pt;}
.ls5{letter-spacing:-2.346667pt;}
.ls1d{letter-spacing:-2.293333pt;}
.ls8{letter-spacing:-2.133333pt;}
.ls9{letter-spacing:-1.920000pt;}
.lsa{letter-spacing:-1.799319pt;}
.ls4{letter-spacing:-1.766872pt;}
.ls3{letter-spacing:-1.706667pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000213pt;}
.ls15{letter-spacing:0.000277pt;}
.ls13{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.099477pt;}
.lsb{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.170667pt;}
.ls2{letter-spacing:0.213333pt;}
.ls14{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.426667pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.533333pt;}
.ls18{letter-spacing:0.693333pt;}
.ls1f{letter-spacing:0.746667pt;}
.ls1e{letter-spacing:0.853333pt;}
.ls16{letter-spacing:1.120000pt;}
.lsc{letter-spacing:30.019733pt;}
.lsf{letter-spacing:30.119467pt;}
.wse0{word-spacing:-53.333333pt;}
.ws6{word-spacing:-23.744000pt;}
.ws1f{word-spacing:-22.251575pt;}
.ws1{word-spacing:-21.178667pt;}
.ws5{word-spacing:-19.253333pt;}
.wse3{word-spacing:-15.402667pt;}
.ws4{word-spacing:-14.506667pt;}
.ws2{word-spacing:-14.439744pt;}
.wsb5{word-spacing:-13.600000pt;}
.wse1{word-spacing:-13.333333pt;}
.wse2{word-spacing:-13.226667pt;}
.wsc2{word-spacing:-13.173333pt;}
.wsd3{word-spacing:-13.013333pt;}
.wsd4{word-spacing:-12.960000pt;}
.wsd1{word-spacing:-12.800000pt;}
.wsce{word-spacing:-12.746667pt;}
.wsc4{word-spacing:-12.693333pt;}
.wsc3{word-spacing:-12.640000pt;}
.wsb7{word-spacing:-12.586667pt;}
.ws9b{word-spacing:-12.533333pt;}
.ws20{word-spacing:-12.480000pt;}
.ws7e{word-spacing:-11.232000pt;}
.wsd2{word-spacing:-10.186667pt;}
.wsc1{word-spacing:-9.866667pt;}
.ws3{word-spacing:-9.452373pt;}
.ws5e{word-spacing:-7.275840pt;}
.ws71{word-spacing:-5.820672pt;}
.wsd6{word-spacing:-3.520000pt;}
.ws98{word-spacing:-2.880000pt;}
.wscf{word-spacing:-2.613333pt;}
.ws68{word-spacing:-2.506667pt;}
.ws2f{word-spacing:-2.453333pt;}
.wsea{word-spacing:-2.400000pt;}
.ws4d{word-spacing:-2.346667pt;}
.ws31{word-spacing:-2.293333pt;}
.ws67{word-spacing:-2.186667pt;}
.ws8d{word-spacing:-2.133333pt;}
.ws45{word-spacing:-2.080000pt;}
.ws3a{word-spacing:-2.026667pt;}
.ws6e{word-spacing:-1.973333pt;}
.ws28{word-spacing:-1.920000pt;}
.ws72{word-spacing:-1.866667pt;}
.wsa9{word-spacing:-1.813333pt;}
.ws12{word-spacing:-1.760000pt;}
.ws53{word-spacing:-1.706667pt;}
.ws55{word-spacing:-1.653333pt;}
.wsab{word-spacing:-1.600000pt;}
.ws18{word-spacing:-1.546667pt;}
.ws21{word-spacing:-1.493333pt;}
.ws26{word-spacing:-1.440000pt;}
.ws99{word-spacing:-1.386667pt;}
.wse9{word-spacing:-1.333333pt;}
.wsac{word-spacing:-1.280000pt;}
.ws13{word-spacing:-1.226667pt;}
.ws11{word-spacing:-1.173333pt;}
.wsaf{word-spacing:-1.120000pt;}
.ws7b{word-spacing:-1.066667pt;}
.ws7a{word-spacing:-1.013333pt;}
.ws4c{word-spacing:-0.960000pt;}
.ws43{word-spacing:-0.906667pt;}
.ws46{word-spacing:-0.853333pt;}
.ws39{word-spacing:-0.800000pt;}
.ws64{word-spacing:-0.746667pt;}
.wsae{word-spacing:-0.693333pt;}
.ws2a{word-spacing:-0.640000pt;}
.wsa5{word-spacing:-0.586667pt;}
.ws79{word-spacing:-0.533333pt;}
.ws3c{word-spacing:-0.480000pt;}
.ws3f{word-spacing:-0.426667pt;}
.ws44{word-spacing:-0.373333pt;}
.ws2e{word-spacing:-0.320000pt;}
.ws75{word-spacing:-0.266667pt;}
.ws90{word-spacing:-0.213333pt;}
.ws8f{word-spacing:-0.160000pt;}
.wsa7{word-spacing:-0.106667pt;}
.ws9c{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws49{word-spacing:0.053333pt;}
.ws1c{word-spacing:0.106667pt;}
.wse{word-spacing:0.160000pt;}
.wsa8{word-spacing:0.213333pt;}
.wsd{word-spacing:0.266667pt;}
.ws61{word-spacing:0.320000pt;}
.ws47{word-spacing:0.426667pt;}
.ws4b{word-spacing:0.480000pt;}
.ws3e{word-spacing:0.533333pt;}
.ws9a{word-spacing:0.554667pt;}
.ws8a{word-spacing:0.586667pt;}
.ws65{word-spacing:0.640000pt;}
.ws23{word-spacing:0.693333pt;}
.ws51{word-spacing:0.746667pt;}
.ws29{word-spacing:0.800000pt;}
.ws97{word-spacing:0.853333pt;}
.ws36{word-spacing:0.906667pt;}
.ws27{word-spacing:1.013333pt;}
.ws4f{word-spacing:1.066667pt;}
.ws5f{word-spacing:1.120000pt;}
.ws8c{word-spacing:1.173333pt;}
.ws59{word-spacing:1.226667pt;}
.ws54{word-spacing:1.280000pt;}
.wsc{word-spacing:1.333333pt;}
.ws3d{word-spacing:1.386667pt;}
.ws6a{word-spacing:1.440000pt;}
.ws4a{word-spacing:1.493333pt;}
.ws8e{word-spacing:1.546667pt;}
.ws76{word-spacing:1.600000pt;}
.ws89{word-spacing:1.653333pt;}
.ws7{word-spacing:1.706667pt;}
.ws74{word-spacing:1.760000pt;}
.wsb3{word-spacing:1.799319pt;}
.ws17{word-spacing:1.813333pt;}
.ws5c{word-spacing:1.866667pt;}
.wsbd{word-spacing:1.920000pt;}
.ws1b{word-spacing:1.973333pt;}
.wsb1{word-spacing:2.026667pt;}
.wsf{word-spacing:2.080000pt;}
.ws9{word-spacing:2.133333pt;}
.ws9e{word-spacing:2.240000pt;}
.ws52{word-spacing:2.293333pt;}
.ws14{word-spacing:2.346667pt;}
.wsa4{word-spacing:2.400000pt;}
.ws38{word-spacing:2.453333pt;}
.ws57{word-spacing:2.506667pt;}
.ws8{word-spacing:2.560000pt;}
.ws1a{word-spacing:2.613333pt;}
.ws1d{word-spacing:2.666667pt;}
.wsbe{word-spacing:2.773333pt;}
.ws25{word-spacing:2.880000pt;}
.ws6b{word-spacing:2.933333pt;}
.ws4e{word-spacing:2.986667pt;}
.wsba{word-spacing:3.040000pt;}
.wsa6{word-spacing:3.093333pt;}
.ws22{word-spacing:3.146667pt;}
.ws73{word-spacing:3.200000pt;}
.wseb{word-spacing:3.253333pt;}
.ws34{word-spacing:3.306667pt;}
.ws88{word-spacing:3.360000pt;}
.ws86{word-spacing:3.413333pt;}
.ws3b{word-spacing:3.466667pt;}
.ws42{word-spacing:3.520000pt;}
.wsa3{word-spacing:3.573333pt;}
.wsbc{word-spacing:3.626667pt;}
.ws82{word-spacing:3.680000pt;}
.ws2b{word-spacing:3.733333pt;}
.wsaa{word-spacing:3.786667pt;}
.ws69{word-spacing:3.840000pt;}
.wsa1{word-spacing:3.893333pt;}
.ws8b{word-spacing:3.946667pt;}
.wsb2{word-spacing:4.010667pt;}
.ws7d{word-spacing:4.053333pt;}
.ws94{word-spacing:4.160000pt;}
.ws5b{word-spacing:4.213333pt;}
.ws30{word-spacing:4.266667pt;}
.ws16{word-spacing:4.320000pt;}
.ws41{word-spacing:4.426667pt;}
.ws60{word-spacing:4.533333pt;}
.ws62{word-spacing:4.586667pt;}
.ws5d{word-spacing:4.640000pt;}
.ws2d{word-spacing:4.693333pt;}
.ws33{word-spacing:4.746667pt;}
.ws87{word-spacing:4.800000pt;}
.ws35{word-spacing:4.853333pt;}
.ws37{word-spacing:4.960000pt;}
.ws92{word-spacing:5.013333pt;}
.ws7c{word-spacing:5.066667pt;}
.ws58{word-spacing:5.173333pt;}
.wsad{word-spacing:5.226667pt;}
.ws83{word-spacing:5.280000pt;}
.ws93{word-spacing:5.386667pt;}
.ws32{word-spacing:5.440000pt;}
.ws63{word-spacing:5.493333pt;}
.ws10{word-spacing:5.546667pt;}
.ws85{word-spacing:5.600000pt;}
.ws6c{word-spacing:5.653333pt;}
.ws24{word-spacing:5.706667pt;}
.wsbb{word-spacing:5.760000pt;}
.wsd7{word-spacing:5.813333pt;}
.ws15{word-spacing:5.866667pt;}
.wsa2{word-spacing:5.920000pt;}
.ws2c{word-spacing:5.973333pt;}
.ws70{word-spacing:6.101333pt;}
.ws84{word-spacing:6.240000pt;}
.ws9f{word-spacing:6.346667pt;}
.wsb9{word-spacing:6.400000pt;}
.ws91{word-spacing:6.506667pt;}
.ws56{word-spacing:6.560000pt;}
.ws6f{word-spacing:6.613333pt;}
.ws78{word-spacing:6.666667pt;}
.ws66{word-spacing:6.720000pt;}
.ws40{word-spacing:6.773333pt;}
.ws5a{word-spacing:6.880000pt;}
.ws77{word-spacing:6.933333pt;}
.ws95{word-spacing:6.986667pt;}
.ws6d{word-spacing:7.040000pt;}
.ws1e{word-spacing:7.093333pt;}
.ws50{word-spacing:7.146667pt;}
.wsb4{word-spacing:7.200000pt;}
.wsc9{word-spacing:7.253333pt;}
.wsd5{word-spacing:7.360000pt;}
.wsa0{word-spacing:7.413333pt;}
.wsd0{word-spacing:7.466667pt;}
.ws19{word-spacing:7.520000pt;}
.wsa{word-spacing:7.573333pt;}
.wsb{word-spacing:7.733333pt;}
.wsec{word-spacing:7.946667pt;}
.wsda{word-spacing:8.160000pt;}
.wsc8{word-spacing:8.266667pt;}
.wscb{word-spacing:8.320000pt;}
.ws9d{word-spacing:8.533333pt;}
.wscd{word-spacing:8.640000pt;}
.wsc6{word-spacing:8.693333pt;}
.wse7{word-spacing:8.800000pt;}
.wsb8{word-spacing:8.853333pt;}
.wsdf{word-spacing:9.066667pt;}
.ws48{word-spacing:9.120000pt;}
.wsc7{word-spacing:9.226667pt;}
.wse5{word-spacing:9.386667pt;}
.wsc0{word-spacing:9.440000pt;}
.wsb0{word-spacing:9.546667pt;}
.wsde{word-spacing:10.293333pt;}
.ws96{word-spacing:10.453333pt;}
.wsca{word-spacing:10.560000pt;}
.wsc5{word-spacing:10.720000pt;}
.wsb6{word-spacing:11.093333pt;}
.wsdb{word-spacing:11.146667pt;}
.wsdc{word-spacing:11.200000pt;}
.wsdd{word-spacing:12.213333pt;}
.wsbf{word-spacing:12.373333pt;}
.wsd9{word-spacing:13.333333pt;}
.wscc{word-spacing:14.186667pt;}
.wsd8{word-spacing:15.306667pt;}
.wse8{word-spacing:16.320000pt;}
.wse6{word-spacing:17.920000pt;}
.wse4{word-spacing:20.533333pt;}
.ws81{word-spacing:211.818667pt;}
.ws80{word-spacing:313.674667pt;}
.ws7f{word-spacing:319.002667pt;}
._d{margin-left:-2312.237333pt;}
._1c{margin-left:-23.573333pt;}
._1e{margin-left:-21.546667pt;}
._b{margin-left:-20.640000pt;}
._f{margin-left:-12.480000pt;}
._18{margin-left:-11.413333pt;}
._e{margin-left:-10.154667pt;}
._1f{margin-left:-7.256000pt;}
._3{margin-left:-5.979733pt;}
._8{margin-left:-5.013333pt;}
._4{margin-left:-4.000000pt;}
._1{margin-left:-2.773333pt;}
._0{margin-left:-1.280000pt;}
._2{width:1.706667pt;}
._5{width:3.306667pt;}
._6{width:5.066667pt;}
._7{width:6.139733pt;}
._1b{width:7.041600pt;}
._19{width:8.277333pt;}
._9{width:11.466133pt;}
._a{width:12.373333pt;}
._1d{width:18.915200pt;}
._1a{width:21.440000pt;}
._17{width:53.034667pt;}
._10{width:65.706667pt;}
._15{width:492.254400pt;}
._11{width:528.360000pt;}
._20{width:619.294400pt;}
._14{width:628.371733pt;}
._12{width:685.795733pt;}
._16{width:830.974400pt;}
._13{width:902.446400pt;}
._c{width:1078.127467pt;}
.fsa{font-size:24.874667pt;}
.fsc{font-size:31.093333pt;}
.fs9{font-size:37.312000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:44.171793pt;}
.fsd{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fsb{font-size:59.977290pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.yd1{bottom:90.519733pt;}
.y87{bottom:94.422800pt;}
.yb8{bottom:96.011333pt;}
.y17c{bottom:98.049200pt;}
.y197{bottom:98.267733pt;}
.yd0{bottom:103.853067pt;}
.y14a{bottom:107.485467pt;}
.y10c{bottom:107.826933pt;}
.y1e6{bottom:108.202000pt;}
.y86{bottom:111.089467pt;}
.y196{bottom:111.601067pt;}
.y1b8{bottom:111.998667pt;}
.yb7{bottom:112.678000pt;}
.y17b{bottom:114.715867pt;}
.y50{bottom:117.407333pt;}
.y149{bottom:120.818800pt;}
.y1e5{bottom:121.002000pt;}
.y22{bottom:123.790666pt;}
.y10b{bottom:124.493600pt;}
.y85{bottom:127.756133pt;}
.yea{bottom:127.900267pt;}
.y1b7{bottom:128.665333pt;}
.yb6{bottom:129.344667pt;}
.y17a{bottom:131.382533pt;}
.y4f{bottom:134.074000pt;}
.y148{bottom:134.152133pt;}
.y10a{bottom:141.160267pt;}
.y1e4{bottom:142.336267pt;}
.ye9{bottom:143.900267pt;}
.y84{bottom:144.422800pt;}
.y1b6{bottom:145.332000pt;}
.yb5{bottom:146.011333pt;}
.y147{bottom:147.485467pt;}
.y179{bottom:148.049200pt;}
.y4e{bottom:150.740667pt;}
.y1e3{bottom:155.136267pt;}
.y109{bottom:157.828000pt;}
.y146{bottom:160.818800pt;}
.y83{bottom:161.089467pt;}
.y1b5{bottom:161.998667pt;}
.yb4{bottom:162.678000pt;}
.y195{bottom:163.357200pt;}
.y178{bottom:164.715867pt;}
.y4d{bottom:167.407333pt;}
.y1e2{bottom:167.936267pt;}
.y19{bottom:175.052000pt;}
.y82{bottom:177.756133pt;}
.y1b4{bottom:178.665333pt;}
.yb3{bottom:179.344667pt;}
.y194{bottom:180.023867pt;}
.y1e1{bottom:180.736267pt;}
.y177{bottom:181.382533pt;}
.y4c{bottom:184.074000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y108{bottom:190.480933pt;}
.ycf{bottom:194.422800pt;}
.y81{bottom:194.423867pt;}
.y1b3{bottom:195.332000pt;}
.yb2{bottom:196.011333pt;}
.y193{bottom:196.690533pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y176{bottom:198.049200pt;}
.y4b{bottom:200.740667pt;}
.y1e0{bottom:206.336267pt;}
.y107{bottom:207.147600pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yce{bottom:211.089467pt;}
.y145{bottom:211.663467pt;}
.y1b2{bottom:211.998667pt;}
.yb1{bottom:212.678000pt;}
.y192{bottom:213.357200pt;}
.y175{bottom:214.715867pt;}
.y4a{bottom:217.407333pt;}
.y106{bottom:223.814267pt;}
.y80{bottom:227.076933pt;}
.ycd{bottom:227.756133pt;}
.y144{bottom:228.330133pt;}
.y1b1{bottom:228.665333pt;}
.yb0{bottom:229.344667pt;}
.y191{bottom:230.023867pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y174{bottom:231.382533pt;}
.y1df{bottom:231.936267pt;}
.y49{bottom:234.074000pt;}
.y105{bottom:240.480933pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y7f{bottom:243.743600pt;}
.ycc{bottom:244.422800pt;}
.y1de{bottom:244.736267pt;}
.y143{bottom:244.996800pt;}
.y1b0{bottom:245.332000pt;}
.yaf{bottom:246.011333pt;}
.y190{bottom:246.690533pt;}
.y19f{bottom:248.049200pt;}
.y173{bottom:248.050133pt;}
.y48{bottom:250.740667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y104{bottom:257.147600pt;}
.y1dd{bottom:257.536267pt;}
.y7e{bottom:260.410267pt;}
.ycb{bottom:261.090533pt;}
.y142{bottom:261.663467pt;}
.y1af{bottom:261.998667pt;}
.yae{bottom:262.678000pt;}
.y18f{bottom:263.357200pt;}
.y19e{bottom:264.715867pt;}
.y47{bottom:267.407333pt;}
.y103{bottom:273.814267pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y7d{bottom:277.076933pt;}
.y141{bottom:278.330133pt;}
.y1ae{bottom:278.665333pt;}
.yad{bottom:279.344667pt;}
.y18e{bottom:280.023867pt;}
.yca{bottom:280.025067pt;}
.y172{bottom:280.703200pt;}
.y19d{bottom:281.382533pt;}
.y46{bottom:284.074000pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y102{bottom:290.480933pt;}
.y7c{bottom:293.743600pt;}
.y140{bottom:294.996800pt;}
.y1ad{bottom:295.332000pt;}
.yac{bottom:296.011333pt;}
.y18d{bottom:296.690533pt;}
.y171{bottom:297.369867pt;}
.y19c{bottom:298.049200pt;}
.y1ac{bottom:300.665333pt;}
.y45{bottom:300.740667pt;}
.y101{bottom:307.147600pt;}
.y10{bottom:309.452000pt;}
.y7b{bottom:310.410267pt;}
.y13f{bottom:311.663467pt;}
.y1ab{bottom:311.998667pt;}
.yab{bottom:312.678000pt;}
.y18c{bottom:313.357200pt;}
.y170{bottom:314.036533pt;}
.y19b{bottom:314.715867pt;}
.y44{bottom:317.407333pt;}
.y100{bottom:323.814267pt;}
.y7a{bottom:327.076933pt;}
.y13e{bottom:328.330133pt;}
.y1aa{bottom:328.665333pt;}
.yaa{bottom:329.344667pt;}
.y18b{bottom:330.023867pt;}
.y16f{bottom:330.703200pt;}
.y19a{bottom:331.383467pt;}
.y43{bottom:334.074000pt;}
.yff{bottom:340.482000pt;}
.y79{bottom:343.743600pt;}
.yf{bottom:343.809333pt;}
.y13d{bottom:344.996800pt;}
.y1a9{bottom:345.332133pt;}
.ya9{bottom:346.011333pt;}
.y18a{bottom:346.690533pt;}
.y16e{bottom:347.369867pt;}
.y42{bottom:350.740667pt;}
.y78{bottom:360.410267pt;}
.y13c{bottom:361.663467pt;}
.y1a8{bottom:361.998800pt;}
.ya8{bottom:362.678000pt;}
.ye{bottom:362.706666pt;}
.y189{bottom:363.357200pt;}
.y16d{bottom:364.036533pt;}
.y41{bottom:367.407333pt;}
.yfe{bottom:373.135067pt;}
.y77{bottom:377.076933pt;}
.y13b{bottom:378.330133pt;}
.y1a7{bottom:378.665467pt;}
.ya7{bottom:379.344667pt;}
.y188{bottom:380.023867pt;}
.y16c{bottom:380.703200pt;}
.y199{bottom:380.704267pt;}
.y40{bottom:384.074000pt;}
.yfd{bottom:389.801733pt;}
.y76{bottom:393.743600pt;}
.y13a{bottom:394.997867pt;}
.y1a6{bottom:395.332133pt;}
.ya6{bottom:396.011333pt;}
.y187{bottom:396.690533pt;}
.y16b{bottom:397.369867pt;}
.y3f{bottom:400.740667pt;}
.yfc{bottom:406.468400pt;}
.y75{bottom:410.410267pt;}
.y1a5{bottom:411.998800pt;}
.ya5{bottom:412.678000pt;}
.y186{bottom:413.357200pt;}
.y16a{bottom:414.036533pt;}
.y3e{bottom:417.407333pt;}
.yfb{bottom:423.135067pt;}
.y74{bottom:427.076933pt;}
.y139{bottom:427.650933pt;}
.y1a4{bottom:428.665467pt;}
.ya4{bottom:429.344667pt;}
.y185{bottom:430.023867pt;}
.y169{bottom:430.704267pt;}
.y1dc{bottom:430.932000pt;}
.yd{bottom:430.990669pt;}
.y3d{bottom:434.074000pt;}
.yfa{bottom:439.801733pt;}
.y73{bottom:443.743600pt;}
.y138{bottom:444.317600pt;}
.y1a3{bottom:445.332133pt;}
.ya3{bottom:446.011333pt;}
.y184{bottom:446.690533pt;}
.yc{bottom:446.990669pt;}
.y1db{bottom:447.598667pt;}
.y3c{bottom:450.740667pt;}
.yf9{bottom:456.468400pt;}
.y72{bottom:460.410267pt;}
.y137{bottom:460.984267pt;}
.y1a2{bottom:461.998800pt;}
.ya2{bottom:462.678000pt;}
.yb{bottom:462.990669pt;}
.y168{bottom:463.357200pt;}
.y1da{bottom:464.265333pt;}
.y3b{bottom:467.407333pt;}
.yf8{bottom:473.135067pt;}
.y71{bottom:477.076933pt;}
.y136{bottom:477.650933pt;}
.y1a1{bottom:478.665467pt;}
.ya{bottom:478.990666pt;}
.yc9{bottom:479.344667pt;}
.ya1{bottom:479.345733pt;}
.y167{bottom:480.023867pt;}
.y1d9{bottom:480.932000pt;}
.y3a{bottom:484.074000pt;}
.yf7{bottom:489.801733pt;}
.y70{bottom:493.743600pt;}
.y135{bottom:494.317600pt;}
.y9{bottom:494.990666pt;}
.y1a0{bottom:495.332133pt;}
.yc8{bottom:496.011333pt;}
.y166{bottom:496.690533pt;}
.y1d8{bottom:497.598667pt;}
.y39{bottom:500.741600pt;}
.yf6{bottom:506.468400pt;}
.y6f{bottom:510.410267pt;}
.y134{bottom:510.984267pt;}
.ya0{bottom:511.998800pt;}
.yc7{bottom:512.678000pt;}
.y165{bottom:513.357200pt;}
.y1d7{bottom:514.265333pt;}
.yf5{bottom:523.135067pt;}
.y6e{bottom:527.076933pt;}
.y133{bottom:527.650933pt;}
.y9f{bottom:528.665467pt;}
.yc6{bottom:529.344667pt;}
.y164{bottom:530.023867pt;}
.y1d6{bottom:530.932000pt;}
.yf4{bottom:539.801733pt;}
.y6d{bottom:543.743600pt;}
.y132{bottom:544.317600pt;}
.y9e{bottom:545.332133pt;}
.yc5{bottom:546.011333pt;}
.y163{bottom:546.690533pt;}
.y1d5{bottom:547.598667pt;}
.y38{bottom:549.910667pt;}
.yf3{bottom:556.468400pt;}
.y6c{bottom:560.410267pt;}
.y131{bottom:560.984267pt;}
.y9d{bottom:561.998800pt;}
.yc4{bottom:562.678000pt;}
.y162{bottom:563.357200pt;}
.y1d4{bottom:564.265333pt;}
.y37{bottom:565.910667pt;}
.yf2{bottom:573.136133pt;}
.y8{bottom:573.786667pt;}
.y6b{bottom:577.076933pt;}
.y130{bottom:577.650933pt;}
.y9c{bottom:578.665467pt;}
.yc3{bottom:579.344667pt;}
.y161{bottom:580.023867pt;}
.y1d3{bottom:580.932000pt;}
.y7{bottom:592.685334pt;}
.y6a{bottom:593.743600pt;}
.y12f{bottom:594.317600pt;}
.y9b{bottom:595.332133pt;}
.yc2{bottom:596.011333pt;}
.y160{bottom:596.690533pt;}
.y183{bottom:596.691600pt;}
.y1d2{bottom:597.598667pt;}
.yf1{bottom:605.789067pt;}
.y69{bottom:610.410267pt;}
.y12e{bottom:610.984267pt;}
.y9a{bottom:611.998800pt;}
.y36{bottom:612.146933pt;}
.ye8{bottom:612.342800pt;}
.yc1{bottom:612.678000pt;}
.y15f{bottom:613.357200pt;}
.y1d1{bottom:614.265333pt;}
.yf0{bottom:622.455733pt;}
.y68{bottom:627.076933pt;}
.y12d{bottom:627.650933pt;}
.y35{bottom:628.146933pt;}
.y99{bottom:628.665467pt;}
.ye7{bottom:629.009467pt;}
.yc0{bottom:629.344667pt;}
.y15e{bottom:630.023867pt;}
.y1d0{bottom:630.932000pt;}
.yef{bottom:639.122400pt;}
.y67{bottom:643.743600pt;}
.y34{bottom:644.146933pt;}
.y12c{bottom:644.317600pt;}
.y98{bottom:645.332133pt;}
.y6{bottom:645.598667pt;}
.ye6{bottom:645.676133pt;}
.ybf{bottom:646.011333pt;}
.y15d{bottom:646.690533pt;}
.y1cf{bottom:647.598667pt;}
.yee{bottom:655.789067pt;}
.y33{bottom:660.146933pt;}
.y66{bottom:660.410267pt;}
.y12b{bottom:660.984267pt;}
.y97{bottom:661.998800pt;}
.ye5{bottom:662.342800pt;}
.ybe{bottom:662.678000pt;}
.y15c{bottom:663.357200pt;}
.y1ce{bottom:664.265333pt;}
.y3{bottom:668.977329pt;}
.yed{bottom:672.455733pt;}
.y32{bottom:676.146933pt;}
.y65{bottom:677.076933pt;}
.y12a{bottom:677.650933pt;}
.y96{bottom:678.665467pt;}
.ye4{bottom:679.010400pt;}
.ybd{bottom:679.344667pt;}
.y15b{bottom:680.023867pt;}
.y1cd{bottom:680.932000pt;}
.yec{bottom:689.122400pt;}
.y31{bottom:692.146933pt;}
.y64{bottom:693.743600pt;}
.y129{bottom:694.317600pt;}
.y95{bottom:695.332000pt;}
.ybc{bottom:696.011333pt;}
.y15a{bottom:696.690533pt;}
.y1cc{bottom:697.598667pt;}
.yeb{bottom:705.789067pt;}
.y30{bottom:708.146933pt;}
.y63{bottom:710.410267pt;}
.y128{bottom:710.984267pt;}
.ye3{bottom:711.663467pt;}
.y94{bottom:711.998667pt;}
.ybb{bottom:712.678000pt;}
.y159{bottom:713.357200pt;}
.y1cb{bottom:714.265333pt;}
.y2f{bottom:724.146933pt;}
.y62{bottom:727.076933pt;}
.y127{bottom:727.650933pt;}
.ye2{bottom:728.330133pt;}
.y93{bottom:728.665333pt;}
.yba{bottom:729.344667pt;}
.y158{bottom:730.023867pt;}
.y1ca{bottom:730.932000pt;}
.y2e{bottom:740.146933pt;}
.y61{bottom:743.743600pt;}
.y126{bottom:744.317600pt;}
.ye1{bottom:744.996800pt;}
.y92{bottom:745.332000pt;}
.y182{bottom:746.011333pt;}
.yb9{bottom:746.012400pt;}
.y157{bottom:746.690533pt;}
.y1c9{bottom:747.598667pt;}
.y11b{bottom:750.042400pt;}
.y60{bottom:760.410267pt;}
.y125{bottom:760.984267pt;}
.ye0{bottom:761.663467pt;}
.y91{bottom:761.998667pt;}
.y181{bottom:762.678000pt;}
.y156{bottom:763.357200pt;}
.y1c8{bottom:764.265333pt;}
.y11c{bottom:765.042400pt;}
.y11a{bottom:767.082400pt;}
.y5f{bottom:777.076933pt;}
.y124{bottom:777.650933pt;}
.ydf{bottom:778.330133pt;}
.y90{bottom:778.665333pt;}
.y180{bottom:779.344667pt;}
.y155{bottom:780.023867pt;}
.y1c7{bottom:780.932000pt;}
.y2{bottom:781.661334pt;}
.y2d{bottom:786.383200pt;}
.y119{bottom:786.736933pt;}
.y5e{bottom:793.743600pt;}
.y123{bottom:794.317600pt;}
.yde{bottom:794.996800pt;}
.y8f{bottom:795.332000pt;}
.y17f{bottom:796.011333pt;}
.y154{bottom:796.691600pt;}
.y1c6{bottom:797.598667pt;}
.y2c{bottom:807.229333pt;}
.y118{bottom:808.431600pt;}
.y5d{bottom:810.410267pt;}
.y122{bottom:810.984267pt;}
.ydd{bottom:811.663467pt;}
.y8e{bottom:811.998667pt;}
.y17e{bottom:812.678000pt;}
.y1c5{bottom:814.265333pt;}
.y2b{bottom:823.808800pt;}
.y5c{bottom:827.076933pt;}
.y121{bottom:827.650933pt;}
.ydc{bottom:828.330133pt;}
.y8d{bottom:828.665333pt;}
.y153{bottom:829.344667pt;}
.y198{bottom:829.345733pt;}
.y117{bottom:830.126133pt;}
.y1c4{bottom:830.932000pt;}
.y2a{bottom:840.388400pt;}
.y5b{bottom:843.743600pt;}
.y120{bottom:844.317600pt;}
.ydb{bottom:844.996800pt;}
.y8c{bottom:845.332000pt;}
.y152{bottom:846.011333pt;}
.y1c3{bottom:847.598667pt;}
.y29{bottom:852.701200pt;}
.y116{bottom:853.860667pt;}
.y1{bottom:859.312000pt;}
.y5a{bottom:860.410267pt;}
.y11f{bottom:860.984267pt;}
.yda{bottom:861.663467pt;}
.y8b{bottom:861.998667pt;}
.y151{bottom:862.678000pt;}
.y17d{bottom:862.679067pt;}
.y1c2{bottom:864.265333pt;}
.y115{bottom:875.555200pt;}
.y59{bottom:877.078000pt;}
.y11e{bottom:877.650933pt;}
.yd9{bottom:878.331200pt;}
.y8a{bottom:878.665333pt;}
.y150{bottom:879.344667pt;}
.y1c1{bottom:880.932000pt;}
.y28{bottom:887.019333pt;}
.y11d{bottom:894.317600pt;}
.y113{bottom:895.209733pt;}
.y89{bottom:895.332000pt;}
.y14f{bottom:896.011333pt;}
.y58{bottom:896.012400pt;}
.y1c0{bottom:897.598667pt;}
.y114{bottom:910.209733pt;}
.yd8{bottom:910.984267pt;}
.y88{bottom:911.998667pt;}
.y112{bottom:912.249733pt;}
.y14e{bottom:912.678000pt;}
.y1bf{bottom:914.265333pt;}
.y27{bottom:915.819333pt;}
.yd7{bottom:927.650933pt;}
.y57{bottom:928.665333pt;}
.y14d{bottom:929.344667pt;}
.y1be{bottom:930.932000pt;}
.y111{bottom:931.904133pt;}
.yd6{bottom:944.317600pt;}
.y56{bottom:945.332000pt;}
.y14c{bottom:946.011333pt;}
.y110{bottom:946.904133pt;}
.y1bd{bottom:947.598667pt;}
.y10f{bottom:951.558800pt;}
.y26{bottom:952.178400pt;}
.yd5{bottom:960.984267pt;}
.y55{bottom:961.998667pt;}
.y14b{bottom:962.679067pt;}
.y1bc{bottom:964.265333pt;}
.y10e{bottom:966.558800pt;}
.yd4{bottom:977.650933pt;}
.y54{bottom:978.665333pt;}
.y1bb{bottom:980.932000pt;}
.yd3{bottom:994.317600pt;}
.y53{bottom:995.332000pt;}
.y10d{bottom:995.998667pt;}
.y1ba{bottom:997.598667pt;}
.yd2{bottom:1010.985333pt;}
.y52{bottom:1011.998667pt;}
.y1b9{bottom:1014.265333pt;}
.y25{bottom:1040.326400pt;}
.y24{bottom:1053.126400pt;}
.y23{bottom:1065.926400pt;}
.y51{bottom:1074.834667pt;}
.he{height:19.153493pt;}
.h18{height:23.351093pt;}
.h7{height:28.560000pt;}
.h15{height:32.725333pt;}
.h9{height:32.853333pt;}
.ha{height:34.012280pt;}
.h14{height:36.145536pt;}
.h16{height:36.624000pt;}
.h17{height:36.816000pt;}
.h6{height:40.800000pt;}
.h11{height:40.906667pt;}
.hf{height:41.066667pt;}
.h3{height:42.840000pt;}
.hb{height:44.000000pt;}
.h12{height:44.982968pt;}
.h13{height:45.181920pt;}
.h10{height:48.000000pt;}
.h2{height:48.960000pt;}
.hd{height:53.584000pt;}
.h19{height:60.344000pt;}
.h5{height:69.360000pt;}
.hc{height:72.000000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:102.047200pt;}
.xa{left:113.385733pt;}
.x19{left:120.944800pt;}
.xb{left:124.724400pt;}
.xd{left:132.283467pt;}
.xe{left:153.635733pt;}
.x4{left:180.874667pt;}
.x1d{left:217.039333pt;}
.xf{left:272.302400pt;}
.x5{left:316.661333pt;}
.xc{left:390.357200pt;}
.x7{left:397.577467pt;}
.x8{left:400.105333pt;}
.x3{left:404.408000pt;}
.x11{left:429.961867pt;}
.x1e{left:433.152933pt;}
.x12{left:441.601733pt;}
.x17{left:462.506000pt;}
.x18{left:468.889867pt;}
.x10{left:470.675467pt;}
.x14{left:504.923467pt;}
.x13{left:509.579333pt;}
.x6{left:551.473733pt;}
.x15{left:586.106267pt;}
.x16{left:587.528133pt;}
.x1a{left:611.913067pt;}
.x1b{left:614.440933pt;}
.x1c{left:618.067600pt;}
}




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