
    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_25c99b08b29a4bab100ddb31.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_fe363cd49df698531434983b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_d48b67275fbfe50df3d872c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.970368;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_0c060c6522a6dec0a694033d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.041992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3ee0aa2f352ef5cbd965a85e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_fa3a8f099703d4d0e072f320.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_ddd88315a18bebeab061a7b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_e69b6787bacf0aa25946677a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976118;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_3de12a60ed3ec56ac4e38057.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.710938;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_745d57483a6139f1262158ae.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.953125;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_6b82b7e6d55d69aa79bc4f75.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.031738;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_d57baa2c3093ccfa2d2bd38d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.976094;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_9dd6d92e2a2bc38bdf2d3523.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.925781;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_d35ed71ac4442cb562b33c9f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.v3{vertical-align:40.960800px;}
.ls1e{letter-spacing:-3.240000px;}
.lsf{letter-spacing:-1.632000px;}
.ls25{letter-spacing:-1.620000px;}
.lsa{letter-spacing:-1.320000px;}
.ls19{letter-spacing:-1.200000px;}
.ls20{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.918000px;}
.lsb{letter-spacing:-0.769560px;}
.lsd{letter-spacing:-0.691200px;}
.lsc{letter-spacing:-0.672000px;}
.ls1c{letter-spacing:-0.600000px;}
.ls23{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.408000px;}
.ls24{letter-spacing:-0.270000px;}
.ls26{letter-spacing:-0.240000px;}
.ls8{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.001800px;}
.ls21{letter-spacing:0.010200px;}
.ls1{letter-spacing:0.012000px;}
.ls1b{letter-spacing:0.017400px;}
.ls7{letter-spacing:0.025800px;}
.ls10{letter-spacing:0.240000px;}
.ls22{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.600000px;}
.ls3{letter-spacing:0.672000px;}
.ls11{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.738600px;}
.ls13{letter-spacing:0.739200px;}
.ls4{letter-spacing:1.080000px;}
.ls14{letter-spacing:1.200000px;}
.ls15{letter-spacing:1.219200px;}
.ls1d{letter-spacing:6.730800px;}
.ls5{letter-spacing:8.810400px;}
.ls1a{letter-spacing:10.845000px;}
.ls6{letter-spacing:17.793600px;}
.ls1f{letter-spacing:18.814200px;}
.ls0{letter-spacing:41.092164px;}
.ls16{letter-spacing:78.472800px;}
.ls17{letter-spacing:78.520800px;}
.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;}
}
.wsbb{word-spacing:-60.000000px;}
.ws0{word-spacing:-24.786000px;}
.ws8{word-spacing:-17.928000px;}
.wsfa{word-spacing:-16.434000px;}
.ws72{word-spacing:-15.900000px;}
.ws71{word-spacing:-15.420000px;}
.ws37{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.wsa4{word-spacing:-14.880000px;}
.wsa3{word-spacing:-14.820000px;}
.ws9{word-spacing:-14.700000px;}
.ws7{word-spacing:-14.310000px;}
.ws109{word-spacing:-13.932000px;}
.ws108{word-spacing:-13.770000px;}
.wsa5{word-spacing:-13.680000px;}
.wsdf{word-spacing:-13.446000px;}
.wsfb{word-spacing:-13.392000px;}
.ws91{word-spacing:-13.230000px;}
.ws127{word-spacing:-13.200000px;}
.ws10b{word-spacing:-13.122000px;}
.ws10a{word-spacing:-12.960000px;}
.ws107{word-spacing:-12.852000px;}
.wsfc{word-spacing:-12.312000px;}
.wse{word-spacing:-12.150000px;}
.wsd{word-spacing:-12.042000px;}
.wsa{word-spacing:-11.772000px;}
.wsc{word-spacing:-11.232000px;}
.ws4{word-spacing:-10.896000px;}
.wsb{word-spacing:-10.854000px;}
.ws36{word-spacing:-10.800000px;}
.wsf{word-spacing:-10.464000px;}
.wse0{word-spacing:-10.206000px;}
.ws5{word-spacing:-9.417600px;}
.ws3{word-spacing:-9.156000px;}
.ws2{word-spacing:-8.772984px;}
.ws6f{word-spacing:-6.048000px;}
.ws70{word-spacing:-5.940000px;}
.ws117{word-spacing:-5.886000px;}
.ws126{word-spacing:-5.076000px;}
.ws129{word-spacing:-3.564000px;}
.ws101{word-spacing:-3.510000px;}
.wsde{word-spacing:-3.480000px;}
.ws104{word-spacing:-3.294000px;}
.ws47{word-spacing:-3.120000px;}
.ws4f{word-spacing:-2.820000px;}
.wsd0{word-spacing:-2.760000px;}
.ws4a{word-spacing:-2.700000px;}
.wsd6{word-spacing:-2.640000px;}
.ws4b{word-spacing:-2.580000px;}
.wsf6{word-spacing:-2.520000px;}
.wsf7{word-spacing:-2.460000px;}
.wscc{word-spacing:-2.340000px;}
.wsbd{word-spacing:-2.280000px;}
.ws100{word-spacing:-2.268000px;}
.ws8f{word-spacing:-2.220000px;}
.ws11b{word-spacing:-2.214000px;}
.ws79{word-spacing:-2.100000px;}
.ws12c{word-spacing:-1.890000px;}
.ws2f{word-spacing:-1.800000px;}
.ws10f{word-spacing:-1.782000px;}
.ws55{word-spacing:-1.740000px;}
.wsea{word-spacing:-1.728000px;}
.ws56{word-spacing:-1.680000px;}
.ws124{word-spacing:-1.674000px;}
.ws86{word-spacing:-1.560000px;}
.wsf2{word-spacing:-1.500000px;}
.ws112{word-spacing:-1.404000px;}
.ws48{word-spacing:-1.380000px;}
.ws51{word-spacing:-1.260000px;}
.ws8a{word-spacing:-1.200000px;}
.ws50{word-spacing:-1.140000px;}
.ws1d{word-spacing:-1.080000px;}
.ws3c{word-spacing:-0.960000px;}
.wsbf{word-spacing:-0.900000px;}
.ws11{word-spacing:-0.858000px;}
.wsb3{word-spacing:-0.840000px;}
.ws4e{word-spacing:-0.780000px;}
.ws84{word-spacing:-0.720000px;}
.wsdd{word-spacing:-0.660000px;}
.ws3b{word-spacing:-0.600000px;}
.ws134{word-spacing:-0.540000px;}
.ws75{word-spacing:-0.420000px;}
.wsc1{word-spacing:-0.360000px;}
.ws130{word-spacing:-0.324000px;}
.ws80{word-spacing:-0.240000px;}
.ws13{word-spacing:-0.216000px;}
.ws7a{word-spacing:-0.120000px;}
.ws12{word-spacing:-0.096000px;}
.ws25{word-spacing:-0.054000px;}
.ws10{word-spacing:0.000000px;}
.wsfe{word-spacing:0.054000px;}
.wsbc{word-spacing:0.060000px;}
.wsc8{word-spacing:0.120000px;}
.ws133{word-spacing:0.240000px;}
.ws46{word-spacing:0.300000px;}
.wsb9{word-spacing:0.378000px;}
.ws2c{word-spacing:0.420000px;}
.ws111{word-spacing:0.432000px;}
.ws3d{word-spacing:0.480000px;}
.ws1e{word-spacing:0.486000px;}
.wsb4{word-spacing:0.540000px;}
.wsff{word-spacing:0.594000px;}
.ws33{word-spacing:0.600000px;}
.ws14{word-spacing:0.691200px;}
.ws113{word-spacing:0.702000px;}
.ws38{word-spacing:0.720000px;}
.ws121{word-spacing:0.756000px;}
.ws39{word-spacing:0.780000px;}
.ws54{word-spacing:0.900000px;}
.ws110{word-spacing:0.918000px;}
.ws85{word-spacing:0.960000px;}
.wsb5{word-spacing:1.080000px;}
.ws2e{word-spacing:1.200000px;}
.ws1b{word-spacing:1.242000px;}
.ws83{word-spacing:1.440000px;}
.wsc6{word-spacing:1.620000px;}
.wsca{word-spacing:1.740000px;}
.ws1a{word-spacing:1.782000px;}
.ws7d{word-spacing:1.860000px;}
.ws32{word-spacing:1.920000px;}
.wse7{word-spacing:1.980000px;}
.ws8c{word-spacing:2.040000px;}
.wsc7{word-spacing:2.100000px;}
.wse8{word-spacing:2.160000px;}
.ws78{word-spacing:2.340000px;}
.wsc3{word-spacing:2.400000px;}
.wsfd{word-spacing:2.430000px;}
.wse1{word-spacing:2.460000px;}
.ws35{word-spacing:2.520000px;}
.ws11c{word-spacing:2.538000px;}
.ws7c{word-spacing:2.760000px;}
.ws12d{word-spacing:2.808000px;}
.wseb{word-spacing:2.820000px;}
.wse2{word-spacing:2.940000px;}
.ws119{word-spacing:2.970000px;}
.ws118{word-spacing:3.024000px;}
.ws45{word-spacing:3.060000px;}
.ws128{word-spacing:3.078000px;}
.ws44{word-spacing:3.120000px;}
.ws8b{word-spacing:3.180000px;}
.wsce{word-spacing:3.240000px;}
.ws7f{word-spacing:3.300000px;}
.ws3e{word-spacing:3.420000px;}
.wscd{word-spacing:3.480000px;}
.wsf1{word-spacing:3.600000px;}
.wsba{word-spacing:3.618000px;}
.ws4d{word-spacing:3.660000px;}
.ws131{word-spacing:3.672000px;}
.ws88{word-spacing:3.720000px;}
.ws29{word-spacing:3.780000px;}
.ws3f{word-spacing:3.900000px;}
.ws11a{word-spacing:3.942000px;}
.ws31{word-spacing:3.960000px;}
.ws30{word-spacing:4.020000px;}
.ws106{word-spacing:4.050000px;}
.ws34{word-spacing:4.080000px;}
.wsf3{word-spacing:4.200000px;}
.ws8d{word-spacing:4.320000px;}
.ws122{word-spacing:4.374000px;}
.ws8e{word-spacing:4.380000px;}
.wse3{word-spacing:4.440000px;}
.ws10e{word-spacing:4.482000px;}
.wsc2{word-spacing:4.500000px;}
.ws74{word-spacing:4.560000px;}
.wse9{word-spacing:4.680000px;}
.ws1c{word-spacing:4.698000px;}
.ws116{word-spacing:4.806000px;}
.wse4{word-spacing:4.860000px;}
.wsc0{word-spacing:4.920000px;}
.ws87{word-spacing:4.980000px;}
.ws123{word-spacing:5.022000px;}
.wsd3{word-spacing:5.040000px;}
.wsdb{word-spacing:5.160000px;}
.wsda{word-spacing:5.220000px;}
.ws23{word-spacing:5.238000px;}
.wsf0{word-spacing:5.280000px;}
.ws22{word-spacing:5.292000px;}
.wsdc{word-spacing:5.340000px;}
.wse6{word-spacing:5.460000px;}
.ws40{word-spacing:5.520000px;}
.ws41{word-spacing:5.640000px;}
.ws81{word-spacing:5.760000px;}
.ws16{word-spacing:5.778000px;}
.ws15{word-spacing:5.832000px;}
.ws7b{word-spacing:5.940000px;}
.ws11f{word-spacing:6.048000px;}
.ws43{word-spacing:6.060000px;}
.ws42{word-spacing:6.120000px;}
.wsc4{word-spacing:6.240000px;}
.ws53{word-spacing:6.420000px;}
.wsd5{word-spacing:6.540000px;}
.ws3a{word-spacing:6.720000px;}
.ws10c{word-spacing:6.750000px;}
.ws7e{word-spacing:6.780000px;}
.wsc9{word-spacing:6.840000px;}
.ws114{word-spacing:7.074000px;}
.wscf{word-spacing:7.080000px;}
.ws120{word-spacing:7.128000px;}
.ws24{word-spacing:7.182000px;}
.ws2a{word-spacing:7.200000px;}
.wse5{word-spacing:7.260000px;}
.ws10d{word-spacing:7.290000px;}
.wsf4{word-spacing:7.320000px;}
.wsf5{word-spacing:7.440000px;}
.wsf9{word-spacing:7.506000px;}
.ws125{word-spacing:7.560000px;}
.wsf8{word-spacing:7.614000px;}
.wsc5{word-spacing:7.620000px;}
.ws18{word-spacing:7.668000px;}
.ws115{word-spacing:7.722000px;}
.ws17{word-spacing:7.776000px;}
.wscb{word-spacing:7.800000px;}
.ws19{word-spacing:7.830000px;}
.ws2b{word-spacing:7.860000px;}
.ws4c{word-spacing:7.980000px;}
.wsd8{word-spacing:8.100000px;}
.ws12a{word-spacing:8.262000px;}
.ws73{word-spacing:8.460000px;}
.ws2d{word-spacing:8.640000px;}
.ws90{word-spacing:9.240000px;}
.wsd7{word-spacing:9.300000px;}
.ws89{word-spacing:9.600000px;}
.wsb8{word-spacing:9.828000px;}
.wsb7{word-spacing:9.936000px;}
.wsb6{word-spacing:9.990000px;}
.ws12f{word-spacing:10.260000px;}
.ws77{word-spacing:10.320000px;}
.ws76{word-spacing:10.380000px;}
.ws12b{word-spacing:10.692000px;}
.wsbe{word-spacing:10.740000px;}
.ws103{word-spacing:11.124000px;}
.ws102{word-spacing:11.232000px;}
.wsd4{word-spacing:11.340000px;}
.ws27{word-spacing:11.664000px;}
.ws28{word-spacing:11.826000px;}
.ws26{word-spacing:11.880000px;}
.ws12e{word-spacing:11.988000px;}
.ws82{word-spacing:12.180000px;}
.wsd9{word-spacing:12.900000px;}
.ws52{word-spacing:14.640000px;}
.ws1f{word-spacing:16.578000px;}
.ws11d{word-spacing:16.686000px;}
.ws21{word-spacing:16.740000px;}
.ws20{word-spacing:16.848000px;}
.ws49{word-spacing:17.700000px;}
.wsec{word-spacing:18.660000px;}
.wsed{word-spacing:18.840000px;}
.ws105{word-spacing:21.546000px;}
.ws132{word-spacing:24.786000px;}
.wsee{word-spacing:27.720000px;}
.wsef{word-spacing:27.960000px;}
.ws1{word-spacing:33.100575px;}
.ws95{word-spacing:39.592800px;}
.ws99{word-spacing:39.640800px;}
.wsaf{word-spacing:39.688800px;}
.ws11e{word-spacing:53.622000px;}
.wsa8{word-spacing:73.273200px;}
.ws9b{word-spacing:73.273800px;}
.wsa7{word-spacing:73.309200px;}
.wsad{word-spacing:73.309800px;}
.wsa9{word-spacing:73.321200px;}
.wsaa{word-spacing:73.332600px;}
.wsac{word-spacing:76.089000px;}
.wsb2{word-spacing:76.125600px;}
.ws98{word-spacing:77.401200px;}
.ws97{word-spacing:77.413200px;}
.wsa6{word-spacing:77.449200px;}
.ws9f{word-spacing:77.449800px;}
.wsa2{word-spacing:77.461200px;}
.ws9e{word-spacing:77.485800px;}
.ws9d{word-spacing:77.497200px;}
.wsa1{word-spacing:77.522400px;}
.ws9a{word-spacing:81.009000px;}
.ws94{word-spacing:83.341800px;}
.ws96{word-spacing:83.353200px;}
.ws9c{word-spacing:84.437400px;}
.wsa0{word-spacing:84.448800px;}
.wsae{word-spacing:86.834400px;}
.wsb0{word-spacing:86.881800px;}
.wsb1{word-spacing:89.389200px;}
.ws93{word-spacing:89.740200px;}
.ws92{word-spacing:89.751600px;}
.wsab{word-spacing:188.723400px;}
.ws65{word-spacing:269.665200px;}
.ws5b{word-spacing:275.266800px;}
.ws6a{word-spacing:289.282800px;}
.ws5a{word-spacing:292.018800px;}
.ws6e{word-spacing:295.895400px;}
.ws5f{word-spacing:296.087400px;}
.ws69{word-spacing:297.682800px;}
.ws59{word-spacing:298.738800px;}
.ws6d{word-spacing:299.170800px;}
.ws67{word-spacing:301.751400px;}
.ws6b{word-spacing:302.530800px;}
.ws61{word-spacing:302.855400px;}
.ws60{word-spacing:304.055400px;}
.ws66{word-spacing:313.636200px;}
.ws5d{word-spacing:318.263400px;}
.ws5e{word-spacing:319.474800px;}
.ws64{word-spacing:323.506800px;}
.ws6c{word-spacing:331.186800px;}
.ws63{word-spacing:336.898800px;}
.ws62{word-spacing:338.279400px;}
.ws5c{word-spacing:342.743400px;}
.ws68{word-spacing:380.732400px;}
.wsd1{word-spacing:455.263200px;}
.ws57{word-spacing:760.807200px;}
.wsd2{word-spacing:809.484600px;}
.ws58{word-spacing:991.770000px;}
._9{margin-left:-10.440600px;}
._8{margin-left:-8.600400px;}
._30{margin-left:-7.409400px;}
._2{margin-left:-6.069000px;}
._3{margin-left:-5.049600px;}
._4{margin-left:-3.387000px;}
._b{margin-left:-2.292600px;}
._0{margin-left:-1.285200px;}
._1{width:1.122600px;}
._7{width:2.161200px;}
._a{width:3.454800px;}
._c{width:4.740000px;}
._2e{width:6.342000px;}
._2f{width:7.458000px;}
._31{width:10.362600px;}
._73{width:11.634000px;}
._89{width:27.940200px;}
._6{width:35.472000px;}
._5{width:36.624000px;}
._8a{width:42.745200px;}
._8b{width:43.961400px;}
._39{width:73.891800px;}
._3e{width:83.557200px;}
._42{width:96.928200px;}
._3f{width:104.486400px;}
._38{width:126.323400px;}
._3d{width:138.420000px;}
._20{width:158.576400px;}
._21{width:162.388800px;}
._37{width:166.041600px;}
._3a{width:169.795200px;}
._36{width:174.301200px;}
._22{width:176.029200px;}
._23{width:181.148400px;}
._3b{width:183.260400px;}
._41{width:184.787400px;}
._6c{width:188.463000px;}
._7a{width:194.671800px;}
._65{width:196.945800px;}
._3c{width:203.946000px;}
._5f{width:207.757200px;}
._59{width:209.819400px;}
._27{width:211.869600px;}
._68{width:213.363000px;}
._62{width:215.100600px;}
._6e{width:218.595600px;}
._6b{width:220.036200px;}
._56{width:222.162600px;}
._54{width:224.708400px;}
._67{width:225.985800px;}
._5c{width:227.126400px;}
._4a{width:233.847000px;}
._44{width:236.436600px;}
._4d{width:238.444800px;}
._70{width:242.091600px;}
._26{width:246.091800px;}
._51{width:247.911000px;}
._4e{width:249.601200px;}
._4c{width:251.064000px;}
._5b{width:255.077400px;}
._24{width:256.179000px;}
._48{width:262.503000px;}
._64{width:264.351600px;}
._45{width:271.815600px;}
._58{width:277.254000px;}
._61{width:285.774000px;}
._6a{width:288.397800px;}
._47{width:290.116800px;}
._53{width:292.125000px;}
._5e{width:297.385200px;}
._32{width:302.631000px;}
._72{width:306.843000px;}
._87{width:307.927800px;}
._50{width:315.339000px;}
._5d{width:318.259200px;}
._66{width:343.720800px;}
._2d{width:352.183200px;}
._6f{width:357.455400px;}
._25{width:361.732800px;}
._29{width:365.671800px;}
._35{width:372.963000px;}
._28{width:374.164800px;}
._2c{width:379.611600px;}
._2b{width:392.685000px;}
._2a{width:401.140200px;}
._69{width:402.314400px;}
._33{width:409.814400px;}
._88{width:416.949000px;}
._4b{width:436.120800px;}
._63{width:453.494400px;}
._5a{width:470.989800px;}
._46{width:479.581800px;}
._79{width:480.856800px;}
._34{width:487.303800px;}
._49{width:494.714400px;}
._80{width:503.411400px;}
._40{width:504.784800px;}
._57{width:513.974400px;}
._43{width:522.554400px;}
._55{width:524.617800px;}
._81{width:548.312400px;}
._4f{width:553.226400px;}
._52{width:567.590400px;}
._60{width:591.354000px;}
._71{width:611.690400px;}
._74{width:614.485200px;}
._6d{width:616.866600px;}
._83{width:715.018200px;}
._7c{width:717.383400px;}
._85{width:729.799200px;}
._7d{width:753.472800px;}
._86{width:768.799800px;}
._75{width:773.339400px;}
._82{width:777.492000px;}
._77{width:793.750800px;}
._76{width:799.435200px;}
._84{width:847.519200px;}
._7e{width:877.273200px;}
._18{width:889.695600px;}
._1a{width:909.183600px;}
._7b{width:934.458600px;}
._1c{width:950.524200px;}
._15{width:954.868200px;}
._7f{width:963.391800px;}
._13{width:975.943800px;}
._14{width:979.962600px;}
._17{width:995.755200px;}
._19{width:1004.326800px;}
._78{width:1009.367400px;}
._12{width:1010.417400px;}
._11{width:1017.678600px;}
._d{width:1029.911400px;}
._1b{width:1066.463400px;}
._f{width:1072.006200px;}
._16{width:1074.924600px;}
._e{width:1080.906600px;}
._1f{width:1083.084000px;}
._1e{width:1091.984400px;}
._10{width:1112.330400px;}
._1d{width:1128.254400px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3c{bottom:71.212050px;}
.y3d{bottom:75.036150px;}
.y69{bottom:113.078700px;}
.y105{bottom:113.078850px;}
.y99{bottom:117.103950px;}
.y2b{bottom:117.212700px;}
.ye{bottom:117.875550px;}
.y135{bottom:119.655150px;}
.yd{bottom:132.275550px;}
.y68{bottom:134.078700px;}
.y104{bottom:134.078850px;}
.y98{bottom:137.159100px;}
.y2a{bottom:138.212700px;}
.y134{bottom:142.261350px;}
.ycd{bottom:143.163300px;}
.yc{bottom:146.675550px;}
.y67{bottom:155.078700px;}
.y103{bottom:155.078850px;}
.y97{bottom:157.214100px;}
.y29{bottom:159.212700px;}
.yb{bottom:161.075550px;}
.y133{bottom:162.316500px;}
.yf1{bottom:165.028350px;}
.ycc{bottom:165.727050px;}
.y13a{bottom:169.441050px;}
.y66{bottom:176.078700px;}
.y102{bottom:176.078850px;}
.y96{bottom:177.269250px;}
.y28{bottom:180.212700px;}
.y132{bottom:182.371650px;}
.yf0{bottom:184.828350px;}
.ycb{bottom:188.290800px;}
.y65{bottom:197.078700px;}
.y101{bottom:197.078850px;}
.y95{bottom:197.324400px;}
.y39{bottom:200.436750px;}
.y27{bottom:201.212700px;}
.y131{bottom:202.426800px;}
.yca{bottom:210.854700px;}
.y94{bottom:217.379550px;}
.ya2{bottom:218.078700px;}
.y100{bottom:218.078850px;}
.y38{bottom:218.436750px;}
.y26{bottom:222.212700px;}
.y130{bottom:222.481950px;}
.y64{bottom:232.440900px;}
.yc9{bottom:233.418450px;}
.y37{bottom:236.436750px;}
.y93{bottom:237.434700px;}
.ya1{bottom:239.078700px;}
.yff{bottom:239.078850px;}
.y12f{bottom:242.536950px;}
.y25{bottom:243.212700px;}
.y36{bottom:254.436750px;}
.yc8{bottom:255.982200px;}
.y92{bottom:257.489850px;}
.ya0{bottom:260.078700px;}
.yfe{bottom:260.078850px;}
.y12e{bottom:262.592100px;}
.y24{bottom:264.212700px;}
.y35{bottom:272.436750px;}
.y91{bottom:277.544850px;}
.yc7{bottom:278.545950px;}
.y63{bottom:281.078700px;}
.yfd{bottom:281.078850px;}
.y12d{bottom:282.647250px;}
.y23{bottom:285.212700px;}
.y34{bottom:290.436750px;}
.y90{bottom:297.600000px;}
.yc6{bottom:301.109850px;}
.y62{bottom:302.078700px;}
.yfc{bottom:302.078850px;}
.y12c{bottom:302.702400px;}
.y22{bottom:306.212700px;}
.y33{bottom:308.436750px;}
.y8f{bottom:317.655150px;}
.y12b{bottom:322.757550px;}
.y61{bottom:323.078700px;}
.yfb{bottom:323.078850px;}
.yc5{bottom:323.673450px;}
.y21{bottom:327.212700px;}
.y14a{bottom:336.513600px;}
.y8e{bottom:337.710300px;}
.y12a{bottom:342.812550px;}
.y32{bottom:343.444500px;}
.y60{bottom:344.078700px;}
.yfa{bottom:344.078850px;}
.yc4{bottom:346.237350px;}
.y20{bottom:348.212700px;}
.y149{bottom:357.513600px;}
.y8d{bottom:357.765300px;}
.y31{bottom:361.444500px;}
.y129{bottom:362.867700px;}
.y5f{bottom:365.078700px;}
.yf9{bottom:365.078850px;}
.yc3{bottom:368.801100px;}
.y1f{bottom:369.212700px;}
.y8c{bottom:377.820450px;}
.y145{bottom:379.440900px;}
.y30{bottom:379.444500px;}
.y128{bottom:382.922850px;}
.y5e{bottom:386.078700px;}
.yf8{bottom:386.078850px;}
.y148{bottom:389.811150px;}
.yc2{bottom:391.364850px;}
.y8b{bottom:397.875600px;}
.y1e{bottom:404.700450px;}
.y9f{bottom:407.078700px;}
.yf7{bottom:407.078850px;}
.yc1{bottom:413.928750px;}
.y127{bottom:414.255150px;}
.y2f{bottom:414.452400px;}
.y8a{bottom:417.930750px;}
.yce{bottom:419.908500px;}
.y5d{bottom:421.440900px;}
.yf3{bottom:428.078700px;}
.yf6{bottom:428.078850px;}
.y2e{bottom:432.452400px;}
.yc0{bottom:436.492500px;}
.y89{bottom:437.985750px;}
.y9e{bottom:441.513450px;}
.y136{bottom:442.440900px;}
.yf2{bottom:449.078700px;}
.y139{bottom:449.078850px;}
.y2d{bottom:450.452400px;}
.y88{bottom:458.040900px;}
.ybf{bottom:459.056250px;}
.y2c{bottom:468.452400px;}
.y5c{bottom:470.078700px;}
.y126{bottom:470.078850px;}
.y9d{bottom:473.811000px;}
.y144{bottom:475.529250px;}
.yec{bottom:475.618200px;}
.y87{bottom:478.096050px;}
.y106{bottom:478.824900px;}
.ybe{bottom:481.620000px;}
.y1d{bottom:485.228100px;}
.y5b{bottom:491.078700px;}
.y125{bottom:491.078850px;}
.y86{bottom:498.151200px;}
.yeb{bottom:498.181950px;}
.ybd{bottom:504.183750px;}
.y1c{bottom:505.027950px;}
.yf5{bottom:509.040300px;}
.y5a{bottom:512.078700px;}
.y124{bottom:512.078850px;}
.y85{bottom:518.206350px;}
.yea{bottom:520.745700px;}
.ybc{bottom:526.747500px;}
.y59{bottom:533.078700px;}
.y123{bottom:533.078850px;}
.y84{bottom:539.536950px;}
.ye9{bottom:543.309450px;}
.y1b{bottom:546.087900px;}
.ybb{bottom:549.311400px;}
.y58{bottom:554.078700px;}
.y122{bottom:554.078850px;}
.y83{bottom:560.017350px;}
.ye8{bottom:565.873350px;}
.y1a{bottom:565.887900px;}
.y13c{bottom:568.494150px;}
.yba{bottom:571.875150px;}
.y57{bottom:575.078700px;}
.y121{bottom:575.078850px;}
.y19{bottom:585.687900px;}
.y13b{bottom:588.294150px;}
.ye7{bottom:588.437100px;}
.y82{bottom:590.499150px;}
.yb9{bottom:594.438900px;}
.y56{bottom:596.078700px;}
.y120{bottom:596.078850px;}
.y18{bottom:605.487900px;}
.y81{bottom:610.299150px;}
.ye6{bottom:611.000850px;}
.yb8{bottom:617.002650px;}
.y55{bottom:617.078700px;}
.y11f{bottom:617.078850px;}
.y17{bottom:625.287900px;}
.y138{bottom:627.348150px;}
.ye5{bottom:633.564600px;}
.y54{bottom:638.078700px;}
.y11e{bottom:638.078850px;}
.yb7{bottom:639.566550px;}
.y16{bottom:645.087900px;}
.y137{bottom:647.148150px;}
.y147{bottom:651.513600px;}
.ye4{bottom:656.128350px;}
.y53{bottom:659.078700px;}
.y11d{bottom:659.078850px;}
.yb6{bottom:662.130300px;}
.y80{bottom:662.598300px;}
.y143{bottom:664.529250px;}
.y15{bottom:664.887900px;}
.yf4{bottom:670.615200px;}
.yef{bottom:677.102850px;}
.ye3{bottom:678.692250px;}
.y52{bottom:680.078700px;}
.y11c{bottom:680.078850px;}
.y7f{bottom:682.653450px;}
.y146{bottom:683.811150px;}
.y14{bottom:684.687900px;}
.yb5{bottom:684.694050px;}
.yee{bottom:696.902850px;}
.y51{bottom:701.078700px;}
.y11b{bottom:701.078850px;}
.ye2{bottom:701.256000px;}
.y7e{bottom:702.708600px;}
.y13{bottom:704.487900px;}
.yb4{bottom:707.257800px;}
.yed{bottom:716.702850px;}
.y9c{bottom:722.078700px;}
.y11a{bottom:722.078850px;}
.y7d{bottom:722.763750px;}
.ye1{bottom:723.819750px;}
.y12{bottom:724.287900px;}
.yb3{bottom:729.821550px;}
.y50{bottom:736.440900px;}
.y7c{bottom:742.818900px;}
.y9b{bottom:743.078700px;}
.y119{bottom:743.078850px;}
.y11{bottom:744.087900px;}
.ye0{bottom:746.383500px;}
.y142{bottom:748.529250px;}
.yb2{bottom:752.385300px;}
.y7b{bottom:762.873900px;}
.y9a{bottom:764.078700px;}
.y118{bottom:764.078850px;}
.ydf{bottom:768.947250px;}
.yb1{bottom:774.949200px;}
.y10{bottom:775.185300px;}
.y7a{bottom:782.929050px;}
.y4f{bottom:785.078700px;}
.y117{bottom:785.078850px;}
.yde{bottom:791.511150px;}
.yb0{bottom:797.512950px;}
.y79{bottom:802.984200px;}
.y4e{bottom:806.078700px;}
.y116{bottom:806.078850px;}
.ydd{bottom:814.074900px;}
.yaf{bottom:820.076700px;}
.y78{bottom:823.039350px;}
.y4d{bottom:827.078700px;}
.y115{bottom:827.078850px;}
.ydc{bottom:836.638650px;}
.yae{bottom:842.640450px;}
.y77{bottom:843.094500px;}
.y4c{bottom:848.078700px;}
.y114{bottom:848.078850px;}
.ya{bottom:854.466750px;}
.ydb{bottom:859.202400px;}
.y76{bottom:863.149500px;}
.yad{bottom:865.204350px;}
.y4b{bottom:869.078700px;}
.y113{bottom:869.078850px;}
.y9{bottom:872.466750px;}
.y141{bottom:874.529250px;}
.yda{bottom:881.766150px;}
.y75{bottom:883.204650px;}
.yac{bottom:887.767950px;}
.y4a{bottom:890.078700px;}
.y112{bottom:890.078850px;}
.y8{bottom:890.466750px;}
.y74{bottom:903.259800px;}
.yd9{bottom:904.330050px;}
.y7{bottom:908.466750px;}
.yab{bottom:910.331850px;}
.y49{bottom:911.078700px;}
.y111{bottom:911.078850px;}
.y73{bottom:923.314950px;}
.y6{bottom:926.466750px;}
.yd8{bottom:926.893800px;}
.y48{bottom:932.078700px;}
.y110{bottom:932.078850px;}
.yaa{bottom:932.895600px;}
.y140{bottom:937.529250px;}
.y72{bottom:943.369950px;}
.y5{bottom:944.466750px;}
.yd7{bottom:949.457550px;}
.y47{bottom:953.078700px;}
.y10f{bottom:953.078850px;}
.ya9{bottom:955.459350px;}
.y71{bottom:963.425100px;}
.yd6{bottom:972.021300px;}
.y46{bottom:974.078700px;}
.y10e{bottom:974.078850px;}
.ya8{bottom:978.023100px;}
.y4{bottom:979.474800px;}
.y70{bottom:987.249750px;}
.yd5{bottom:994.585200px;}
.y45{bottom:995.078700px;}
.y10d{bottom:995.078850px;}
.y13f{bottom:1000.529250px;}
.ya7{bottom:1000.587000px;}
.y6f{bottom:1007.304900px;}
.y44{bottom:1016.078700px;}
.y10c{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.yd4{bottom:1017.148800px;}
.ya6{bottom:1023.150750px;}
.y6e{bottom:1027.360050px;}
.y43{bottom:1037.078700px;}
.y10b{bottom:1037.078850px;}
.yd3{bottom:1039.712700px;}
.ya5{bottom:1045.714500px;}
.y6d{bottom:1047.415050px;}
.y2{bottom:1049.282550px;}
.y42{bottom:1058.078700px;}
.y10a{bottom:1058.078850px;}
.yd2{bottom:1062.276450px;}
.y6c{bottom:1067.470200px;}
.ya4{bottom:1068.320850px;}
.ya3{bottom:1078.560900px;}
.y41{bottom:1079.078700px;}
.y109{bottom:1079.078850px;}
.y13e{bottom:1082.066850px;}
.yd1{bottom:1084.840200px;}
.y6b{bottom:1088.800950px;}
.y40{bottom:1100.078700px;}
.y108{bottom:1100.078850px;}
.yd0{bottom:1107.746550px;}
.yf{bottom:1109.815500px;}
.y13d{bottom:1111.570800px;}
.ycf{bottom:1117.986750px;}
.y6a{bottom:1119.282900px;}
.y3f{bottom:1121.078700px;}
.y107{bottom:1121.078850px;}
.y3b{bottom:1155.615300px;}
.y3a{bottom:1175.115300px;}
.y3e{bottom:1178.691750px;}
.h6{height:34.446094px;}
.h2{height:38.039062px;}
.h11{height:38.226562px;}
.he{height:38.273438px;}
.h5{height:38.531250px;}
.h12{height:39.000000px;}
.hd{height:42.793945px;}
.h7{height:43.004883px;}
.hc{height:43.057617px;}
.h17{height:43.321289px;}
.h9{height:43.875000px;}
.h18{height:45.615234px;}
.h8{height:47.343750px;}
.hf{height:48.134766px;}
.hb{height:48.750000px;}
.h15{height:49.453125px;}
.h16{height:50.176758px;}
.h10{height:52.078125px;}
.h4{height:53.625000px;}
.ha{height:56.812500px;}
.h14{height:79.186762px;}
.h13{height:79.187362px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.992100px;}
.xb{left:107.068950px;}
.xd{left:108.286950px;}
.x13{left:112.251900px;}
.x11{left:115.567800px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.x14{left:163.752600px;}
.x5{left:300.189000px;}
.xf{left:304.440900px;}
.xc{left:317.196900px;}
.x10{left:318.475200px;}
.xe{left:336.335700px;}
.x4{left:396.050700px;}
.xa{left:652.471650px;}
.x12{left:671.653350px;}
.x9{left:683.848650px;}
.x1{left:807.210300px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.v3{vertical-align:36.409600pt;}
.ls1e{letter-spacing:-2.880000pt;}
.lsf{letter-spacing:-1.450667pt;}
.ls25{letter-spacing:-1.440000pt;}
.lsa{letter-spacing:-1.173333pt;}
.ls19{letter-spacing:-1.066667pt;}
.ls20{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.816000pt;}
.lsb{letter-spacing:-0.684053pt;}
.lsd{letter-spacing:-0.614400pt;}
.lsc{letter-spacing:-0.597333pt;}
.ls1c{letter-spacing:-0.533333pt;}
.ls23{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.362667pt;}
.ls24{letter-spacing:-0.240000pt;}
.ls26{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.001600pt;}
.ls21{letter-spacing:0.009067pt;}
.ls1{letter-spacing:0.010667pt;}
.ls1b{letter-spacing:0.015467pt;}
.ls7{letter-spacing:0.022933pt;}
.ls10{letter-spacing:0.213333pt;}
.ls22{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.597333pt;}
.ls11{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.656533pt;}
.ls13{letter-spacing:0.657067pt;}
.ls4{letter-spacing:0.960000pt;}
.ls14{letter-spacing:1.066667pt;}
.ls15{letter-spacing:1.083733pt;}
.ls1d{letter-spacing:5.982933pt;}
.ls5{letter-spacing:7.831467pt;}
.ls1a{letter-spacing:9.640000pt;}
.ls6{letter-spacing:15.816533pt;}
.ls1f{letter-spacing:16.723733pt;}
.ls0{letter-spacing:36.526368pt;}
.ls16{letter-spacing:69.753600pt;}
.ls17{letter-spacing:69.796267pt;}
.wsbb{word-spacing:-53.333333pt;}
.ws0{word-spacing:-22.032000pt;}
.ws8{word-spacing:-15.936000pt;}
.wsfa{word-spacing:-14.608000pt;}
.ws72{word-spacing:-14.133333pt;}
.ws71{word-spacing:-13.706667pt;}
.ws37{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa4{word-spacing:-13.226667pt;}
.wsa3{word-spacing:-13.173333pt;}
.ws9{word-spacing:-13.066667pt;}
.ws7{word-spacing:-12.720000pt;}
.ws109{word-spacing:-12.384000pt;}
.ws108{word-spacing:-12.240000pt;}
.wsa5{word-spacing:-12.160000pt;}
.wsdf{word-spacing:-11.952000pt;}
.wsfb{word-spacing:-11.904000pt;}
.ws91{word-spacing:-11.760000pt;}
.ws127{word-spacing:-11.733333pt;}
.ws10b{word-spacing:-11.664000pt;}
.ws10a{word-spacing:-11.520000pt;}
.ws107{word-spacing:-11.424000pt;}
.wsfc{word-spacing:-10.944000pt;}
.wse{word-spacing:-10.800000pt;}
.wsd{word-spacing:-10.704000pt;}
.wsa{word-spacing:-10.464000pt;}
.wsc{word-spacing:-9.984000pt;}
.ws4{word-spacing:-9.685333pt;}
.wsb{word-spacing:-9.648000pt;}
.ws36{word-spacing:-9.600000pt;}
.wsf{word-spacing:-9.301333pt;}
.wse0{word-spacing:-9.072000pt;}
.ws5{word-spacing:-8.371200pt;}
.ws3{word-spacing:-8.138667pt;}
.ws2{word-spacing:-7.798208pt;}
.ws6f{word-spacing:-5.376000pt;}
.ws70{word-spacing:-5.280000pt;}
.ws117{word-spacing:-5.232000pt;}
.ws126{word-spacing:-4.512000pt;}
.ws129{word-spacing:-3.168000pt;}
.ws101{word-spacing:-3.120000pt;}
.wsde{word-spacing:-3.093333pt;}
.ws104{word-spacing:-2.928000pt;}
.ws47{word-spacing:-2.773333pt;}
.ws4f{word-spacing:-2.506667pt;}
.wsd0{word-spacing:-2.453333pt;}
.ws4a{word-spacing:-2.400000pt;}
.wsd6{word-spacing:-2.346667pt;}
.ws4b{word-spacing:-2.293333pt;}
.wsf6{word-spacing:-2.240000pt;}
.wsf7{word-spacing:-2.186667pt;}
.wscc{word-spacing:-2.080000pt;}
.wsbd{word-spacing:-2.026667pt;}
.ws100{word-spacing:-2.016000pt;}
.ws8f{word-spacing:-1.973333pt;}
.ws11b{word-spacing:-1.968000pt;}
.ws79{word-spacing:-1.866667pt;}
.ws12c{word-spacing:-1.680000pt;}
.ws2f{word-spacing:-1.600000pt;}
.ws10f{word-spacing:-1.584000pt;}
.ws55{word-spacing:-1.546667pt;}
.wsea{word-spacing:-1.536000pt;}
.ws56{word-spacing:-1.493333pt;}
.ws124{word-spacing:-1.488000pt;}
.ws86{word-spacing:-1.386667pt;}
.wsf2{word-spacing:-1.333333pt;}
.ws112{word-spacing:-1.248000pt;}
.ws48{word-spacing:-1.226667pt;}
.ws51{word-spacing:-1.120000pt;}
.ws8a{word-spacing:-1.066667pt;}
.ws50{word-spacing:-1.013333pt;}
.ws1d{word-spacing:-0.960000pt;}
.ws3c{word-spacing:-0.853333pt;}
.wsbf{word-spacing:-0.800000pt;}
.ws11{word-spacing:-0.762667pt;}
.wsb3{word-spacing:-0.746667pt;}
.ws4e{word-spacing:-0.693333pt;}
.ws84{word-spacing:-0.640000pt;}
.wsdd{word-spacing:-0.586667pt;}
.ws3b{word-spacing:-0.533333pt;}
.ws134{word-spacing:-0.480000pt;}
.ws75{word-spacing:-0.373333pt;}
.wsc1{word-spacing:-0.320000pt;}
.ws130{word-spacing:-0.288000pt;}
.ws80{word-spacing:-0.213333pt;}
.ws13{word-spacing:-0.192000pt;}
.ws7a{word-spacing:-0.106667pt;}
.ws12{word-spacing:-0.085333pt;}
.ws25{word-spacing:-0.048000pt;}
.ws10{word-spacing:0.000000pt;}
.wsfe{word-spacing:0.048000pt;}
.wsbc{word-spacing:0.053333pt;}
.wsc8{word-spacing:0.106667pt;}
.ws133{word-spacing:0.213333pt;}
.ws46{word-spacing:0.266667pt;}
.wsb9{word-spacing:0.336000pt;}
.ws2c{word-spacing:0.373333pt;}
.ws111{word-spacing:0.384000pt;}
.ws3d{word-spacing:0.426667pt;}
.ws1e{word-spacing:0.432000pt;}
.wsb4{word-spacing:0.480000pt;}
.wsff{word-spacing:0.528000pt;}
.ws33{word-spacing:0.533333pt;}
.ws14{word-spacing:0.614400pt;}
.ws113{word-spacing:0.624000pt;}
.ws38{word-spacing:0.640000pt;}
.ws121{word-spacing:0.672000pt;}
.ws39{word-spacing:0.693333pt;}
.ws54{word-spacing:0.800000pt;}
.ws110{word-spacing:0.816000pt;}
.ws85{word-spacing:0.853333pt;}
.wsb5{word-spacing:0.960000pt;}
.ws2e{word-spacing:1.066667pt;}
.ws1b{word-spacing:1.104000pt;}
.ws83{word-spacing:1.280000pt;}
.wsc6{word-spacing:1.440000pt;}
.wsca{word-spacing:1.546667pt;}
.ws1a{word-spacing:1.584000pt;}
.ws7d{word-spacing:1.653333pt;}
.ws32{word-spacing:1.706667pt;}
.wse7{word-spacing:1.760000pt;}
.ws8c{word-spacing:1.813333pt;}
.wsc7{word-spacing:1.866667pt;}
.wse8{word-spacing:1.920000pt;}
.ws78{word-spacing:2.080000pt;}
.wsc3{word-spacing:2.133333pt;}
.wsfd{word-spacing:2.160000pt;}
.wse1{word-spacing:2.186667pt;}
.ws35{word-spacing:2.240000pt;}
.ws11c{word-spacing:2.256000pt;}
.ws7c{word-spacing:2.453333pt;}
.ws12d{word-spacing:2.496000pt;}
.wseb{word-spacing:2.506667pt;}
.wse2{word-spacing:2.613333pt;}
.ws119{word-spacing:2.640000pt;}
.ws118{word-spacing:2.688000pt;}
.ws45{word-spacing:2.720000pt;}
.ws128{word-spacing:2.736000pt;}
.ws44{word-spacing:2.773333pt;}
.ws8b{word-spacing:2.826667pt;}
.wsce{word-spacing:2.880000pt;}
.ws7f{word-spacing:2.933333pt;}
.ws3e{word-spacing:3.040000pt;}
.wscd{word-spacing:3.093333pt;}
.wsf1{word-spacing:3.200000pt;}
.wsba{word-spacing:3.216000pt;}
.ws4d{word-spacing:3.253333pt;}
.ws131{word-spacing:3.264000pt;}
.ws88{word-spacing:3.306667pt;}
.ws29{word-spacing:3.360000pt;}
.ws3f{word-spacing:3.466667pt;}
.ws11a{word-spacing:3.504000pt;}
.ws31{word-spacing:3.520000pt;}
.ws30{word-spacing:3.573333pt;}
.ws106{word-spacing:3.600000pt;}
.ws34{word-spacing:3.626667pt;}
.wsf3{word-spacing:3.733333pt;}
.ws8d{word-spacing:3.840000pt;}
.ws122{word-spacing:3.888000pt;}
.ws8e{word-spacing:3.893333pt;}
.wse3{word-spacing:3.946667pt;}
.ws10e{word-spacing:3.984000pt;}
.wsc2{word-spacing:4.000000pt;}
.ws74{word-spacing:4.053333pt;}
.wse9{word-spacing:4.160000pt;}
.ws1c{word-spacing:4.176000pt;}
.ws116{word-spacing:4.272000pt;}
.wse4{word-spacing:4.320000pt;}
.wsc0{word-spacing:4.373333pt;}
.ws87{word-spacing:4.426667pt;}
.ws123{word-spacing:4.464000pt;}
.wsd3{word-spacing:4.480000pt;}
.wsdb{word-spacing:4.586667pt;}
.wsda{word-spacing:4.640000pt;}
.ws23{word-spacing:4.656000pt;}
.wsf0{word-spacing:4.693333pt;}
.ws22{word-spacing:4.704000pt;}
.wsdc{word-spacing:4.746667pt;}
.wse6{word-spacing:4.853333pt;}
.ws40{word-spacing:4.906667pt;}
.ws41{word-spacing:5.013333pt;}
.ws81{word-spacing:5.120000pt;}
.ws16{word-spacing:5.136000pt;}
.ws15{word-spacing:5.184000pt;}
.ws7b{word-spacing:5.280000pt;}
.ws11f{word-spacing:5.376000pt;}
.ws43{word-spacing:5.386667pt;}
.ws42{word-spacing:5.440000pt;}
.wsc4{word-spacing:5.546667pt;}
.ws53{word-spacing:5.706667pt;}
.wsd5{word-spacing:5.813333pt;}
.ws3a{word-spacing:5.973333pt;}
.ws10c{word-spacing:6.000000pt;}
.ws7e{word-spacing:6.026667pt;}
.wsc9{word-spacing:6.080000pt;}
.ws114{word-spacing:6.288000pt;}
.wscf{word-spacing:6.293333pt;}
.ws120{word-spacing:6.336000pt;}
.ws24{word-spacing:6.384000pt;}
.ws2a{word-spacing:6.400000pt;}
.wse5{word-spacing:6.453333pt;}
.ws10d{word-spacing:6.480000pt;}
.wsf4{word-spacing:6.506667pt;}
.wsf5{word-spacing:6.613333pt;}
.wsf9{word-spacing:6.672000pt;}
.ws125{word-spacing:6.720000pt;}
.wsf8{word-spacing:6.768000pt;}
.wsc5{word-spacing:6.773333pt;}
.ws18{word-spacing:6.816000pt;}
.ws115{word-spacing:6.864000pt;}
.ws17{word-spacing:6.912000pt;}
.wscb{word-spacing:6.933333pt;}
.ws19{word-spacing:6.960000pt;}
.ws2b{word-spacing:6.986667pt;}
.ws4c{word-spacing:7.093333pt;}
.wsd8{word-spacing:7.200000pt;}
.ws12a{word-spacing:7.344000pt;}
.ws73{word-spacing:7.520000pt;}
.ws2d{word-spacing:7.680000pt;}
.ws90{word-spacing:8.213333pt;}
.wsd7{word-spacing:8.266667pt;}
.ws89{word-spacing:8.533333pt;}
.wsb8{word-spacing:8.736000pt;}
.wsb7{word-spacing:8.832000pt;}
.wsb6{word-spacing:8.880000pt;}
.ws12f{word-spacing:9.120000pt;}
.ws77{word-spacing:9.173333pt;}
.ws76{word-spacing:9.226667pt;}
.ws12b{word-spacing:9.504000pt;}
.wsbe{word-spacing:9.546667pt;}
.ws103{word-spacing:9.888000pt;}
.ws102{word-spacing:9.984000pt;}
.wsd4{word-spacing:10.080000pt;}
.ws27{word-spacing:10.368000pt;}
.ws28{word-spacing:10.512000pt;}
.ws26{word-spacing:10.560000pt;}
.ws12e{word-spacing:10.656000pt;}
.ws82{word-spacing:10.826667pt;}
.wsd9{word-spacing:11.466667pt;}
.ws52{word-spacing:13.013333pt;}
.ws1f{word-spacing:14.736000pt;}
.ws11d{word-spacing:14.832000pt;}
.ws21{word-spacing:14.880000pt;}
.ws20{word-spacing:14.976000pt;}
.ws49{word-spacing:15.733333pt;}
.wsec{word-spacing:16.586667pt;}
.wsed{word-spacing:16.746667pt;}
.ws105{word-spacing:19.152000pt;}
.ws132{word-spacing:22.032000pt;}
.wsee{word-spacing:24.640000pt;}
.wsef{word-spacing:24.853333pt;}
.ws1{word-spacing:29.422733pt;}
.ws95{word-spacing:35.193600pt;}
.ws99{word-spacing:35.236267pt;}
.wsaf{word-spacing:35.278933pt;}
.ws11e{word-spacing:47.664000pt;}
.wsa8{word-spacing:65.131733pt;}
.ws9b{word-spacing:65.132267pt;}
.wsa7{word-spacing:65.163733pt;}
.wsad{word-spacing:65.164267pt;}
.wsa9{word-spacing:65.174400pt;}
.wsaa{word-spacing:65.184533pt;}
.wsac{word-spacing:67.634667pt;}
.wsb2{word-spacing:67.667200pt;}
.ws98{word-spacing:68.801067pt;}
.ws97{word-spacing:68.811733pt;}
.wsa6{word-spacing:68.843733pt;}
.ws9f{word-spacing:68.844267pt;}
.wsa2{word-spacing:68.854400pt;}
.ws9e{word-spacing:68.876267pt;}
.ws9d{word-spacing:68.886400pt;}
.wsa1{word-spacing:68.908800pt;}
.ws9a{word-spacing:72.008000pt;}
.ws94{word-spacing:74.081600pt;}
.ws96{word-spacing:74.091733pt;}
.ws9c{word-spacing:75.055467pt;}
.wsa0{word-spacing:75.065600pt;}
.wsae{word-spacing:77.186133pt;}
.wsb0{word-spacing:77.228267pt;}
.wsb1{word-spacing:79.457067pt;}
.ws93{word-spacing:79.769067pt;}
.ws92{word-spacing:79.779200pt;}
.wsab{word-spacing:167.754133pt;}
.ws65{word-spacing:239.702400pt;}
.ws5b{word-spacing:244.681600pt;}
.ws6a{word-spacing:257.140267pt;}
.ws5a{word-spacing:259.572267pt;}
.ws6e{word-spacing:263.018133pt;}
.ws5f{word-spacing:263.188800pt;}
.ws69{word-spacing:264.606933pt;}
.ws59{word-spacing:265.545600pt;}
.ws6d{word-spacing:265.929600pt;}
.ws67{word-spacing:268.223467pt;}
.ws6b{word-spacing:268.916267pt;}
.ws61{word-spacing:269.204800pt;}
.ws60{word-spacing:270.271467pt;}
.ws66{word-spacing:278.787733pt;}
.ws5d{word-spacing:282.900800pt;}
.ws5e{word-spacing:283.977600pt;}
.ws64{word-spacing:287.561600pt;}
.ws6c{word-spacing:294.388267pt;}
.ws63{word-spacing:299.465600pt;}
.ws62{word-spacing:300.692800pt;}
.ws5c{word-spacing:304.660800pt;}
.ws68{word-spacing:338.428800pt;}
.wsd1{word-spacing:404.678400pt;}
.ws57{word-spacing:676.273067pt;}
.wsd2{word-spacing:719.541867pt;}
.ws58{word-spacing:881.573333pt;}
._9{margin-left:-9.280533pt;}
._8{margin-left:-7.644800pt;}
._30{margin-left:-6.586133pt;}
._2{margin-left:-5.394667pt;}
._3{margin-left:-4.488533pt;}
._4{margin-left:-3.010667pt;}
._b{margin-left:-2.037867pt;}
._0{margin-left:-1.142400pt;}
._1{width:0.997867pt;}
._7{width:1.921067pt;}
._a{width:3.070933pt;}
._c{width:4.213333pt;}
._2e{width:5.637333pt;}
._2f{width:6.629333pt;}
._31{width:9.211200pt;}
._73{width:10.341333pt;}
._89{width:24.835733pt;}
._6{width:31.530667pt;}
._5{width:32.554667pt;}
._8a{width:37.995733pt;}
._8b{width:39.076800pt;}
._39{width:65.681600pt;}
._3e{width:74.273067pt;}
._42{width:86.158400pt;}
._3f{width:92.876800pt;}
._38{width:112.287467pt;}
._3d{width:123.040000pt;}
._20{width:140.956800pt;}
._21{width:144.345600pt;}
._37{width:147.592533pt;}
._3a{width:150.929067pt;}
._36{width:154.934400pt;}
._22{width:156.470400pt;}
._23{width:161.020800pt;}
._3b{width:162.898133pt;}
._41{width:164.255467pt;}
._6c{width:167.522667pt;}
._7a{width:173.041600pt;}
._65{width:175.062933pt;}
._3c{width:181.285333pt;}
._5f{width:184.673067pt;}
._59{width:186.506133pt;}
._27{width:188.328533pt;}
._68{width:189.656000pt;}
._62{width:191.200533pt;}
._6e{width:194.307200pt;}
._6b{width:195.587733pt;}
._56{width:197.477867pt;}
._54{width:199.740800pt;}
._67{width:200.876267pt;}
._5c{width:201.890133pt;}
._4a{width:207.864000pt;}
._44{width:210.165867pt;}
._4d{width:211.950933pt;}
._70{width:215.192533pt;}
._26{width:218.748267pt;}
._51{width:220.365333pt;}
._4e{width:221.867733pt;}
._4c{width:223.168000pt;}
._5b{width:226.735467pt;}
._24{width:227.714667pt;}
._48{width:233.336000pt;}
._64{width:234.979200pt;}
._45{width:241.613867pt;}
._58{width:246.448000pt;}
._61{width:254.021333pt;}
._6a{width:256.353600pt;}
._47{width:257.881600pt;}
._53{width:259.666667pt;}
._5e{width:264.342400pt;}
._32{width:269.005333pt;}
._72{width:272.749333pt;}
._87{width:273.713600pt;}
._50{width:280.301333pt;}
._5d{width:282.897067pt;}
._66{width:305.529600pt;}
._2d{width:313.051733pt;}
._6f{width:317.738133pt;}
._25{width:321.540267pt;}
._29{width:325.041600pt;}
._35{width:331.522667pt;}
._28{width:332.590933pt;}
._2c{width:337.432533pt;}
._2b{width:349.053333pt;}
._2a{width:356.569067pt;}
._69{width:357.612800pt;}
._33{width:364.279467pt;}
._88{width:370.621333pt;}
._4b{width:387.662933pt;}
._63{width:403.106133pt;}
._5a{width:418.657600pt;}
._46{width:426.294933pt;}
._79{width:427.428267pt;}
._34{width:433.158933pt;}
._49{width:439.746133pt;}
._80{width:447.476800pt;}
._40{width:448.697600pt;}
._57{width:456.866133pt;}
._43{width:464.492800pt;}
._55{width:466.326933pt;}
._81{width:487.388800pt;}
._4f{width:491.756800pt;}
._52{width:504.524800pt;}
._60{width:525.648000pt;}
._71{width:543.724800pt;}
._74{width:546.209067pt;}
._6d{width:548.325867pt;}
._83{width:635.571733pt;}
._7c{width:637.674133pt;}
._85{width:648.710400pt;}
._7d{width:669.753600pt;}
._86{width:683.377600pt;}
._75{width:687.412800pt;}
._82{width:691.104000pt;}
._77{width:705.556267pt;}
._76{width:710.609067pt;}
._84{width:753.350400pt;}
._7e{width:779.798400pt;}
._18{width:790.840533pt;}
._1a{width:808.163200pt;}
._7b{width:830.629867pt;}
._1c{width:844.910400pt;}
._15{width:848.771733pt;}
._7f{width:856.348267pt;}
._13{width:867.505600pt;}
._14{width:871.077867pt;}
._17{width:885.115733pt;}
._19{width:892.734933pt;}
._78{width:897.215467pt;}
._12{width:898.148800pt;}
._11{width:904.603200pt;}
._d{width:915.476800pt;}
._1b{width:947.967467pt;}
._f{width:952.894400pt;}
._16{width:955.488533pt;}
._e{width:960.805867pt;}
._1f{width:962.741333pt;}
._1e{width:970.652800pt;}
._10{width:988.738133pt;}
._1d{width:1002.892800pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3c{bottom:63.299600pt;}
.y3d{bottom:66.698800pt;}
.y69{bottom:100.514400pt;}
.y105{bottom:100.514533pt;}
.y99{bottom:104.092400pt;}
.y2b{bottom:104.189067pt;}
.ye{bottom:104.778267pt;}
.y135{bottom:106.360133pt;}
.yd{bottom:117.578267pt;}
.y68{bottom:119.181067pt;}
.y104{bottom:119.181200pt;}
.y98{bottom:121.919200pt;}
.y2a{bottom:122.855733pt;}
.y134{bottom:126.454533pt;}
.ycd{bottom:127.256267pt;}
.yc{bottom:130.378267pt;}
.y67{bottom:137.847733pt;}
.y103{bottom:137.847867pt;}
.y97{bottom:139.745867pt;}
.y29{bottom:141.522400pt;}
.yb{bottom:143.178267pt;}
.y133{bottom:144.281333pt;}
.yf1{bottom:146.691867pt;}
.ycc{bottom:147.312933pt;}
.y13a{bottom:150.614267pt;}
.y66{bottom:156.514400pt;}
.y102{bottom:156.514533pt;}
.y96{bottom:157.572667pt;}
.y28{bottom:160.189067pt;}
.y132{bottom:162.108133pt;}
.yf0{bottom:164.291867pt;}
.ycb{bottom:167.369600pt;}
.y65{bottom:175.181067pt;}
.y101{bottom:175.181200pt;}
.y95{bottom:175.399467pt;}
.y39{bottom:178.166000pt;}
.y27{bottom:178.855733pt;}
.y131{bottom:179.934933pt;}
.yca{bottom:187.426400pt;}
.y94{bottom:193.226267pt;}
.ya2{bottom:193.847733pt;}
.y100{bottom:193.847867pt;}
.y38{bottom:194.166000pt;}
.y26{bottom:197.522400pt;}
.y130{bottom:197.761733pt;}
.y64{bottom:206.614133pt;}
.yc9{bottom:207.483067pt;}
.y37{bottom:210.166000pt;}
.y93{bottom:211.053067pt;}
.ya1{bottom:212.514400pt;}
.yff{bottom:212.514533pt;}
.y12f{bottom:215.588400pt;}
.y25{bottom:216.189067pt;}
.y36{bottom:226.166000pt;}
.yc8{bottom:227.539733pt;}
.y92{bottom:228.879867pt;}
.ya0{bottom:231.181067pt;}
.yfe{bottom:231.181200pt;}
.y12e{bottom:233.415200pt;}
.y24{bottom:234.855733pt;}
.y35{bottom:242.166000pt;}
.y91{bottom:246.706533pt;}
.yc7{bottom:247.596400pt;}
.y63{bottom:249.847733pt;}
.yfd{bottom:249.847867pt;}
.y12d{bottom:251.242000pt;}
.y23{bottom:253.522400pt;}
.y34{bottom:258.166000pt;}
.y90{bottom:264.533333pt;}
.yc6{bottom:267.653200pt;}
.y62{bottom:268.514400pt;}
.yfc{bottom:268.514533pt;}
.y12c{bottom:269.068800pt;}
.y22{bottom:272.189067pt;}
.y33{bottom:274.166000pt;}
.y8f{bottom:282.360133pt;}
.y12b{bottom:286.895600pt;}
.y61{bottom:287.181067pt;}
.yfb{bottom:287.181200pt;}
.yc5{bottom:287.709733pt;}
.y21{bottom:290.855733pt;}
.y14a{bottom:299.123200pt;}
.y8e{bottom:300.186933pt;}
.y12a{bottom:304.722267pt;}
.y32{bottom:305.284000pt;}
.y60{bottom:305.847733pt;}
.yfa{bottom:305.847867pt;}
.yc4{bottom:307.766533pt;}
.y20{bottom:309.522400pt;}
.y149{bottom:317.789867pt;}
.y8d{bottom:318.013600pt;}
.y31{bottom:321.284000pt;}
.y129{bottom:322.549067pt;}
.y5f{bottom:324.514400pt;}
.yf9{bottom:324.514533pt;}
.yc3{bottom:327.823200pt;}
.y1f{bottom:328.189067pt;}
.y8c{bottom:335.840400pt;}
.y145{bottom:337.280800pt;}
.y30{bottom:337.284000pt;}
.y128{bottom:340.375867pt;}
.y5e{bottom:343.181067pt;}
.yf8{bottom:343.181200pt;}
.y148{bottom:346.498800pt;}
.yc2{bottom:347.879867pt;}
.y8b{bottom:353.667200pt;}
.y1e{bottom:359.733733pt;}
.y9f{bottom:361.847733pt;}
.yf7{bottom:361.847867pt;}
.yc1{bottom:367.936667pt;}
.y127{bottom:368.226800pt;}
.y2f{bottom:368.402133pt;}
.y8a{bottom:371.494000pt;}
.yce{bottom:373.252000pt;}
.y5d{bottom:374.614133pt;}
.yf3{bottom:380.514400pt;}
.yf6{bottom:380.514533pt;}
.y2e{bottom:384.402133pt;}
.yc0{bottom:387.993333pt;}
.y89{bottom:389.320667pt;}
.y9e{bottom:392.456400pt;}
.y136{bottom:393.280800pt;}
.yf2{bottom:399.181067pt;}
.y139{bottom:399.181200pt;}
.y2d{bottom:400.402133pt;}
.y88{bottom:407.147467pt;}
.ybf{bottom:408.050000pt;}
.y2c{bottom:416.402133pt;}
.y5c{bottom:417.847733pt;}
.y126{bottom:417.847867pt;}
.y9d{bottom:421.165333pt;}
.y144{bottom:422.692667pt;}
.yec{bottom:422.771733pt;}
.y87{bottom:424.974267pt;}
.y106{bottom:425.622133pt;}
.ybe{bottom:428.106667pt;}
.y1d{bottom:431.313867pt;}
.y5b{bottom:436.514400pt;}
.y125{bottom:436.514533pt;}
.y86{bottom:442.801067pt;}
.yeb{bottom:442.828400pt;}
.ybd{bottom:448.163333pt;}
.y1c{bottom:448.913733pt;}
.yf5{bottom:452.480267pt;}
.y5a{bottom:455.181067pt;}
.y124{bottom:455.181200pt;}
.y85{bottom:460.627867pt;}
.yea{bottom:462.885067pt;}
.ybc{bottom:468.220000pt;}
.y59{bottom:473.847733pt;}
.y123{bottom:473.847867pt;}
.y84{bottom:479.588400pt;}
.ye9{bottom:482.941733pt;}
.y1b{bottom:485.411467pt;}
.ybb{bottom:488.276800pt;}
.y58{bottom:492.514400pt;}
.y122{bottom:492.514533pt;}
.y83{bottom:497.793200pt;}
.ye8{bottom:502.998533pt;}
.y1a{bottom:503.011467pt;}
.y13c{bottom:505.328133pt;}
.yba{bottom:508.333467pt;}
.y57{bottom:511.181067pt;}
.y121{bottom:511.181200pt;}
.y19{bottom:520.611467pt;}
.y13b{bottom:522.928133pt;}
.ye7{bottom:523.055200pt;}
.y82{bottom:524.888133pt;}
.yb9{bottom:528.390133pt;}
.y56{bottom:529.847733pt;}
.y120{bottom:529.847867pt;}
.y18{bottom:538.211467pt;}
.y81{bottom:542.488133pt;}
.ye6{bottom:543.111867pt;}
.yb8{bottom:548.446800pt;}
.y55{bottom:548.514400pt;}
.y11f{bottom:548.514533pt;}
.y17{bottom:555.811467pt;}
.y138{bottom:557.642800pt;}
.ye5{bottom:563.168533pt;}
.y54{bottom:567.181067pt;}
.y11e{bottom:567.181200pt;}
.yb7{bottom:568.503600pt;}
.y16{bottom:573.411467pt;}
.y137{bottom:575.242800pt;}
.y147{bottom:579.123200pt;}
.ye4{bottom:583.225200pt;}
.y53{bottom:585.847733pt;}
.y11d{bottom:585.847867pt;}
.yb6{bottom:588.560267pt;}
.y80{bottom:588.976267pt;}
.y143{bottom:590.692667pt;}
.y15{bottom:591.011467pt;}
.yf4{bottom:596.102400pt;}
.yef{bottom:601.869200pt;}
.ye3{bottom:603.282000pt;}
.y52{bottom:604.514400pt;}
.y11c{bottom:604.514533pt;}
.y7f{bottom:606.803067pt;}
.y146{bottom:607.832133pt;}
.y14{bottom:608.611467pt;}
.yb5{bottom:608.616933pt;}
.yee{bottom:619.469200pt;}
.y51{bottom:623.181067pt;}
.y11b{bottom:623.181200pt;}
.ye2{bottom:623.338667pt;}
.y7e{bottom:624.629867pt;}
.y13{bottom:626.211467pt;}
.yb4{bottom:628.673600pt;}
.yed{bottom:637.069200pt;}
.y9c{bottom:641.847733pt;}
.y11a{bottom:641.847867pt;}
.y7d{bottom:642.456667pt;}
.ye1{bottom:643.395333pt;}
.y12{bottom:643.811467pt;}
.yb3{bottom:648.730267pt;}
.y50{bottom:654.614133pt;}
.y7c{bottom:660.283467pt;}
.y9b{bottom:660.514400pt;}
.y119{bottom:660.514533pt;}
.y11{bottom:661.411467pt;}
.ye0{bottom:663.452000pt;}
.y142{bottom:665.359333pt;}
.yb2{bottom:668.786933pt;}
.y7b{bottom:678.110133pt;}
.y9a{bottom:679.181067pt;}
.y118{bottom:679.181200pt;}
.ydf{bottom:683.508667pt;}
.yb1{bottom:688.843733pt;}
.y10{bottom:689.053600pt;}
.y7a{bottom:695.936933pt;}
.y4f{bottom:697.847733pt;}
.y117{bottom:697.847867pt;}
.yde{bottom:703.565467pt;}
.yb0{bottom:708.900400pt;}
.y79{bottom:713.763733pt;}
.y4e{bottom:716.514400pt;}
.y116{bottom:716.514533pt;}
.ydd{bottom:723.622133pt;}
.yaf{bottom:728.957067pt;}
.y78{bottom:731.590533pt;}
.y4d{bottom:735.181067pt;}
.y115{bottom:735.181200pt;}
.ydc{bottom:743.678800pt;}
.yae{bottom:749.013733pt;}
.y77{bottom:749.417333pt;}
.y4c{bottom:753.847733pt;}
.y114{bottom:753.847867pt;}
.ya{bottom:759.526000pt;}
.ydb{bottom:763.735467pt;}
.y76{bottom:767.244000pt;}
.yad{bottom:769.070533pt;}
.y4b{bottom:772.514400pt;}
.y113{bottom:772.514533pt;}
.y9{bottom:775.526000pt;}
.y141{bottom:777.359333pt;}
.yda{bottom:783.792133pt;}
.y75{bottom:785.070800pt;}
.yac{bottom:789.127067pt;}
.y4a{bottom:791.181067pt;}
.y112{bottom:791.181200pt;}
.y8{bottom:791.526000pt;}
.y74{bottom:802.897600pt;}
.yd9{bottom:803.848933pt;}
.y7{bottom:807.526000pt;}
.yab{bottom:809.183867pt;}
.y49{bottom:809.847733pt;}
.y111{bottom:809.847867pt;}
.y73{bottom:820.724400pt;}
.y6{bottom:823.526000pt;}
.yd8{bottom:823.905600pt;}
.y48{bottom:828.514400pt;}
.y110{bottom:828.514533pt;}
.yaa{bottom:829.240533pt;}
.y140{bottom:833.359333pt;}
.y72{bottom:838.551067pt;}
.y5{bottom:839.526000pt;}
.yd7{bottom:843.962267pt;}
.y47{bottom:847.181067pt;}
.y10f{bottom:847.181200pt;}
.ya9{bottom:849.297200pt;}
.y71{bottom:856.377867pt;}
.yd6{bottom:864.018933pt;}
.y46{bottom:865.847733pt;}
.y10e{bottom:865.847867pt;}
.ya8{bottom:869.353867pt;}
.y4{bottom:870.644267pt;}
.y70{bottom:877.555333pt;}
.yd5{bottom:884.075733pt;}
.y45{bottom:884.514400pt;}
.y10d{bottom:884.514533pt;}
.y13f{bottom:889.359333pt;}
.ya7{bottom:889.410667pt;}
.y6f{bottom:895.382133pt;}
.y44{bottom:903.181067pt;}
.y10c{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.yd4{bottom:904.132267pt;}
.ya6{bottom:909.467333pt;}
.y6e{bottom:913.208933pt;}
.y43{bottom:921.847733pt;}
.y10b{bottom:921.847867pt;}
.yd3{bottom:924.189067pt;}
.ya5{bottom:929.524000pt;}
.y6d{bottom:931.035600pt;}
.y2{bottom:932.695600pt;}
.y42{bottom:940.514400pt;}
.y10a{bottom:940.514533pt;}
.yd2{bottom:944.245733pt;}
.y6c{bottom:948.862400pt;}
.ya4{bottom:949.618533pt;}
.ya3{bottom:958.720800pt;}
.y41{bottom:959.181067pt;}
.y109{bottom:959.181200pt;}
.y13e{bottom:961.837200pt;}
.yd1{bottom:964.302400pt;}
.y6b{bottom:967.823067pt;}
.y40{bottom:977.847733pt;}
.y108{bottom:977.847867pt;}
.yd0{bottom:984.663600pt;}
.yf{bottom:986.502667pt;}
.y13d{bottom:988.062933pt;}
.ycf{bottom:993.766000pt;}
.y6a{bottom:994.918133pt;}
.y3f{bottom:996.514400pt;}
.y107{bottom:996.514533pt;}
.y3b{bottom:1027.213600pt;}
.y3a{bottom:1044.546933pt;}
.y3e{bottom:1047.726000pt;}
.h6{height:30.618750pt;}
.h2{height:33.812500pt;}
.h11{height:33.979167pt;}
.he{height:34.020833pt;}
.h5{height:34.250000pt;}
.h12{height:34.666667pt;}
.hd{height:38.039062pt;}
.h7{height:38.226562pt;}
.hc{height:38.273438pt;}
.h17{height:38.507812pt;}
.h9{height:39.000000pt;}
.h18{height:40.546875pt;}
.h8{height:42.083333pt;}
.hf{height:42.786458pt;}
.hb{height:43.333333pt;}
.h15{height:43.958333pt;}
.h16{height:44.601562pt;}
.h10{height:46.291667pt;}
.h4{height:47.666667pt;}
.ha{height:50.500000pt;}
.h14{height:70.388233pt;}
.h13{height:70.388767pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.881867pt;}
.xb{left:95.172400pt;}
.xd{left:96.255067pt;}
.x13{left:99.779467pt;}
.x11{left:102.726933pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.x14{left:145.557867pt;}
.x5{left:266.834667pt;}
.xf{left:270.614133pt;}
.xc{left:281.952800pt;}
.x10{left:283.089067pt;}
.xe{left:298.965067pt;}
.x4{left:352.045067pt;}
.xa{left:579.974800pt;}
.x12{left:597.025200pt;}
.x9{left:607.865467pt;}
.x1{left:717.520267pt;}
}




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