
    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_25487ca2280b8ef29c7fe411.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_406db46c5ba5a0b8f36dca4d.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_4f76e1fd58b7c7fc0ab350ce.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5a9743b35b49c128a0505ffd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fba81b17e682c7f0a6b7e793.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9748ffb83003801a43870086.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5134d73631771b57be5a943e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_efea44f751c067dcf49e9c58.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.759766;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_3b7810864910174ead09d102.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_2212381069ddc4da27f228a4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8a46ccde7b96c9ce8a1a5c68.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.968262;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_e98179b3e4df7bf19b39e12b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.924378;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_111f250580c5e32db6349f94.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.720827;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);}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls9{letter-spacing:-5.886000px;}
.ls1a{letter-spacing:-1.026000px;}
.ls19{letter-spacing:-0.702000px;}
.ls3{letter-spacing:-0.691200px;}
.ls6{letter-spacing:-0.660000px;}
.lsa{letter-spacing:-0.486000px;}
.ls8{letter-spacing:-0.300000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.004800px;}
.ls5{letter-spacing:0.011400px;}
.ls2{letter-spacing:0.102000px;}
.ls1b{letter-spacing:0.240000px;}
.lsc{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.453600px;}
.lsb{letter-spacing:0.486000px;}
.ls18{letter-spacing:0.594000px;}
.ls7{letter-spacing:0.600000px;}
.ls17{letter-spacing:0.648000px;}
.ls16{letter-spacing:0.680400px;}
.ls15{letter-spacing:0.702000px;}
.ls10{letter-spacing:1.350000px;}
.lsf{letter-spacing:1.404000px;}
.lse{letter-spacing:1.409400px;}
.ls13{letter-spacing:1.420200px;}
.ls12{letter-spacing:1.458000px;}
.ls11{letter-spacing:1.463400px;}
.ls14{letter-spacing:1.479600px;}
.ls0{letter-spacing:43.181964px;}
.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;}
}
.wsc7{word-spacing:-17.928000px;}
.ws8a{word-spacing:-16.434000px;}
.ws111{word-spacing:-15.180000px;}
.ws3{word-spacing:-14.940000px;}
.ws8b{word-spacing:-14.880000px;}
.wsd9{word-spacing:-14.742000px;}
.ws99{word-spacing:-14.700000px;}
.wsf2{word-spacing:-14.094000px;}
.wsd6{word-spacing:-13.878000px;}
.wsd8{word-spacing:-13.845600px;}
.wsd7{word-spacing:-13.824000px;}
.ws5e{word-spacing:-13.392000px;}
.wsc9{word-spacing:-12.906000px;}
.wsf1{word-spacing:-12.690000px;}
.ws5{word-spacing:-12.366000px;}
.ws6{word-spacing:-12.150000px;}
.ws1{word-spacing:-10.896000px;}
.ws21{word-spacing:-10.800000px;}
.ws0{word-spacing:-9.618000px;}
.ws2{word-spacing:-9.201600px;}
.ws4{word-spacing:-8.675040px;}
.ws8c{word-spacing:-8.570100px;}
.wsc8{word-spacing:-7.506000px;}
.wsf3{word-spacing:-6.696000px;}
.wsba{word-spacing:-4.320000px;}
.wsb7{word-spacing:-3.180000px;}
.wsc6{word-spacing:-3.000000px;}
.ws9f{word-spacing:-2.940000px;}
.ws3f{word-spacing:-2.880000px;}
.ws41{word-spacing:-2.820000px;}
.ws9e{word-spacing:-2.760000px;}
.ws82{word-spacing:-2.700000px;}
.wsbc{word-spacing:-2.640000px;}
.ws29{word-spacing:-2.580000px;}
.ws81{word-spacing:-2.520000px;}
.ws65{word-spacing:-2.400000px;}
.ws27{word-spacing:-2.280000px;}
.wscf{word-spacing:-2.160000px;}
.ws40{word-spacing:-2.100000px;}
.ws44{word-spacing:-2.088000px;}
.wse2{word-spacing:-2.052000px;}
.wsa7{word-spacing:-1.980000px;}
.ws39{word-spacing:-1.740000px;}
.wsf{word-spacing:-1.728000px;}
.ws78{word-spacing:-1.680000px;}
.wsce{word-spacing:-1.620000px;}
.ws10d{word-spacing:-1.566000px;}
.ws49{word-spacing:-1.560000px;}
.wsa0{word-spacing:-1.440000px;}
.wsf0{word-spacing:-1.404000px;}
.ws28{word-spacing:-1.380000px;}
.wsef{word-spacing:-1.350000px;}
.ws8f{word-spacing:-1.320000px;}
.wsbf{word-spacing:-1.200000px;}
.wscb{word-spacing:-1.140000px;}
.ws107{word-spacing:-1.134000px;}
.ws89{word-spacing:-1.080000px;}
.ws66{word-spacing:-1.020000px;}
.ws10a{word-spacing:-0.810000px;}
.ws84{word-spacing:-0.780000px;}
.ws109{word-spacing:-0.702000px;}
.wse8{word-spacing:-0.648000px;}
.ws2e{word-spacing:-0.600000px;}
.ws20{word-spacing:-0.594000px;}
.ws1c{word-spacing:-0.540000px;}
.wsdb{word-spacing:-0.486000px;}
.ws6b{word-spacing:-0.420000px;}
.wse1{word-spacing:-0.378000px;}
.wsaf{word-spacing:-0.360000px;}
.ws10b{word-spacing:-0.324000px;}
.ws9a{word-spacing:-0.300000px;}
.wsd0{word-spacing:-0.240000px;}
.ws9{word-spacing:-0.216000px;}
.ws94{word-spacing:-0.180000px;}
.ws87{word-spacing:-0.120000px;}
.ws8{word-spacing:-0.102000px;}
.wsc4{word-spacing:-0.060000px;}
.ws7{word-spacing:0.000000px;}
.wsa3{word-spacing:0.060000px;}
.ws7d{word-spacing:0.120000px;}
.ws14{word-spacing:0.162000px;}
.ws50{word-spacing:0.180000px;}
.wsfd{word-spacing:0.216000px;}
.ws3b{word-spacing:0.240000px;}
.ws86{word-spacing:0.300000px;}
.ws10c{word-spacing:0.324000px;}
.ws3a{word-spacing:0.360000px;}
.ws11{word-spacing:0.378000px;}
.ws56{word-spacing:0.420000px;}
.ws2d{word-spacing:0.540000px;}
.ws32{word-spacing:0.600000px;}
.ws57{word-spacing:0.660000px;}
.wsa{word-spacing:0.691200px;}
.wsde{word-spacing:0.702000px;}
.wscd{word-spacing:0.720000px;}
.ws93{word-spacing:0.780000px;}
.ws97{word-spacing:0.900000px;}
.ws74{word-spacing:0.960000px;}
.ws36{word-spacing:1.020000px;}
.ws16{word-spacing:1.026000px;}
.ws71{word-spacing:1.080000px;}
.ws95{word-spacing:1.140000px;}
.ws3e{word-spacing:1.260000px;}
.ws80{word-spacing:1.320000px;}
.ws92{word-spacing:1.380000px;}
.ws22{word-spacing:1.440000px;}
.ws53{word-spacing:1.500000px;}
.ws18{word-spacing:1.566000px;}
.ws5d{word-spacing:1.620000px;}
.ws10f{word-spacing:1.674000px;}
.ws55{word-spacing:1.680000px;}
.ws33{word-spacing:1.740000px;}
.wse7{word-spacing:1.782000px;}
.ws6d{word-spacing:1.860000px;}
.wsf4{word-spacing:1.890000px;}
.ws51{word-spacing:1.920000px;}
.ws46{word-spacing:1.980000px;}
.wsf5{word-spacing:2.052000px;}
.ws91{word-spacing:2.160000px;}
.wsdc{word-spacing:2.268000px;}
.wsea{word-spacing:2.322000px;}
.ws23{word-spacing:2.340000px;}
.wsc{word-spacing:2.376000px;}
.ws3c{word-spacing:2.400000px;}
.wsa1{word-spacing:2.460000px;}
.wsb9{word-spacing:2.580000px;}
.ws2b{word-spacing:2.640000px;}
.ws52{word-spacing:2.700000px;}
.ws19{word-spacing:2.754000px;}
.ws6e{word-spacing:2.760000px;}
.ws7a{word-spacing:2.820000px;}
.ws112{word-spacing:2.862000px;}
.ws77{word-spacing:2.880000px;}
.wse3{word-spacing:2.916000px;}
.ws4c{word-spacing:2.940000px;}
.wsdd{word-spacing:2.970000px;}
.ws73{word-spacing:3.000000px;}
.ws13{word-spacing:3.024000px;}
.wsd3{word-spacing:3.078000px;}
.wsb5{word-spacing:3.120000px;}
.wsa9{word-spacing:3.180000px;}
.wse{word-spacing:3.240000px;}
.ws2f{word-spacing:3.300000px;}
.wsd{word-spacing:3.348000px;}
.wsca{word-spacing:3.360000px;}
.ws12{word-spacing:3.402000px;}
.ws2a{word-spacing:3.420000px;}
.wse6{word-spacing:3.510000px;}
.ws70{word-spacing:3.540000px;}
.wse0{word-spacing:3.564000px;}
.ws25{word-spacing:3.600000px;}
.wsb8{word-spacing:3.660000px;}
.ws9b{word-spacing:3.720000px;}
.ws6a{word-spacing:3.780000px;}
.ws106{word-spacing:3.834000px;}
.wsee{word-spacing:3.888000px;}
.ws63{word-spacing:3.960000px;}
.ws17{word-spacing:3.996000px;}
.ws67{word-spacing:4.050000px;}
.ws85{word-spacing:4.080000px;}
.wsaa{word-spacing:4.200000px;}
.ws79{word-spacing:4.260000px;}
.wsa5{word-spacing:4.320000px;}
.wse9{word-spacing:4.374000px;}
.ws6c{word-spacing:4.380000px;}
.ws4e{word-spacing:4.500000px;}
.ws2c{word-spacing:4.620000px;}
.ws7f{word-spacing:4.740000px;}
.wse5{word-spacing:4.752000px;}
.ws34{word-spacing:4.800000px;}
.ws114{word-spacing:4.860000px;}
.ws98{word-spacing:4.920000px;}
.ws59{word-spacing:4.980000px;}
.ws5f{word-spacing:5.040000px;}
.wsf6{word-spacing:5.184000px;}
.wsb1{word-spacing:5.280000px;}
.ws108{word-spacing:5.292000px;}
.ws8e{word-spacing:5.340000px;}
.ws60{word-spacing:5.460000px;}
.ws7c{word-spacing:5.640000px;}
.wsc1{word-spacing:5.700000px;}
.wsb0{word-spacing:5.760000px;}
.ws54{word-spacing:5.820000px;}
.wsbe{word-spacing:5.880000px;}
.wse4{word-spacing:5.886000px;}
.ws61{word-spacing:5.940000px;}
.ws58{word-spacing:6.000000px;}
.wsed{word-spacing:6.048000px;}
.ws5a{word-spacing:6.060000px;}
.ws38{word-spacing:6.120000px;}
.wsf8{word-spacing:6.156000px;}
.ws47{word-spacing:6.180000px;}
.wsfa{word-spacing:6.318000px;}
.ws35{word-spacing:6.360000px;}
.wsdf{word-spacing:6.372000px;}
.ws43{word-spacing:6.420000px;}
.ws101{word-spacing:6.426000px;}
.wsfe{word-spacing:6.588000px;}
.wsc5{word-spacing:6.660000px;}
.wsb{word-spacing:6.804000px;}
.ws1b{word-spacing:6.900000px;}
.ws88{word-spacing:6.960000px;}
.ws30{word-spacing:7.020000px;}
.wsb6{word-spacing:7.140000px;}
.ws26{word-spacing:7.200000px;}
.ws9c{word-spacing:7.260000px;}
.wsd1{word-spacing:7.290000px;}
.ws7b{word-spacing:7.320000px;}
.wscc{word-spacing:7.380000px;}
.wsa8{word-spacing:7.440000px;}
.wsf7{word-spacing:7.506000px;}
.ws110{word-spacing:7.614000px;}
.ws8d{word-spacing:7.620000px;}
.wsb4{word-spacing:7.680000px;}
.ws4d{word-spacing:7.800000px;}
.wsc2{word-spacing:7.860000px;}
.wsc0{word-spacing:7.920000px;}
.wsa6{word-spacing:7.980000px;}
.ws37{word-spacing:8.040000px;}
.ws10{word-spacing:8.046000px;}
.ws68{word-spacing:8.100000px;}
.ws15{word-spacing:8.262000px;}
.ws62{word-spacing:8.280000px;}
.ws1a{word-spacing:8.340000px;}
.wsac{word-spacing:8.400000px;}
.wsa2{word-spacing:8.460000px;}
.ws100{word-spacing:8.478000px;}
.ws75{word-spacing:8.520000px;}
.wsf9{word-spacing:8.532000px;}
.ws72{word-spacing:8.580000px;}
.ws64{word-spacing:8.640000px;}
.ws4b{word-spacing:8.700000px;}
.wsff{word-spacing:8.802000px;}
.ws7e{word-spacing:8.880000px;}
.wsc3{word-spacing:8.940000px;}
.ws83{word-spacing:9.000000px;}
.ws1d{word-spacing:9.120000px;}
.wsab{word-spacing:9.240000px;}
.wsfb{word-spacing:9.288000px;}
.ws31{word-spacing:9.360000px;}
.wsa4{word-spacing:9.420000px;}
.ws9d{word-spacing:9.480000px;}
.ws3d{word-spacing:9.540000px;}
.ws6f{word-spacing:9.600000px;}
.ws45{word-spacing:9.840000px;}
.ws1e{word-spacing:9.960000px;}
.wsad{word-spacing:10.020000px;}
.wsd2{word-spacing:10.098000px;}
.ws24{word-spacing:10.140000px;}
.ws69{word-spacing:10.260000px;}
.ws4a{word-spacing:10.440000px;}
.wsae{word-spacing:10.860000px;}
.ws10e{word-spacing:11.448000px;}
.ws1f{word-spacing:11.640000px;}
.ws48{word-spacing:11.760000px;}
.wsbb{word-spacing:12.300000px;}
.ws4f{word-spacing:13.140000px;}
.wsec{word-spacing:13.230000px;}
.wsbd{word-spacing:13.620000px;}
.ws76{word-spacing:13.980000px;}
.ws102{word-spacing:13.986000px;}
.ws5b{word-spacing:14.340000px;}
.wsd4{word-spacing:14.364000px;}
.wsfc{word-spacing:14.580000px;}
.wsda{word-spacing:14.634000px;}
.ws42{word-spacing:15.240000px;}
.wseb{word-spacing:15.444000px;}
.ws103{word-spacing:17.496000px;}
.ws90{word-spacing:17.700000px;}
.wsb2{word-spacing:19.380000px;}
.wsd5{word-spacing:21.384000px;}
.ws5c{word-spacing:22.020000px;}
.wsb3{word-spacing:23.340000px;}
.ws113{word-spacing:24.786000px;}
.ws105{word-spacing:28.998000px;}
.ws104{word-spacing:32.076000px;}
.ws96{word-spacing:201.300000px;}
._1d{margin-left:-201.547800px;}
._1e{margin-left:-174.138000px;}
._9{margin-left:-11.952000px;}
._1f{margin-left:-9.055800px;}
._4{margin-left:-6.803400px;}
._2{margin-left:-4.987800px;}
._1{margin-left:-3.957600px;}
._3{margin-left:-2.346000px;}
._0{margin-left:-1.336200px;}
._6{width:1.832400px;}
._a{width:2.892000px;}
._c{width:4.872000px;}
._e{width:6.044400px;}
._7{width:7.057800px;}
._d{width:8.086200px;}
._8{width:9.142200px;}
._20{width:14.706600px;}
._b{width:32.940000px;}
._5{width:36.369600px;}
._1b{width:43.470000px;}
._15{width:53.892000px;}
._19{width:57.942000px;}
._1a{width:68.998200px;}
._13{width:144.382200px;}
._11{width:156.802200px;}
._12{width:166.776000px;}
._16{width:177.660000px;}
._18{width:186.408000px;}
._f{width:191.052000px;}
._1c{width:210.708000px;}
._17{width:219.834000px;}
._10{width:247.684200px;}
._14{width:405.054000px;}
.fc1{color:rgb(85,159,152);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:34.980000px;}
.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;}
.y38{bottom:71.212050px;}
.y39{bottom:75.040050px;}
.y119{bottom:113.030850px;}
.y6b{bottom:113.078700px;}
.y8f{bottom:113.078850px;}
.ya{bottom:117.208650px;}
.y2b{bottom:117.212700px;}
.y9d{bottom:119.101950px;}
.y109{bottom:119.143050px;}
.y10b{bottom:119.369100px;}
.ye9{bottom:119.467800px;}
.yd8{bottom:121.098000px;}
.y9{bottom:131.605050px;}
.y148{bottom:133.796700px;}
.y118{bottom:134.036850px;}
.y6a{bottom:134.078700px;}
.y8e{bottom:134.078850px;}
.yd7{bottom:137.595000px;}
.y2a{bottom:138.212700px;}
.y9c{bottom:138.906450px;}
.y8{bottom:146.001450px;}
.yd6{bottom:154.092000px;}
.y147{bottom:154.802700px;}
.y117{bottom:155.042850px;}
.y107{bottom:155.078550px;}
.y69{bottom:155.078700px;}
.y8d{bottom:155.078850px;}
.y29{bottom:159.212700px;}
.y7{bottom:160.397850px;}
.y146{bottom:175.808700px;}
.y116{bottom:176.048850px;}
.y106{bottom:176.078550px;}
.y68{bottom:176.078700px;}
.y8c{bottom:176.078850px;}
.yc9{bottom:177.798000px;}
.y28{bottom:180.212700px;}
.yc8{bottom:194.295000px;}
.y145{bottom:196.814700px;}
.y115{bottom:197.054850px;}
.y165{bottom:197.072850px;}
.y105{bottom:197.078550px;}
.y67{bottom:197.078700px;}
.y8b{bottom:197.078850px;}
.ye7{bottom:199.223100px;}
.y27{bottom:201.212700px;}
.y35{bottom:203.438400px;}
.yc7{bottom:210.792000px;}
.yd2{bottom:210.819000px;}
.y144{bottom:217.820700px;}
.y114{bottom:218.060850px;}
.y104{bottom:218.078550px;}
.y66{bottom:218.078700px;}
.y8a{bottom:218.078850px;}
.y34{bottom:221.433900px;}
.y26{bottom:222.212700px;}
.yc2{bottom:227.275500px;}
.yc6{bottom:227.289000px;}
.ycd{bottom:227.302500px;}
.yd1{bottom:227.316000px;}
.ye6{bottom:231.513600px;}
.y143{bottom:238.826700px;}
.y113{bottom:239.066850px;}
.y103{bottom:239.078550px;}
.y65{bottom:239.078700px;}
.y89{bottom:239.078850px;}
.y33{bottom:239.429400px;}
.y25{bottom:243.212700px;}
.yc1{bottom:243.772500px;}
.yc5{bottom:243.786000px;}
.ycc{bottom:243.799500px;}
.yd0{bottom:243.813000px;}
.yd5{bottom:243.826500px;}
.y164{bottom:244.529400px;}
.y32{bottom:257.424900px;}
.y142{bottom:259.832700px;}
.y112{bottom:260.072850px;}
.y102{bottom:260.078550px;}
.y64{bottom:260.078700px;}
.y88{bottom:260.078850px;}
.yc0{bottom:260.269500px;}
.yc4{bottom:260.283000px;}
.ycb{bottom:260.296500px;}
.ycf{bottom:260.310000px;}
.yd4{bottom:260.323500px;}
.ye5{bottom:263.811000px;}
.y31{bottom:275.420400px;}
.y24{bottom:276.759300px;}
.ybf{bottom:276.766500px;}
.yc3{bottom:276.780000px;}
.yca{bottom:276.793500px;}
.yce{bottom:276.807000px;}
.yd3{bottom:276.820500px;}
.y141{bottom:280.838700px;}
.y163{bottom:281.072850px;}
.y101{bottom:281.078550px;}
.y63{bottom:281.078700px;}
.y87{bottom:281.078850px;}
.y30{bottom:293.415900px;}
.ybe{bottom:300.499500px;}
.y140{bottom:301.844700px;}
.y100{bottom:302.078550px;}
.y62{bottom:302.078700px;}
.y86{bottom:302.078850px;}
.y111{bottom:316.441050px;}
.ybd{bottom:316.996500px;}
.y10d{bottom:319.381200px;}
.y13f{bottom:322.850700px;}
.yff{bottom:323.078550px;}
.y61{bottom:323.078700px;}
.y85{bottom:323.078850px;}
.y2f{bottom:328.421400px;}
.y162{bottom:328.529400px;}
.ybc{bottom:333.493500px;}
.y13e{bottom:343.856700px;}
.yfe{bottom:344.078550px;}
.y60{bottom:344.078700px;}
.y84{bottom:344.078850px;}
.y2e{bottom:346.421400px;}
.y23{bottom:348.783000px;}
.ybb{bottom:357.793500px;}
.y2d{bottom:364.421400px;}
.y13d{bottom:364.862700px;}
.y161{bottom:365.072850px;}
.yfd{bottom:365.078550px;}
.y5f{bottom:365.078700px;}
.y83{bottom:365.078850px;}
.yba{bottom:374.290500px;}
.y10e{bottom:377.681100px;}
.y2c{bottom:382.421400px;}
.y13c{bottom:385.868700px;}
.yfc{bottom:386.078550px;}
.y5e{bottom:386.078700px;}
.y82{bottom:386.078850px;}
.y22{bottom:389.748300px;}
.yb9{bottom:390.787500px;}
.y13b{bottom:406.874700px;}
.yfb{bottom:407.078550px;}
.y5d{bottom:407.078700px;}
.y81{bottom:407.078850px;}
.y21{bottom:409.552800px;}
.y160{bottom:412.529400px;}
.yb5{bottom:414.507000px;}
.y13a{bottom:427.880700px;}
.yfa{bottom:428.078550px;}
.y5c{bottom:428.078700px;}
.y80{bottom:428.078850px;}
.y20{bottom:429.357300px;}
.yb4{bottom:431.004000px;}
.yb8{bottom:431.017500px;}
.yb3{bottom:447.501000px;}
.yb7{bottom:447.514500px;}
.y139{bottom:448.886700px;}
.y5b{bottom:449.078700px;}
.ydf{bottom:449.078850px;}
.y1f{bottom:449.161800px;}
.yf9{bottom:463.440750px;}
.y7f{bottom:463.441050px;}
.yb2{bottom:463.998000px;}
.yb6{bottom:464.011500px;}
.y1e{bottom:468.966300px;}
.y138{bottom:469.892700px;}
.y5a{bottom:470.078700px;}
.yde{bottom:470.078850px;}
.y15f{bottom:475.529400px;}
.ye4{bottom:486.087060px;}
.yaa{bottom:487.704000px;}
.yae{bottom:487.717500px;}
.y1d{bottom:488.770800px;}
.y10f{bottom:490.461000px;}
.y137{bottom:490.898700px;}
.y59{bottom:491.078700px;}
.ydd{bottom:491.078850px;}
.ya9{bottom:504.201000px;}
.yad{bottom:504.214500px;}
.yb1{bottom:504.228000px;}
.y1c{bottom:508.575300px;}
.y136{bottom:511.904700px;}
.y15e{bottom:512.066850px;}
.yf8{bottom:512.078550px;}
.y58{bottom:512.078700px;}
.y7e{bottom:512.078850px;}
.ya8{bottom:520.698000px;}
.yac{bottom:520.711500px;}
.yb0{bottom:520.725000px;}
.y110{bottom:526.440900px;}
.ydc{bottom:526.441050px;}
.y1b{bottom:528.379800px;}
.y135{bottom:532.910700px;}
.y15d{bottom:533.072850px;}
.yf7{bottom:533.078550px;}
.y57{bottom:533.078700px;}
.y7d{bottom:533.078850px;}
.ya7{bottom:537.195000px;}
.yab{bottom:537.208500px;}
.yaf{bottom:537.222000px;}
.y1a{bottom:548.184300px;}
.ye3{bottom:549.087060px;}
.y134{bottom:553.916700px;}
.yf6{bottom:554.078550px;}
.y56{bottom:554.078700px;}
.y7c{bottom:554.078850px;}
.ya6{bottom:561.603000px;}
.y19{bottom:567.988800px;}
.ye2{bottom:570.087060px;}
.y133{bottom:574.922700px;}
.yf5{bottom:575.078550px;}
.y55{bottom:575.078700px;}
.y7b{bottom:575.078850px;}
.ya5{bottom:578.100000px;}
.y15c{bottom:580.529400px;}
.y18{bottom:587.793300px;}
.ye1{bottom:591.087060px;}
.y132{bottom:595.928700px;}
.yf4{bottom:596.078550px;}
.y54{bottom:596.078700px;}
.y7a{bottom:596.078850px;}
.y17{bottom:607.597800px;}
.ya4{bottom:609.706950px;}
.y131{bottom:616.934700px;}
.yf3{bottom:617.078550px;}
.y53{bottom:617.078700px;}
.y79{bottom:617.078850px;}
.y16{bottom:627.402300px;}
.y130{bottom:637.940700px;}
.yf2{bottom:638.078550px;}
.y52{bottom:638.078700px;}
.y78{bottom:638.078850px;}
.ye8{bottom:642.740250px;}
.y15b{bottom:643.529400px;}
.y108{bottom:645.675900px;}
.y15{bottom:647.206800px;}
.y10a{bottom:653.954850px;}
.y12f{bottom:658.946700px;}
.yf1{bottom:659.078550px;}
.y51{bottom:659.078700px;}
.y77{bottom:659.078850px;}
.y14{bottom:667.011300px;}
.ye0{bottom:673.441050px;}
.y12e{bottom:679.952700px;}
.yf0{bottom:680.078550px;}
.y50{bottom:680.078700px;}
.y76{bottom:680.078850px;}
.y13{bottom:686.815800px;}
.y9b{bottom:694.441050px;}
.y12d{bottom:700.958700px;}
.yef{bottom:701.078550px;}
.y4f{bottom:701.078700px;}
.y75{bottom:701.078850px;}
.y12{bottom:706.620300px;}
.y15a{bottom:706.937100px;}
.y12c{bottom:721.964700px;}
.yee{bottom:722.078550px;}
.y4e{bottom:722.078700px;}
.y74{bottom:722.078850px;}
.y11{bottom:726.424800px;}
.y159{bottom:736.441050px;}
.y12b{bottom:742.970700px;}
.yed{bottom:743.078550px;}
.y4d{bottom:743.078700px;}
.y73{bottom:743.078850px;}
.y10{bottom:746.229300px;}
.y12a{bottom:763.976700px;}
.yec{bottom:764.078550px;}
.y4c{bottom:764.078700px;}
.y72{bottom:764.078850px;}
.yf{bottom:766.033800px;}
.y129{bottom:784.982700px;}
.y158{bottom:784.982850px;}
.yeb{bottom:785.078550px;}
.y4b{bottom:785.078700px;}
.y71{bottom:785.078850px;}
.ye{bottom:785.838300px;}
.yd{bottom:805.642800px;}
.y128{bottom:805.988700px;}
.y157{bottom:805.988850px;}
.y4a{bottom:806.078700px;}
.y70{bottom:806.078850px;}
.yea{bottom:820.440900px;}
.y127{bottom:826.994700px;}
.y156{bottom:826.994850px;}
.y49{bottom:827.078700px;}
.y6f{bottom:827.078850px;}
.yc{bottom:836.740200px;}
.ya3{bottom:841.441050px;}
.y126{bottom:848.000700px;}
.y155{bottom:848.000850px;}
.y171{bottom:848.024850px;}
.y48{bottom:848.078700px;}
.y6e{bottom:848.078850px;}
.y125{bottom:869.006700px;}
.y154{bottom:869.006850px;}
.y170{bottom:869.030850px;}
.y47{bottom:869.078700px;}
.y9a{bottom:869.078850px;}
.y6d{bottom:882.513600px;}
.y124{bottom:890.012700px;}
.y153{bottom:890.012850px;}
.y16f{bottom:890.036850px;}
.y46{bottom:890.078700px;}
.y99{bottom:890.078850px;}
.ydb{bottom:907.508550px;}
.y123{bottom:911.018700px;}
.y152{bottom:911.018850px;}
.y16e{bottom:911.042850px;}
.y45{bottom:911.078700px;}
.y98{bottom:911.078850px;}
.y6c{bottom:914.811000px;}
.y6{bottom:925.266750px;}
.y122{bottom:932.024700px;}
.y151{bottom:932.024850px;}
.y16d{bottom:932.048850px;}
.y44{bottom:932.078700px;}
.y97{bottom:932.078850px;}
.y5{bottom:943.266750px;}
.y121{bottom:953.030700px;}
.y150{bottom:953.030850px;}
.y16c{bottom:953.054850px;}
.y43{bottom:953.078700px;}
.y96{bottom:953.078850px;}
.yda{bottom:967.436550px;}
.y120{bottom:974.036700px;}
.y14f{bottom:974.036850px;}
.y16b{bottom:974.060850px;}
.y42{bottom:974.078700px;}
.ya2{bottom:974.078850px;}
.y4{bottom:978.274800px;}
.y95{bottom:988.436550px;}
.yd9{bottom:988.441050px;}
.y11f{bottom:995.042700px;}
.y14e{bottom:995.042850px;}
.y16a{bottom:995.066850px;}
.y41{bottom:995.078700px;}
.ya1{bottom:995.078850px;}
.y94{bottom:1009.441050px;}
.y11e{bottom:1016.048700px;}
.y14d{bottom:1016.048850px;}
.y169{bottom:1016.072850px;}
.y40{bottom:1016.078700px;}
.ya0{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y11d{bottom:1037.054700px;}
.y14c{bottom:1037.054850px;}
.y3f{bottom:1037.078700px;}
.y9f{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.y11c{bottom:1058.060700px;}
.y14b{bottom:1058.060850px;}
.y3e{bottom:1058.078700px;}
.y93{bottom:1058.078850px;}
.y168{bottom:1075.281300px;}
.y11b{bottom:1079.066700px;}
.y14a{bottom:1079.066850px;}
.y3d{bottom:1079.078700px;}
.y92{bottom:1079.078850px;}
.y167{bottom:1096.281300px;}
.y11a{bottom:1100.072700px;}
.y149{bottom:1100.072850px;}
.y3c{bottom:1100.078700px;}
.y91{bottom:1100.078850px;}
.yb{bottom:1109.815500px;}
.y10c{bottom:1112.695800px;}
.y9e{bottom:1114.821750px;}
.y3b{bottom:1121.078700px;}
.y90{bottom:1121.078850px;}
.y166{bottom:1128.578850px;}
.y37{bottom:1159.189500px;}
.y36{bottom:1178.689500px;}
.y3a{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h12{height:42.609375px;}
.h8{height:43.004883px;}
.he{height:43.057617px;}
.hb{height:43.321289px;}
.ha{height:43.875000px;}
.h19{height:43.899000px;}
.h15{height:45.209444px;}
.h9{height:47.343750px;}
.h10{height:48.134766px;}
.hd{height:48.750000px;}
.h13{height:50.176758px;}
.h11{height:52.078125px;}
.h14{height:52.948242px;}
.h4{height:53.625000px;}
.hc{height:56.812500px;}
.h1a{height:57.339844px;}
.h18{height:65.176604px;}
.h17{height:68.101926px;}
.h16{height:68.717160px;}
.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;}
.xa{left:107.063850px;}
.xd{left:108.289650px;}
.x13{left:110.687250px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.xe{left:139.280250px;}
.x14{left:222.858750px;}
.xf{left:258.093750px;}
.x4{left:300.189000px;}
.xb{left:317.196900px;}
.x1a{left:326.087370px;}
.xc{left:334.206900px;}
.x15{left:340.389750px;}
.x10{left:374.639250px;}
.x3{left:396.050700px;}
.x16{left:468.572250px;}
.x8{left:506.344650px;}
.x17{left:572.292750px;}
.x11{left:593.231250px;}
.x18{left:645.935250px;}
.x12{left:666.036750px;}
.x9{left:688.684650px;}
.x19{left:728.960250px;}
.x1b{left:737.539920px;}
.x1c{left:758.171595px;}
.x1d{left:778.326015px;}
.x1{left:801.157500px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls9{letter-spacing:-5.232000pt;}
.ls1a{letter-spacing:-0.912000pt;}
.ls19{letter-spacing:-0.624000pt;}
.ls3{letter-spacing:-0.614400pt;}
.ls6{letter-spacing:-0.586667pt;}
.lsa{letter-spacing:-0.432000pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.004267pt;}
.ls5{letter-spacing:0.010133pt;}
.ls2{letter-spacing:0.090667pt;}
.ls1b{letter-spacing:0.213333pt;}
.lsc{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.403200pt;}
.lsb{letter-spacing:0.432000pt;}
.ls18{letter-spacing:0.528000pt;}
.ls7{letter-spacing:0.533333pt;}
.ls17{letter-spacing:0.576000pt;}
.ls16{letter-spacing:0.604800pt;}
.ls15{letter-spacing:0.624000pt;}
.ls10{letter-spacing:1.200000pt;}
.lsf{letter-spacing:1.248000pt;}
.lse{letter-spacing:1.252800pt;}
.ls13{letter-spacing:1.262400pt;}
.ls12{letter-spacing:1.296000pt;}
.ls11{letter-spacing:1.300800pt;}
.ls14{letter-spacing:1.315200pt;}
.ls0{letter-spacing:38.383968pt;}
.wsc7{word-spacing:-15.936000pt;}
.ws8a{word-spacing:-14.608000pt;}
.ws111{word-spacing:-13.493333pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8b{word-spacing:-13.226667pt;}
.wsd9{word-spacing:-13.104000pt;}
.ws99{word-spacing:-13.066667pt;}
.wsf2{word-spacing:-12.528000pt;}
.wsd6{word-spacing:-12.336000pt;}
.wsd8{word-spacing:-12.307200pt;}
.wsd7{word-spacing:-12.288000pt;}
.ws5e{word-spacing:-11.904000pt;}
.wsc9{word-spacing:-11.472000pt;}
.wsf1{word-spacing:-11.280000pt;}
.ws5{word-spacing:-10.992000pt;}
.ws6{word-spacing:-10.800000pt;}
.ws1{word-spacing:-9.685333pt;}
.ws21{word-spacing:-9.600000pt;}
.ws0{word-spacing:-8.549333pt;}
.ws2{word-spacing:-8.179200pt;}
.ws4{word-spacing:-7.711147pt;}
.ws8c{word-spacing:-7.617867pt;}
.wsc8{word-spacing:-6.672000pt;}
.wsf3{word-spacing:-5.952000pt;}
.wsba{word-spacing:-3.840000pt;}
.wsb7{word-spacing:-2.826667pt;}
.wsc6{word-spacing:-2.666667pt;}
.ws9f{word-spacing:-2.613333pt;}
.ws3f{word-spacing:-2.560000pt;}
.ws41{word-spacing:-2.506667pt;}
.ws9e{word-spacing:-2.453333pt;}
.ws82{word-spacing:-2.400000pt;}
.wsbc{word-spacing:-2.346667pt;}
.ws29{word-spacing:-2.293333pt;}
.ws81{word-spacing:-2.240000pt;}
.ws65{word-spacing:-2.133333pt;}
.ws27{word-spacing:-2.026667pt;}
.wscf{word-spacing:-1.920000pt;}
.ws40{word-spacing:-1.866667pt;}
.ws44{word-spacing:-1.856000pt;}
.wse2{word-spacing:-1.824000pt;}
.wsa7{word-spacing:-1.760000pt;}
.ws39{word-spacing:-1.546667pt;}
.wsf{word-spacing:-1.536000pt;}
.ws78{word-spacing:-1.493333pt;}
.wsce{word-spacing:-1.440000pt;}
.ws10d{word-spacing:-1.392000pt;}
.ws49{word-spacing:-1.386667pt;}
.wsa0{word-spacing:-1.280000pt;}
.wsf0{word-spacing:-1.248000pt;}
.ws28{word-spacing:-1.226667pt;}
.wsef{word-spacing:-1.200000pt;}
.ws8f{word-spacing:-1.173333pt;}
.wsbf{word-spacing:-1.066667pt;}
.wscb{word-spacing:-1.013333pt;}
.ws107{word-spacing:-1.008000pt;}
.ws89{word-spacing:-0.960000pt;}
.ws66{word-spacing:-0.906667pt;}
.ws10a{word-spacing:-0.720000pt;}
.ws84{word-spacing:-0.693333pt;}
.ws109{word-spacing:-0.624000pt;}
.wse8{word-spacing:-0.576000pt;}
.ws2e{word-spacing:-0.533333pt;}
.ws20{word-spacing:-0.528000pt;}
.ws1c{word-spacing:-0.480000pt;}
.wsdb{word-spacing:-0.432000pt;}
.ws6b{word-spacing:-0.373333pt;}
.wse1{word-spacing:-0.336000pt;}
.wsaf{word-spacing:-0.320000pt;}
.ws10b{word-spacing:-0.288000pt;}
.ws9a{word-spacing:-0.266667pt;}
.wsd0{word-spacing:-0.213333pt;}
.ws9{word-spacing:-0.192000pt;}
.ws94{word-spacing:-0.160000pt;}
.ws87{word-spacing:-0.106667pt;}
.ws8{word-spacing:-0.090667pt;}
.wsc4{word-spacing:-0.053333pt;}
.ws7{word-spacing:0.000000pt;}
.wsa3{word-spacing:0.053333pt;}
.ws7d{word-spacing:0.106667pt;}
.ws14{word-spacing:0.144000pt;}
.ws50{word-spacing:0.160000pt;}
.wsfd{word-spacing:0.192000pt;}
.ws3b{word-spacing:0.213333pt;}
.ws86{word-spacing:0.266667pt;}
.ws10c{word-spacing:0.288000pt;}
.ws3a{word-spacing:0.320000pt;}
.ws11{word-spacing:0.336000pt;}
.ws56{word-spacing:0.373333pt;}
.ws2d{word-spacing:0.480000pt;}
.ws32{word-spacing:0.533333pt;}
.ws57{word-spacing:0.586667pt;}
.wsa{word-spacing:0.614400pt;}
.wsde{word-spacing:0.624000pt;}
.wscd{word-spacing:0.640000pt;}
.ws93{word-spacing:0.693333pt;}
.ws97{word-spacing:0.800000pt;}
.ws74{word-spacing:0.853333pt;}
.ws36{word-spacing:0.906667pt;}
.ws16{word-spacing:0.912000pt;}
.ws71{word-spacing:0.960000pt;}
.ws95{word-spacing:1.013333pt;}
.ws3e{word-spacing:1.120000pt;}
.ws80{word-spacing:1.173333pt;}
.ws92{word-spacing:1.226667pt;}
.ws22{word-spacing:1.280000pt;}
.ws53{word-spacing:1.333333pt;}
.ws18{word-spacing:1.392000pt;}
.ws5d{word-spacing:1.440000pt;}
.ws10f{word-spacing:1.488000pt;}
.ws55{word-spacing:1.493333pt;}
.ws33{word-spacing:1.546667pt;}
.wse7{word-spacing:1.584000pt;}
.ws6d{word-spacing:1.653333pt;}
.wsf4{word-spacing:1.680000pt;}
.ws51{word-spacing:1.706667pt;}
.ws46{word-spacing:1.760000pt;}
.wsf5{word-spacing:1.824000pt;}
.ws91{word-spacing:1.920000pt;}
.wsdc{word-spacing:2.016000pt;}
.wsea{word-spacing:2.064000pt;}
.ws23{word-spacing:2.080000pt;}
.wsc{word-spacing:2.112000pt;}
.ws3c{word-spacing:2.133333pt;}
.wsa1{word-spacing:2.186667pt;}
.wsb9{word-spacing:2.293333pt;}
.ws2b{word-spacing:2.346667pt;}
.ws52{word-spacing:2.400000pt;}
.ws19{word-spacing:2.448000pt;}
.ws6e{word-spacing:2.453333pt;}
.ws7a{word-spacing:2.506667pt;}
.ws112{word-spacing:2.544000pt;}
.ws77{word-spacing:2.560000pt;}
.wse3{word-spacing:2.592000pt;}
.ws4c{word-spacing:2.613333pt;}
.wsdd{word-spacing:2.640000pt;}
.ws73{word-spacing:2.666667pt;}
.ws13{word-spacing:2.688000pt;}
.wsd3{word-spacing:2.736000pt;}
.wsb5{word-spacing:2.773333pt;}
.wsa9{word-spacing:2.826667pt;}
.wse{word-spacing:2.880000pt;}
.ws2f{word-spacing:2.933333pt;}
.wsd{word-spacing:2.976000pt;}
.wsca{word-spacing:2.986667pt;}
.ws12{word-spacing:3.024000pt;}
.ws2a{word-spacing:3.040000pt;}
.wse6{word-spacing:3.120000pt;}
.ws70{word-spacing:3.146667pt;}
.wse0{word-spacing:3.168000pt;}
.ws25{word-spacing:3.200000pt;}
.wsb8{word-spacing:3.253333pt;}
.ws9b{word-spacing:3.306667pt;}
.ws6a{word-spacing:3.360000pt;}
.ws106{word-spacing:3.408000pt;}
.wsee{word-spacing:3.456000pt;}
.ws63{word-spacing:3.520000pt;}
.ws17{word-spacing:3.552000pt;}
.ws67{word-spacing:3.600000pt;}
.ws85{word-spacing:3.626667pt;}
.wsaa{word-spacing:3.733333pt;}
.ws79{word-spacing:3.786667pt;}
.wsa5{word-spacing:3.840000pt;}
.wse9{word-spacing:3.888000pt;}
.ws6c{word-spacing:3.893333pt;}
.ws4e{word-spacing:4.000000pt;}
.ws2c{word-spacing:4.106667pt;}
.ws7f{word-spacing:4.213333pt;}
.wse5{word-spacing:4.224000pt;}
.ws34{word-spacing:4.266667pt;}
.ws114{word-spacing:4.320000pt;}
.ws98{word-spacing:4.373333pt;}
.ws59{word-spacing:4.426667pt;}
.ws5f{word-spacing:4.480000pt;}
.wsf6{word-spacing:4.608000pt;}
.wsb1{word-spacing:4.693333pt;}
.ws108{word-spacing:4.704000pt;}
.ws8e{word-spacing:4.746667pt;}
.ws60{word-spacing:4.853333pt;}
.ws7c{word-spacing:5.013333pt;}
.wsc1{word-spacing:5.066667pt;}
.wsb0{word-spacing:5.120000pt;}
.ws54{word-spacing:5.173333pt;}
.wsbe{word-spacing:5.226667pt;}
.wse4{word-spacing:5.232000pt;}
.ws61{word-spacing:5.280000pt;}
.ws58{word-spacing:5.333333pt;}
.wsed{word-spacing:5.376000pt;}
.ws5a{word-spacing:5.386667pt;}
.ws38{word-spacing:5.440000pt;}
.wsf8{word-spacing:5.472000pt;}
.ws47{word-spacing:5.493333pt;}
.wsfa{word-spacing:5.616000pt;}
.ws35{word-spacing:5.653333pt;}
.wsdf{word-spacing:5.664000pt;}
.ws43{word-spacing:5.706667pt;}
.ws101{word-spacing:5.712000pt;}
.wsfe{word-spacing:5.856000pt;}
.wsc5{word-spacing:5.920000pt;}
.wsb{word-spacing:6.048000pt;}
.ws1b{word-spacing:6.133333pt;}
.ws88{word-spacing:6.186667pt;}
.ws30{word-spacing:6.240000pt;}
.wsb6{word-spacing:6.346667pt;}
.ws26{word-spacing:6.400000pt;}
.ws9c{word-spacing:6.453333pt;}
.wsd1{word-spacing:6.480000pt;}
.ws7b{word-spacing:6.506667pt;}
.wscc{word-spacing:6.560000pt;}
.wsa8{word-spacing:6.613333pt;}
.wsf7{word-spacing:6.672000pt;}
.ws110{word-spacing:6.768000pt;}
.ws8d{word-spacing:6.773333pt;}
.wsb4{word-spacing:6.826667pt;}
.ws4d{word-spacing:6.933333pt;}
.wsc2{word-spacing:6.986667pt;}
.wsc0{word-spacing:7.040000pt;}
.wsa6{word-spacing:7.093333pt;}
.ws37{word-spacing:7.146667pt;}
.ws10{word-spacing:7.152000pt;}
.ws68{word-spacing:7.200000pt;}
.ws15{word-spacing:7.344000pt;}
.ws62{word-spacing:7.360000pt;}
.ws1a{word-spacing:7.413333pt;}
.wsac{word-spacing:7.466667pt;}
.wsa2{word-spacing:7.520000pt;}
.ws100{word-spacing:7.536000pt;}
.ws75{word-spacing:7.573333pt;}
.wsf9{word-spacing:7.584000pt;}
.ws72{word-spacing:7.626667pt;}
.ws64{word-spacing:7.680000pt;}
.ws4b{word-spacing:7.733333pt;}
.wsff{word-spacing:7.824000pt;}
.ws7e{word-spacing:7.893333pt;}
.wsc3{word-spacing:7.946667pt;}
.ws83{word-spacing:8.000000pt;}
.ws1d{word-spacing:8.106667pt;}
.wsab{word-spacing:8.213333pt;}
.wsfb{word-spacing:8.256000pt;}
.ws31{word-spacing:8.320000pt;}
.wsa4{word-spacing:8.373333pt;}
.ws9d{word-spacing:8.426667pt;}
.ws3d{word-spacing:8.480000pt;}
.ws6f{word-spacing:8.533333pt;}
.ws45{word-spacing:8.746667pt;}
.ws1e{word-spacing:8.853333pt;}
.wsad{word-spacing:8.906667pt;}
.wsd2{word-spacing:8.976000pt;}
.ws24{word-spacing:9.013333pt;}
.ws69{word-spacing:9.120000pt;}
.ws4a{word-spacing:9.280000pt;}
.wsae{word-spacing:9.653333pt;}
.ws10e{word-spacing:10.176000pt;}
.ws1f{word-spacing:10.346667pt;}
.ws48{word-spacing:10.453333pt;}
.wsbb{word-spacing:10.933333pt;}
.ws4f{word-spacing:11.680000pt;}
.wsec{word-spacing:11.760000pt;}
.wsbd{word-spacing:12.106667pt;}
.ws76{word-spacing:12.426667pt;}
.ws102{word-spacing:12.432000pt;}
.ws5b{word-spacing:12.746667pt;}
.wsd4{word-spacing:12.768000pt;}
.wsfc{word-spacing:12.960000pt;}
.wsda{word-spacing:13.008000pt;}
.ws42{word-spacing:13.546667pt;}
.wseb{word-spacing:13.728000pt;}
.ws103{word-spacing:15.552000pt;}
.ws90{word-spacing:15.733333pt;}
.wsb2{word-spacing:17.226667pt;}
.wsd5{word-spacing:19.008000pt;}
.ws5c{word-spacing:19.573333pt;}
.wsb3{word-spacing:20.746667pt;}
.ws113{word-spacing:22.032000pt;}
.ws105{word-spacing:25.776000pt;}
.ws104{word-spacing:28.512000pt;}
.ws96{word-spacing:178.933333pt;}
._1d{margin-left:-179.153600pt;}
._1e{margin-left:-154.789333pt;}
._9{margin-left:-10.624000pt;}
._1f{margin-left:-8.049600pt;}
._4{margin-left:-6.047467pt;}
._2{margin-left:-4.433600pt;}
._1{margin-left:-3.517867pt;}
._3{margin-left:-2.085333pt;}
._0{margin-left:-1.187733pt;}
._6{width:1.628800pt;}
._a{width:2.570667pt;}
._c{width:4.330667pt;}
._e{width:5.372800pt;}
._7{width:6.273600pt;}
._d{width:7.187733pt;}
._8{width:8.126400pt;}
._20{width:13.072533pt;}
._b{width:29.280000pt;}
._5{width:32.328533pt;}
._1b{width:38.640000pt;}
._15{width:47.904000pt;}
._19{width:51.504000pt;}
._1a{width:61.331733pt;}
._13{width:128.339733pt;}
._11{width:139.379733pt;}
._12{width:148.245333pt;}
._16{width:157.920000pt;}
._18{width:165.696000pt;}
._f{width:169.824000pt;}
._1c{width:187.296000pt;}
._17{width:195.408000pt;}
._10{width:220.163733pt;}
._14{width:360.048000pt;}
.fs9{font-size:31.093333pt;}
.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;}
.y38{bottom:63.299600pt;}
.y39{bottom:66.702267pt;}
.y119{bottom:100.471867pt;}
.y6b{bottom:100.514400pt;}
.y8f{bottom:100.514533pt;}
.ya{bottom:104.185467pt;}
.y2b{bottom:104.189067pt;}
.y9d{bottom:105.868400pt;}
.y109{bottom:105.904933pt;}
.y10b{bottom:106.105867pt;}
.ye9{bottom:106.193600pt;}
.yd8{bottom:107.642667pt;}
.y9{bottom:116.982267pt;}
.y148{bottom:118.930400pt;}
.y118{bottom:119.143867pt;}
.y6a{bottom:119.181067pt;}
.y8e{bottom:119.181200pt;}
.yd7{bottom:122.306667pt;}
.y2a{bottom:122.855733pt;}
.y9c{bottom:123.472400pt;}
.y8{bottom:129.779067pt;}
.yd6{bottom:136.970667pt;}
.y147{bottom:137.602400pt;}
.y117{bottom:137.815867pt;}
.y107{bottom:137.847600pt;}
.y69{bottom:137.847733pt;}
.y8d{bottom:137.847867pt;}
.y29{bottom:141.522400pt;}
.y7{bottom:142.575867pt;}
.y146{bottom:156.274400pt;}
.y116{bottom:156.487867pt;}
.y106{bottom:156.514267pt;}
.y68{bottom:156.514400pt;}
.y8c{bottom:156.514533pt;}
.yc9{bottom:158.042667pt;}
.y28{bottom:160.189067pt;}
.yc8{bottom:172.706667pt;}
.y145{bottom:174.946400pt;}
.y115{bottom:175.159867pt;}
.y165{bottom:175.175867pt;}
.y105{bottom:175.180933pt;}
.y67{bottom:175.181067pt;}
.y8b{bottom:175.181200pt;}
.ye7{bottom:177.087200pt;}
.y27{bottom:178.855733pt;}
.y35{bottom:180.834133pt;}
.yc7{bottom:187.370667pt;}
.yd2{bottom:187.394667pt;}
.y144{bottom:193.618400pt;}
.y114{bottom:193.831867pt;}
.y104{bottom:193.847600pt;}
.y66{bottom:193.847733pt;}
.y8a{bottom:193.847867pt;}
.y34{bottom:196.830133pt;}
.y26{bottom:197.522400pt;}
.yc2{bottom:202.022667pt;}
.yc6{bottom:202.034667pt;}
.ycd{bottom:202.046667pt;}
.yd1{bottom:202.058667pt;}
.ye6{bottom:205.789867pt;}
.y143{bottom:212.290400pt;}
.y113{bottom:212.503867pt;}
.y103{bottom:212.514267pt;}
.y65{bottom:212.514400pt;}
.y89{bottom:212.514533pt;}
.y33{bottom:212.826133pt;}
.y25{bottom:216.189067pt;}
.yc1{bottom:216.686667pt;}
.yc5{bottom:216.698667pt;}
.ycc{bottom:216.710667pt;}
.yd0{bottom:216.722667pt;}
.yd5{bottom:216.734667pt;}
.y164{bottom:217.359467pt;}
.y32{bottom:228.822133pt;}
.y142{bottom:230.962400pt;}
.y112{bottom:231.175867pt;}
.y102{bottom:231.180933pt;}
.y64{bottom:231.181067pt;}
.y88{bottom:231.181200pt;}
.yc0{bottom:231.350667pt;}
.yc4{bottom:231.362667pt;}
.ycb{bottom:231.374667pt;}
.ycf{bottom:231.386667pt;}
.yd4{bottom:231.398667pt;}
.ye5{bottom:234.498667pt;}
.y31{bottom:244.818133pt;}
.y24{bottom:246.008267pt;}
.ybf{bottom:246.014667pt;}
.yc3{bottom:246.026667pt;}
.yca{bottom:246.038667pt;}
.yce{bottom:246.050667pt;}
.yd3{bottom:246.062667pt;}
.y141{bottom:249.634400pt;}
.y163{bottom:249.842533pt;}
.y101{bottom:249.847600pt;}
.y63{bottom:249.847733pt;}
.y87{bottom:249.847867pt;}
.y30{bottom:260.814133pt;}
.ybe{bottom:267.110667pt;}
.y140{bottom:268.306400pt;}
.y100{bottom:268.514267pt;}
.y62{bottom:268.514400pt;}
.y86{bottom:268.514533pt;}
.y111{bottom:281.280933pt;}
.ybd{bottom:281.774667pt;}
.y10d{bottom:283.894400pt;}
.y13f{bottom:286.978400pt;}
.yff{bottom:287.180933pt;}
.y61{bottom:287.181067pt;}
.y85{bottom:287.181200pt;}
.y2f{bottom:291.930133pt;}
.y162{bottom:292.026133pt;}
.ybc{bottom:296.438667pt;}
.y13e{bottom:305.650400pt;}
.yfe{bottom:305.847600pt;}
.y60{bottom:305.847733pt;}
.y84{bottom:305.847867pt;}
.y2e{bottom:307.930133pt;}
.y23{bottom:310.029333pt;}
.ybb{bottom:318.038667pt;}
.y2d{bottom:323.930133pt;}
.y13d{bottom:324.322400pt;}
.y161{bottom:324.509200pt;}
.yfd{bottom:324.514267pt;}
.y5f{bottom:324.514400pt;}
.y83{bottom:324.514533pt;}
.yba{bottom:332.702667pt;}
.y10e{bottom:335.716533pt;}
.y2c{bottom:339.930133pt;}
.y13c{bottom:342.994400pt;}
.yfc{bottom:343.180933pt;}
.y5e{bottom:343.181067pt;}
.y82{bottom:343.181200pt;}
.y22{bottom:346.442933pt;}
.yb9{bottom:347.366667pt;}
.y13b{bottom:361.666400pt;}
.yfb{bottom:361.847600pt;}
.y5d{bottom:361.847733pt;}
.y81{bottom:361.847867pt;}
.y21{bottom:364.046933pt;}
.y160{bottom:366.692800pt;}
.yb5{bottom:368.450667pt;}
.y13a{bottom:380.338400pt;}
.yfa{bottom:380.514267pt;}
.y5c{bottom:380.514400pt;}
.y80{bottom:380.514533pt;}
.y20{bottom:381.650933pt;}
.yb4{bottom:383.114667pt;}
.yb8{bottom:383.126667pt;}
.yb3{bottom:397.778667pt;}
.yb7{bottom:397.790667pt;}
.y139{bottom:399.010400pt;}
.y5b{bottom:399.181067pt;}
.ydf{bottom:399.181200pt;}
.y1f{bottom:399.254933pt;}
.yf9{bottom:411.947333pt;}
.y7f{bottom:411.947600pt;}
.yb2{bottom:412.442667pt;}
.yb6{bottom:412.454667pt;}
.y1e{bottom:416.858933pt;}
.y138{bottom:417.682400pt;}
.y5a{bottom:417.847733pt;}
.yde{bottom:417.847867pt;}
.y15f{bottom:422.692800pt;}
.ye4{bottom:432.077387pt;}
.yaa{bottom:433.514667pt;}
.yae{bottom:433.526667pt;}
.y1d{bottom:434.462933pt;}
.y10f{bottom:435.965333pt;}
.y137{bottom:436.354400pt;}
.y59{bottom:436.514400pt;}
.ydd{bottom:436.514533pt;}
.ya9{bottom:448.178667pt;}
.yad{bottom:448.190667pt;}
.yb1{bottom:448.202667pt;}
.y1c{bottom:452.066933pt;}
.y136{bottom:455.026400pt;}
.y15e{bottom:455.170533pt;}
.yf8{bottom:455.180933pt;}
.y58{bottom:455.181067pt;}
.y7e{bottom:455.181200pt;}
.ya8{bottom:462.842667pt;}
.yac{bottom:462.854667pt;}
.yb0{bottom:462.866667pt;}
.y110{bottom:467.947467pt;}
.ydc{bottom:467.947600pt;}
.y1b{bottom:469.670933pt;}
.y135{bottom:473.698400pt;}
.y15d{bottom:473.842533pt;}
.yf7{bottom:473.847600pt;}
.y57{bottom:473.847733pt;}
.y7d{bottom:473.847867pt;}
.ya7{bottom:477.506667pt;}
.yab{bottom:477.518667pt;}
.yaf{bottom:477.530667pt;}
.y1a{bottom:487.274933pt;}
.ye3{bottom:488.077387pt;}
.y134{bottom:492.370400pt;}
.yf6{bottom:492.514267pt;}
.y56{bottom:492.514400pt;}
.y7c{bottom:492.514533pt;}
.ya6{bottom:499.202667pt;}
.y19{bottom:504.878933pt;}
.ye2{bottom:506.744053pt;}
.y133{bottom:511.042400pt;}
.yf5{bottom:511.180933pt;}
.y55{bottom:511.181067pt;}
.y7b{bottom:511.181200pt;}
.ya5{bottom:513.866667pt;}
.y15c{bottom:516.026133pt;}
.y18{bottom:522.482933pt;}
.ye1{bottom:525.410720pt;}
.y132{bottom:529.714400pt;}
.yf4{bottom:529.847600pt;}
.y54{bottom:529.847733pt;}
.y7a{bottom:529.847867pt;}
.y17{bottom:540.086933pt;}
.ya4{bottom:541.961733pt;}
.y131{bottom:548.386400pt;}
.yf3{bottom:548.514267pt;}
.y53{bottom:548.514400pt;}
.y79{bottom:548.514533pt;}
.y16{bottom:557.690933pt;}
.y130{bottom:567.058400pt;}
.yf2{bottom:567.180933pt;}
.y52{bottom:567.181067pt;}
.y78{bottom:567.181200pt;}
.ye8{bottom:571.324667pt;}
.y15b{bottom:572.026133pt;}
.y108{bottom:573.934133pt;}
.y15{bottom:575.294933pt;}
.y10a{bottom:581.293200pt;}
.y12f{bottom:585.730400pt;}
.yf1{bottom:585.847600pt;}
.y51{bottom:585.847733pt;}
.y77{bottom:585.847867pt;}
.y14{bottom:592.898933pt;}
.ye0{bottom:598.614267pt;}
.y12e{bottom:604.402400pt;}
.yf0{bottom:604.514267pt;}
.y50{bottom:604.514400pt;}
.y76{bottom:604.514533pt;}
.y13{bottom:610.502933pt;}
.y9b{bottom:617.280933pt;}
.y12d{bottom:623.074400pt;}
.yef{bottom:623.180933pt;}
.y4f{bottom:623.181067pt;}
.y75{bottom:623.181200pt;}
.y12{bottom:628.106933pt;}
.y15a{bottom:628.388533pt;}
.y12c{bottom:641.746400pt;}
.yee{bottom:641.847600pt;}
.y4e{bottom:641.847733pt;}
.y74{bottom:641.847867pt;}
.y11{bottom:645.710933pt;}
.y159{bottom:654.614267pt;}
.y12b{bottom:660.418400pt;}
.yed{bottom:660.514267pt;}
.y4d{bottom:660.514400pt;}
.y73{bottom:660.514533pt;}
.y10{bottom:663.314933pt;}
.y12a{bottom:679.090400pt;}
.yec{bottom:679.180933pt;}
.y4c{bottom:679.181067pt;}
.y72{bottom:679.181200pt;}
.yf{bottom:680.918933pt;}
.y129{bottom:697.762400pt;}
.y158{bottom:697.762533pt;}
.yeb{bottom:697.847600pt;}
.y4b{bottom:697.847733pt;}
.y71{bottom:697.847867pt;}
.ye{bottom:698.522933pt;}
.yd{bottom:716.126933pt;}
.y128{bottom:716.434400pt;}
.y157{bottom:716.434533pt;}
.y4a{bottom:716.514400pt;}
.y70{bottom:716.514533pt;}
.yea{bottom:729.280800pt;}
.y127{bottom:735.106400pt;}
.y156{bottom:735.106533pt;}
.y49{bottom:735.181067pt;}
.y6f{bottom:735.181200pt;}
.yc{bottom:743.769067pt;}
.ya3{bottom:747.947600pt;}
.y126{bottom:753.778400pt;}
.y155{bottom:753.778533pt;}
.y171{bottom:753.799867pt;}
.y48{bottom:753.847733pt;}
.y6e{bottom:753.847867pt;}
.y125{bottom:772.450400pt;}
.y154{bottom:772.450533pt;}
.y170{bottom:772.471867pt;}
.y47{bottom:772.514400pt;}
.y9a{bottom:772.514533pt;}
.y6d{bottom:784.456533pt;}
.y124{bottom:791.122400pt;}
.y153{bottom:791.122533pt;}
.y16f{bottom:791.143867pt;}
.y46{bottom:791.181067pt;}
.y99{bottom:791.181200pt;}
.ydb{bottom:806.674267pt;}
.y123{bottom:809.794400pt;}
.y152{bottom:809.794533pt;}
.y16e{bottom:809.815867pt;}
.y45{bottom:809.847733pt;}
.y98{bottom:809.847867pt;}
.y6c{bottom:813.165333pt;}
.y6{bottom:822.459333pt;}
.y122{bottom:828.466400pt;}
.y151{bottom:828.466533pt;}
.y16d{bottom:828.487867pt;}
.y44{bottom:828.514400pt;}
.y97{bottom:828.514533pt;}
.y5{bottom:838.459333pt;}
.y121{bottom:847.138400pt;}
.y150{bottom:847.138533pt;}
.y16c{bottom:847.159867pt;}
.y43{bottom:847.181067pt;}
.y96{bottom:847.181200pt;}
.yda{bottom:859.943600pt;}
.y120{bottom:865.810400pt;}
.y14f{bottom:865.810533pt;}
.y16b{bottom:865.831867pt;}
.y42{bottom:865.847733pt;}
.ya2{bottom:865.847867pt;}
.y4{bottom:869.577600pt;}
.y95{bottom:878.610267pt;}
.yd9{bottom:878.614267pt;}
.y11f{bottom:884.482400pt;}
.y14e{bottom:884.482533pt;}
.y16a{bottom:884.503867pt;}
.y41{bottom:884.514400pt;}
.ya1{bottom:884.514533pt;}
.y94{bottom:897.280933pt;}
.y11e{bottom:903.154400pt;}
.y14d{bottom:903.154533pt;}
.y169{bottom:903.175867pt;}
.y40{bottom:903.181067pt;}
.ya0{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y11d{bottom:921.826400pt;}
.y14c{bottom:921.826533pt;}
.y3f{bottom:921.847733pt;}
.y9f{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.y11c{bottom:940.498400pt;}
.y14b{bottom:940.498533pt;}
.y3e{bottom:940.514400pt;}
.y93{bottom:940.514533pt;}
.y168{bottom:955.805600pt;}
.y11b{bottom:959.170400pt;}
.y14a{bottom:959.170533pt;}
.y3d{bottom:959.181067pt;}
.y92{bottom:959.181200pt;}
.y167{bottom:974.472267pt;}
.y11a{bottom:977.842400pt;}
.y149{bottom:977.842533pt;}
.y3c{bottom:977.847733pt;}
.y91{bottom:977.847867pt;}
.yb{bottom:986.502667pt;}
.y10c{bottom:989.062933pt;}
.y9e{bottom:990.952667pt;}
.y3b{bottom:996.514400pt;}
.y90{bottom:996.514533pt;}
.y166{bottom:1003.181200pt;}
.y37{bottom:1030.390667pt;}
.y36{bottom:1047.724000pt;}
.y3a{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h12{height:37.875000pt;}
.h8{height:38.226562pt;}
.he{height:38.273438pt;}
.hb{height:38.507812pt;}
.ha{height:39.000000pt;}
.h19{height:39.021333pt;}
.h15{height:40.186173pt;}
.h9{height:42.083333pt;}
.h10{height:42.786458pt;}
.hd{height:43.333333pt;}
.h13{height:44.601562pt;}
.h11{height:46.291667pt;}
.h14{height:47.065104pt;}
.h4{height:47.666667pt;}
.hc{height:50.500000pt;}
.h1a{height:50.968750pt;}
.h18{height:57.934759pt;}
.h17{height:60.535045pt;}
.h16{height:61.081920pt;}
.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;}
.xa{left:95.167867pt;}
.xd{left:96.257467pt;}
.x13{left:98.388667pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.xe{left:123.804667pt;}
.x14{left:198.096667pt;}
.xf{left:229.416667pt;}
.x4{left:266.834667pt;}
.xb{left:281.952800pt;}
.x1a{left:289.855440pt;}
.xc{left:297.072800pt;}
.x15{left:302.568667pt;}
.x10{left:333.012667pt;}
.x3{left:352.045067pt;}
.x16{left:416.508667pt;}
.x8{left:450.084133pt;}
.x17{left:508.704667pt;}
.x11{left:527.316667pt;}
.x18{left:574.164667pt;}
.x12{left:592.032667pt;}
.x9{left:612.164133pt;}
.x19{left:647.964667pt;}
.x1b{left:655.591040pt;}
.x1c{left:673.930307pt;}
.x1d{left:691.845347pt;}
.x1{left:712.140000pt;}
}




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