
    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_e4accef982c0f729e8465ad6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f25a70acd069d8f35ba2d797.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.988281;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_cfbe4a4218b433195ce017c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_05e193997627f971d0e257dd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959961;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_bb36f50ee36ec122bf4bceea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_200f259cabd6f38012079ac3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_4ee208c09b16181fc31eb861.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_f47ee4c19a0d3b109a3a3d93.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_68bce1519dfc8a3a6f372c99.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.988281;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_61d7d5addb918fcba7342cbd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_9c72967df7078e756172bdd9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-40.320000px;}
.v7{vertical-align:-26.640000px;}
.v6{vertical-align:-15.840000px;}
.v1{vertical-align:-13.680000px;}
.v4{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.960000px;}
.v5{vertical-align:33.120000px;}
.v3{vertical-align:54.000000px;}
.ls18{letter-spacing:-1.218000px;}
.ls1b{letter-spacing:-1.068000px;}
.ls12{letter-spacing:-0.858000px;}
.ls4e{letter-spacing:-0.714000px;}
.ls42{letter-spacing:-0.696000px;}
.lsb{letter-spacing:-0.600000px;}
.ls31{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.535800px;}
.ls1c{letter-spacing:-0.501000px;}
.ls9{letter-spacing:-0.374400px;}
.ls10{letter-spacing:-0.348600px;}
.ls16{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.187200px;}
.ls47{letter-spacing:-0.147000px;}
.ls13{letter-spacing:-0.138000px;}
.lsf{letter-spacing:-0.135600px;}
.ls3b{letter-spacing:-0.115200px;}
.ls53{letter-spacing:-0.097800px;}
.ls11{letter-spacing:-0.086400px;}
.ls1d{letter-spacing:-0.057600px;}
.lsa{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.006480px;}
.ls38{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.023040px;}
.ls17{letter-spacing:0.037440px;}
.ls3e{letter-spacing:0.084240px;}
.ls43{letter-spacing:0.118200px;}
.ls52{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.144000px;}
.ls34{letter-spacing:0.149760px;}
.ls33{letter-spacing:0.158400px;}
.ls3d{letter-spacing:0.168600px;}
.ls3{letter-spacing:0.172800px;}
.ls4d{letter-spacing:0.179280px;}
.ls19{letter-spacing:0.184200px;}
.ls27{letter-spacing:0.184320px;}
.ls44{letter-spacing:0.222000px;}
.ls50{letter-spacing:0.223800px;}
.ls41{letter-spacing:0.273600px;}
.ls4b{letter-spacing:0.319680px;}
.lsd{letter-spacing:0.328320px;}
.ls8{letter-spacing:0.345600px;}
.ls46{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.371400px;}
.ls40{letter-spacing:0.374400px;}
.ls4f{letter-spacing:0.375000px;}
.ls23{letter-spacing:0.394560px;}
.ls3a{letter-spacing:0.394800px;}
.ls4c{letter-spacing:0.726000px;}
.ls39{letter-spacing:0.726480px;}
.ls51{letter-spacing:0.732000px;}
.ls3c{letter-spacing:0.936000px;}
.ls49{letter-spacing:1.080000px;}
.ls1f{letter-spacing:2.520000px;}
.ls22{letter-spacing:3.254400px;}
.ls25{letter-spacing:3.947760px;}
.ls26{letter-spacing:3.974400px;}
.ls5{letter-spacing:4.492800px;}
.ls32{letter-spacing:4.667760px;}
.ls4a{letter-spacing:8.586720px;}
.ls4{letter-spacing:8.812800px;}
.ls24{letter-spacing:9.011520px;}
.ls6{letter-spacing:10.252800px;}
.ls37{letter-spacing:11.171520px;}
.ls20{letter-spacing:17.058240px;}
.ls2f{letter-spacing:18.347760px;}
.ls2d{letter-spacing:18.467760px;}
.ls21{letter-spacing:19.067760px;}
.ls35{letter-spacing:21.947760px;}
.ls36{letter-spacing:22.667760px;}
.ls2c{letter-spacing:35.429040px;}
.ls2{letter-spacing:36.892800px;}
.ls45{letter-spacing:41.682720px;}
.ls29{letter-spacing:44.838720px;}
.ls30{letter-spacing:51.989040px;}
.lse{letter-spacing:66.611520px;}
.ls3f{letter-spacing:66.960000px;}
.ls2e{letter-spacing:94.469040px;}
.ls7{letter-spacing:845.741280px;}
.ls2b{letter-spacing:899.087520px;}
.ls1e{letter-spacing:1044.527520px;}
.ls2a{letter-spacing:1073.327520px;}
.ls28{letter-spacing:1131.647520px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws13{word-spacing:-66.240000px;}
.ws16{word-spacing:-51.641280px;}
.ws14{word-spacing:-48.240000px;}
.ws1f{word-spacing:-48.173760px;}
.ws20{word-spacing:-48.053760px;}
.ws15{word-spacing:-48.041280px;}
.ws21{word-spacing:-47.453760px;}
.ws19{word-spacing:-38.880000px;}
.ws1d{word-spacing:-29.865600px;}
.ws18{word-spacing:-26.265600px;}
.ws1c{word-spacing:-26.145600px;}
.ws1a{word-spacing:-22.413600px;}
.ws1{word-spacing:-18.892800px;}
.ws1e{word-spacing:-18.743280px;}
.ws29{word-spacing:-18.622080px;}
.ws2c{word-spacing:-18.570480px;}
.ws4{word-spacing:-18.547200px;}
.wsf{word-spacing:-18.532680px;}
.ws1b{word-spacing:-18.492480px;}
.ws11{word-spacing:-18.385920px;}
.ws6{word-spacing:-18.371520px;}
.ws5{word-spacing:-18.348480px;}
.ws12{word-spacing:-18.290880px;}
.ws8{word-spacing:-18.262080px;}
.ws22{word-spacing:-18.233280px;}
.ws7{word-spacing:-18.212880px;}
.wsb{word-spacing:-18.210480px;}
.ws2{word-spacing:-18.172800px;}
.ws10{word-spacing:-18.161280px;}
.wsd{word-spacing:-18.060480px;}
.ws9{word-spacing:-17.999880px;}
.wsc{word-spacing:-17.812680px;}
.ws17{word-spacing:-17.772480px;}
.wse{word-spacing:-17.748480px;}
.ws25{word-spacing:-17.668800px;}
.ws2a{word-spacing:-17.652480px;}
.wsa{word-spacing:-17.490480px;}
.ws30{word-spacing:-17.285520px;}
.ws2b{word-spacing:-17.107200px;}
.ws2e{word-spacing:-16.928520px;}
.ws2f{word-spacing:-16.777320px;}
.ws23{word-spacing:-16.732800px;}
.ws24{word-spacing:-16.566480px;}
.ws28{word-spacing:-16.553520px;}
.ws31{word-spacing:-16.455720px;}
.ws2d{word-spacing:-16.406520px;}
.ws26{word-spacing:-15.926400px;}
.ws27{word-spacing:-15.924360px;}
.ws0{word-spacing:0.000000px;}
._23{margin-left:-6.930240px;}
._13{margin-left:-4.769760px;}
._12{margin-left:-3.668640px;}
._b{margin-left:-2.306400px;}
._1{margin-left:-1.258560px;}
._2{width:1.260000px;}
._16{width:3.251040px;}
._c{width:4.679040px;}
._15{width:5.919360px;}
._17{width:7.461120px;}
._a{width:9.008640px;}
._f{width:10.255200px;}
._6{width:11.459520px;}
._5{width:12.806400px;}
._11{width:14.374080px;}
._19{width:15.897600px;}
._1b{width:17.158320px;}
._2c{width:18.625920px;}
._18{width:19.659360px;}
._8{width:20.666880px;}
._9{width:21.756000px;}
._14{width:23.000640px;}
._1a{width:24.430560px;}
._7{width:26.164800px;}
._1d{width:27.450240px;}
._1c{width:28.483200px;}
._1e{width:29.675520px;}
._d{width:31.927680px;}
._e{width:33.750240px;}
._4{width:35.671680px;}
._3{width:36.906240px;}
._10{width:37.935360px;}
._27{width:39.896640px;}
._28{width:41.466240px;}
._21{width:42.923520px;}
._32{width:45.895680px;}
._39{width:50.796000px;}
._3a{width:52.353360px;}
._1f{width:55.774080px;}
._20{width:57.219360px;}
._0{width:66.611520px;}
._2f{width:93.057840px;}
._2e{width:94.122000px;}
._3b{width:102.512640px;}
._3c{width:103.575360px;}
._3d{width:105.098880px;}
._2b{width:132.263280px;}
._2a{width:133.326720px;}
._35{width:141.153120px;}
._36{width:142.577280px;}
._2d{width:156.750480px;}
._34{width:189.314640px;}
._33{width:190.574640px;}
._38{width:219.314160px;}
._37{width:220.335120px;}
._31{width:222.092640px;}
._30{width:223.203600px;}
._29{width:350.475120px;}
._26{width:813.923040px;}
._22{width:958.851840px;}
._25{width:988.891680px;}
._24{width:1046.259120px;}
.fc3{color:transparent;}
.fc1{color:rgb(54,95,145);}
.fc2{color:rgb(58,101,152);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fsc{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:48.240000px;}
.fsd{font-size:56.880000px;}
.fsa{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:2.520000px;}
.y122{bottom:3.060000px;}
.y10d{bottom:3.234000px;}
.y106{bottom:3.240000px;}
.y10a{bottom:3.420000px;}
.y103{bottom:13.140000px;}
.y145{bottom:13.320000px;}
.y121{bottom:20.520000px;}
.y11f{bottom:21.240000px;}
.y105{bottom:21.600000px;}
.y137{bottom:21.780000px;}
.y135{bottom:31.500000px;}
.y102{bottom:31.680000px;}
.y6{bottom:35.925007px;}
.y28{bottom:56.700000px;}
.y5{bottom:66.525004px;}
.y27{bottom:75.780000px;}
.y4{bottom:97.125005px;}
.y197{bottom:110.520000px;}
.y89{bottom:111.780000px;}
.y10f{bottom:114.660000px;}
.y15a{bottom:117.900000px;}
.y15c{bottom:120.960000px;}
.yd7{bottom:125.640000px;}
.y130{bottom:127.440000px;}
.y143{bottom:127.980000px;}
.y196{bottom:128.880000px;}
.y10e{bottom:131.220000px;}
.y88{bottom:131.940000px;}
.yd8{bottom:132.300000px;}
.y1b5{bottom:137.916000px;}
.y159{bottom:138.096000px;}
.y23{bottom:139.264499px;}
.y15b{bottom:141.156000px;}
.y12f{bottom:145.836000px;}
.y142{bottom:146.376000px;}
.yd6{bottom:147.456000px;}
.y163{bottom:149.256000px;}
.y10c{bottom:149.616000px;}
.y195{bottom:151.770000px;}
.y87{bottom:152.310000px;}
.y1b4{bottom:156.270000px;}
.y158{bottom:158.430000px;}
.y12e{bottom:160.950000px;}
.yac{bottom:161.490000px;}
.yd5{bottom:167.610000px;}
.y10b{bottom:167.970000px;}
.y194{bottom:170.130000px;}
.y86{bottom:172.470000px;}
.y1b3{bottom:174.630000px;}
.y157{bottom:178.590000px;}
.yab{bottom:181.650000px;}
.y162{bottom:185.970000px;}
.y109{bottom:186.330000px;}
.yd4{bottom:187.950000px;}
.y193{bottom:188.490000px;}
.y58{bottom:188.850000px;}
.y85{bottom:192.630000px;}
.y1a{bottom:196.933500px;}
.y1b2{bottom:197.490000px;}
.y156{bottom:198.750000px;}
.yaa{bottom:201.810000px;}
.y108{bottom:204.870000px;}
.yd3{bottom:208.110000px;}
.y161{bottom:208.830000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y192{bottom:211.350000px;}
.y84{bottom:212.970000px;}
.y1b1{bottom:215.850000px;}
.y57{bottom:216.570000px;}
.y155{bottom:220.710000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.ya9{bottom:222.150000px;}
.y107{bottom:223.230000px;}
.y160{bottom:227.190000px;}
.yd2{bottom:228.270000px;}
.y191{bottom:229.890000px;}
.y83{bottom:233.130000px;}
.y1b0{bottom:234.210000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y56{bottom:236.910000px;}
.y101{bottom:241.590000px;}
.ya8{bottom:242.310000px;}
.y15f{bottom:245.550000px;}
.y190{bottom:248.250000px;}
.y154{bottom:248.430000px;}
.yd1{bottom:248.610000px;}
.y82{bottom:253.470000px;}
.y55{bottom:257.070000px;}
.y1af{bottom:257.250000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y104{bottom:261.570000px;}
.ya7{bottom:262.650000px;}
.y15e{bottom:266.070000px;}
.y153{bottom:268.230000px;}
.yd0{bottom:268.770000px;}
.y18f{bottom:271.110000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y81{bottom:273.630000px;}
.y1ae{bottom:275.610000px;}
.y54{bottom:277.230000px;}
.ya6{bottom:282.810000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y152{bottom:286.770000px;}
.ycf{bottom:289.110000px;}
.y18e{bottom:289.470000px;}
.y80{bottom:293.790000px;}
.y1ad{bottom:293.970000px;}
.y53{bottom:295.410000px;}
.y151{bottom:301.890000px;}
.ya5{bottom:302.970000px;}
.y100{bottom:303.510000px;}
.y52{bottom:306.750000px;}
.y18d{bottom:307.830000px;}
.yce{bottom:309.270000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y7f{bottom:314.130000px;}
.y1ac{bottom:316.830000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.ya4{bottom:323.310000px;}
.yff{bottom:323.670000px;}
.y51{bottom:326.910000px;}
.ycd{bottom:329.430000px;}
.y18c{bottom:330.690000px;}
.y7e{bottom:334.290000px;}
.y1ab{bottom:335.190000px;}
.yfe{bottom:341.850000px;}
.ya3{bottom:343.470000px;}
.y50{bottom:347.250000px;}
.y11{bottom:348.133500px;}
.y18b{bottom:349.230000px;}
.ycc{bottom:349.770000px;}
.yfd{bottom:353.010000px;}
.y7d{bottom:354.630000px;}
.ycb{bottom:358.050000px;}
.y1aa{bottom:358.230000px;}
.ya2{bottom:363.810000px;}
.y4f{bottom:367.410000px;}
.y18a{bottom:372.090000px;}
.yfc{bottom:373.350000px;}
.y7c{bottom:374.790000px;}
.y1a9{bottom:376.590000px;}
.y12d{bottom:378.210000px;}
.y141{bottom:378.930000px;}
.yca{bottom:380.370000px;}
.ya1{bottom:383.970000px;}
.y10{bottom:386.785499px;}
.y4e{bottom:387.615000px;}
.y189{bottom:390.495000px;}
.yfb{bottom:393.555000px;}
.y7b{bottom:394.995000px;}
.y12c{bottom:398.415000px;}
.y140{bottom:399.315000px;}
.yc9{bottom:400.575000px;}
.ya0{bottom:404.175000px;}
.y4d{bottom:405.795000px;}
.yf{bottom:408.044999px;}
.y188{bottom:413.355000px;}
.yfa{bottom:413.895000px;}
.y7a{bottom:415.335000px;}
.y4c{bottom:417.135000px;}
.y1a8{bottom:417.855000px;}
.y12b{bottom:418.575000px;}
.y13f{bottom:419.475000px;}
.yc8{bottom:420.915000px;}
.y9f{bottom:424.515000px;}
.y187{bottom:431.715000px;}
.yf9{bottom:434.055000px;}
.y79{bottom:435.495000px;}
.y1a7{bottom:436.215000px;}
.y4b{bottom:437.295000px;}
.y12a{bottom:438.915000px;}
.y13e{bottom:439.275000px;}
.yc7{bottom:441.075000px;}
.y9e{bottom:444.675000px;}
.y186{bottom:450.255000px;}
.yf8{bottom:454.215000px;}
.y4a{bottom:455.475000px;}
.y78{bottom:455.655000px;}
.y13d{bottom:457.815000px;}
.y129{bottom:458.715000px;}
.y1a6{bottom:459.255000px;}
.yc6{bottom:461.235000px;}
.y9d{bottom:465.015000px;}
.y49{bottom:466.815000px;}
.y185{bottom:473.115000px;}
.y13c{bottom:474.375000px;}
.yf7{bottom:474.555000px;}
.y128{bottom:475.275000px;}
.y77{bottom:475.995000px;}
.y1a5{bottom:477.615000px;}
.yc5{bottom:481.575000px;}
.ye{bottom:484.864502px;}
.y9c{bottom:485.175000px;}
.y48{bottom:486.975000px;}
.y184{bottom:491.475000px;}
.y127{bottom:492.735000px;}
.yf6{bottom:494.715000px;}
.y1a4{bottom:495.975000px;}
.y76{bottom:496.155000px;}
.yc4{bottom:501.735000px;}
.yd{bottom:502.864502px;}
.y47{bottom:505.155000px;}
.y9b{bottom:505.335000px;}
.y126{bottom:510.195000px;}
.y13b{bottom:511.095000px;}
.y183{bottom:514.335000px;}
.yf5{bottom:515.055000px;}
.y46{bottom:516.495000px;}
.y1a3{bottom:518.835000px;}
.y150{bottom:519.195000px;}
.yc{bottom:520.864502px;}
.yc3{bottom:522.075000px;}
.y9a{bottom:525.675000px;}
.y125{bottom:527.655000px;}
.y13a{bottom:529.455000px;}
.y182{bottom:532.695000px;}
.yf4{bottom:535.215000px;}
.y45{bottom:536.655000px;}
.y1a2{bottom:537.195000px;}
.yb{bottom:538.864499px;}
.y14f{bottom:539.535000px;}
.yc2{bottom:542.235000px;}
.y124{bottom:545.295000px;}
.y99{bottom:545.835000px;}
.y139{bottom:547.995000px;}
.y44{bottom:554.835000px;}
.yf3{bottom:555.375000px;}
.y181{bottom:555.555000px;}
.y75{bottom:556.815000px;}
.ya{bottom:556.864499px;}
.y14e{bottom:559.695000px;}
.yc1{bottom:562.395000px;}
.y123{bottom:562.755000px;}
.y43{bottom:565.995000px;}
.y138{bottom:566.355000px;}
.y180{bottom:574.095000px;}
.yf2{bottom:575.715000px;}
.y74{bottom:577.155000px;}
.y1a1{bottom:578.595000px;}
.y14d{bottom:580.035000px;}
.y11e{bottom:580.215000px;}
.yc0{bottom:582.735000px;}
.y134{bottom:584.715000px;}
.y42{bottom:586.335000px;}
.y17f{bottom:592.455000px;}
.yf1{bottom:595.875000px;}
.y1a0{bottom:596.955000px;}
.y73{bottom:597.315000px;}
.y120{bottom:599.115000px;}
.y14c{bottom:599.835000px;}
.ybf{bottom:602.895000px;}
.y136{bottom:604.515000px;}
.y41{bottom:606.495000px;}
.y17e{bottom:615.315000px;}
.yf0{bottom:616.215000px;}
.y14b{bottom:616.395000px;}
.y72{bottom:617.655000px;}
.y98{bottom:619.275000px;}
.ybe{bottom:623.055000px;}
.y40{bottom:626.835000px;}
.y17d{bottom:633.675000px;}
.y14a{bottom:634.755000px;}
.yef{bottom:636.375000px;}
.y71{bottom:637.815000px;}
.y19f{bottom:638.175000px;}
.y11d{bottom:639.255000px;}
.ybd{bottom:643.425000px;}
.y9{bottom:645.510000px;}
.y133{bottom:646.485000px;}
.y3f{bottom:647.025000px;}
.y17c{bottom:652.065000px;}
.y149{bottom:653.325000px;}
.yee{bottom:656.565000px;}
.y70{bottom:658.005000px;}
.y11c{bottom:659.445000px;}
.ybc{bottom:663.765000px;}
.y8{bottom:666.771000px;}
.y132{bottom:666.825000px;}
.y3e{bottom:667.185000px;}
.y148{bottom:671.685000px;}
.y17b{bottom:674.925000px;}
.yed{bottom:676.905000px;}
.y6f{bottom:678.345000px;}
.y11b{bottom:679.785000px;}
.ybb{bottom:683.925000px;}
.y131{bottom:687.345000px;}
.y3d{bottom:687.525000px;}
.y147{bottom:690.045000px;}
.y17a{bottom:693.465000px;}
.yec{bottom:697.065000px;}
.y6e{bottom:698.505000px;}
.y11a{bottom:699.945000px;}
.y1ba{bottom:702.825000px;}
.yba{bottom:705.705000px;}
.y3c{bottom:707.685000px;}
.y146{bottom:708.405000px;}
.y179{bottom:711.825000px;}
.y19e{bottom:716.325000px;}
.yeb{bottom:717.225000px;}
.y6d{bottom:718.845000px;}
.y119{bottom:720.105000px;}
.y7{bottom:726.298500px;}
.yb9{bottom:726.585000px;}
.y144{bottom:726.765000px;}
.y3b{bottom:728.025000px;}
.y178{bottom:734.685000px;}
.yea{bottom:737.565000px;}
.y6c{bottom:739.005000px;}
.y118{bottom:740.445000px;}
.yb8{bottom:746.745000px;}
.y3a{bottom:748.185000px;}
.y3{bottom:752.599495px;}
.y177{bottom:753.045000px;}
.y1b9{bottom:757.545000px;}
.ye9{bottom:757.725000px;}
.y6b{bottom:759.165000px;}
.y117{bottom:760.605000px;}
.yb7{bottom:766.905000px;}
.y39{bottom:768.345000px;}
.y176{bottom:775.905000px;}
.ye8{bottom:778.065000px;}
.y6a{bottom:779.505000px;}
.y116{bottom:780.945000px;}
.yb6{bottom:787.245000px;}
.y38{bottom:788.685000px;}
.y1cc{bottom:792.285000px;}
.y175{bottom:794.265000px;}
.ye7{bottom:798.225000px;}
.y69{bottom:799.665000px;}
.y115{bottom:801.105000px;}
.y15d{bottom:801.285000px;}
.y37{bottom:806.865000px;}
.yb5{bottom:807.405000px;}
.y97{bottom:808.845000px;}
.y1cb{bottom:812.625000px;}
.y174{bottom:812.805000px;}
.y19d{bottom:817.305000px;}
.ye6{bottom:818.385000px;}
.y36{bottom:819.645000px;}
.y68{bottom:819.825000px;}
.y114{bottom:821.265000px;}
.yb4{bottom:827.745000px;}
.y96{bottom:829.185000px;}
.y1ca{bottom:832.785000px;}
.y173{bottom:835.665000px;}
.ye5{bottom:838.725000px;}
.y67{bottom:840.165000px;}
.y113{bottom:841.605000px;}
.y35{bottom:847.545000px;}
.yb3{bottom:847.905000px;}
.y95{bottom:849.345000px;}
.y1c9{bottom:852.945000px;}
.y172{bottom:854.025000px;}
.y1b8{bottom:858.525000px;}
.ye4{bottom:858.885000px;}
.y66{bottom:860.325000px;}
.y112{bottom:861.405000px;}
.y34{bottom:868.065000px;}
.y94{bottom:869.505000px;}
.y19c{bottom:872.385000px;}
.y1c8{bottom:873.285000px;}
.y171{bottom:876.885000px;}
.ye3{bottom:879.225000px;}
.y2{bottom:879.369000px;}
.y111{bottom:879.765000px;}
.y65{bottom:880.665000px;}
.yb2{bottom:888.405000px;}
.y93{bottom:889.845000px;}
.y33{bottom:890.745000px;}
.y1c7{bottom:891.465000px;}
.y110{bottom:894.930000px;}
.y170{bottom:895.290000px;}
.ye2{bottom:899.430000px;}
.y64{bottom:900.870000px;}
.y1c6{bottom:902.670000px;}
.yb1{bottom:908.610000px;}
.y92{bottom:910.050000px;}
.y16f{bottom:913.830000px;}
.y32{bottom:915.810000px;}
.y1b7{bottom:918.330000px;}
.ye1{bottom:919.590000px;}
.y63{bottom:921.030000px;}
.y1c5{bottom:923.010000px;}
.yb0{bottom:928.770000px;}
.y91{bottom:930.390000px;}
.y19b{bottom:932.190000px;}
.y16e{bottom:936.690000px;}
.y31{bottom:941.010000px;}
.y62{bottom:941.370000px;}
.ye0{bottom:941.550000px;}
.y1c4{bottom:943.170000px;}
.yaf{bottom:948.750000px;}
.y90{bottom:950.550000px;}
.y16d{bottom:955.050000px;}
.y61{bottom:961.530000px;}
.y1c3{bottom:963.330000px;}
.y1{bottom:966.726000px;}
.yae{bottom:967.110000px;}
.ydf{bottom:969.270000px;}
.y8f{bottom:970.710000px;}
.y16c{bottom:973.410000px;}
.y1b6{bottom:977.910000px;}
.y30{bottom:979.710000px;}
.y1c2{bottom:981.690000px;}
.y60{bottom:981.870000px;}
.yad{bottom:982.230000px;}
.yde{bottom:989.610000px;}
.y8e{bottom:991.050000px;}
.y19a{bottom:991.770000px;}
.y1c1{bottom:992.850000px;}
.y16b{bottom:996.270000px;}
.y5f{bottom:1002.030000px;}
.ydd{bottom:1009.770000px;}
.y8d{bottom:1011.210000px;}
.y1c0{bottom:1013.010000px;}
.y16a{bottom:1014.630000px;}
.y2f{bottom:1018.230000px;}
.y5e{bottom:1022.190000px;}
.ydc{bottom:1029.930000px;}
.y8c{bottom:1031.370000px;}
.y199{bottom:1033.170000px;}
.y1bf{bottom:1033.350000px;}
.y169{bottom:1037.670000px;}
.y5d{bottom:1042.530000px;}
.ydb{bottom:1050.270000px;}
.y8b{bottom:1051.710000px;}
.y1be{bottom:1053.510000px;}
.y168{bottom:1056.030000px;}
.y2e{bottom:1056.930000px;}
.y5c{bottom:1062.690000px;}
.yda{bottom:1070.430000px;}
.y8a{bottom:1071.870000px;}
.y1bd{bottom:1073.670000px;}
.y167{bottom:1074.390000px;}
.y5b{bottom:1083.030000px;}
.yd9{bottom:1090.590000px;}
.y2d{bottom:1092.210000px;}
.y198{bottom:1092.750000px;}
.y1bc{bottom:1094.010000px;}
.y166{bottom:1097.250000px;}
.y5a{bottom:1103.190000px;}
.y1bb{bottom:1112.190000px;}
.y2c{bottom:1112.370000px;}
.y165{bottom:1115.610000px;}
.y59{bottom:1124.970000px;}
.y2b{bottom:1132.530000px;}
.y164{bottom:1133.970000px;}
.y26{bottom:1152.900000px;}
.y25{bottom:1173.060000px;}
.y24{bottom:1193.400000px;}
.y29{bottom:1200.420000px;}
.h23{height:17.460000px;}
.h25{height:17.640000px;}
.h1d{height:18.360000px;}
.h1f{height:18.396000px;}
.h1e{height:18.540000px;}
.h29{height:18.576000px;}
.hd{height:19.080000px;}
.h13{height:22.739063px;}
.h12{height:23.595469px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h22{height:34.920000px;}
.h1c{height:36.720000px;}
.h28{height:36.936000px;}
.h21{height:42.771094px;}
.h19{height:42.916641px;}
.h24{height:44.381953px;}
.h1b{height:44.936719px;}
.h7{height:45.960000px;}
.h15{height:46.629141px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h14{height:49.680000px;}
.hb{height:51.685312px;}
.h2b{height:53.165391px;}
.h20{height:53.820000px;}
.hf{height:54.000000px;}
.h2{height:55.152000px;}
.h1a{height:56.700000px;}
.h27{height:56.736000px;}
.h16{height:58.930312px;}
.h2a{height:61.423863px;}
.h10{height:63.180000px;}
.hc{height:68.084282px;}
.h11{height:72.007031px;}
.h26{height:74.004654px;}
.h5{height:78.132000px;}
.h17{height:83.236641px;}
.h18{height:92.050312px;}
.he{height:94.746094px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.ha{height:1263.060000px;}
.w12{width:74.016000px;}
.wd{width:74.196000px;}
.wc{width:74.376000px;}
.wa{width:74.556000px;}
.w9{width:95.580000px;}
.wb{width:95.760000px;}
.w11{width:95.940000px;}
.w10{width:169.590000px;}
.w8{width:169.770000px;}
.wf{width:169.950000px;}
.w7{width:170.130000px;}
.w6{width:170.310000px;}
.we{width:170.490000px;}
.w2{width:637.794021px;}
.w5{width:723.930000px;}
.w0{width:892.912500px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.100000px;}
.x1f{left:9.180000px;}
.x15{left:14.040000px;}
.x17{left:16.020000px;}
.x1c{left:17.820000px;}
.x23{left:19.080000px;}
.x10{left:25.020000px;}
.x25{left:26.310000px;}
.x20{left:27.900000px;}
.x13{left:29.160000px;}
.x21{left:32.040000px;}
.x24{left:34.590000px;}
.xd{left:37.260000px;}
.x1b{left:38.880000px;}
.x22{left:40.140000px;}
.x1d{left:47.340000px;}
.xe{left:54.354000px;}
.x1e{left:55.620000px;}
.x11{left:66.600000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:127.655987px;}
.x26{left:133.415987px;}
.x27{left:160.409987px;}
.x6{left:169.239000px;}
.x4{left:203.484001px;}
.xf{left:276.735000px;}
.xa{left:346.394987px;}
.x16{left:372.315000px;}
.x9{left:434.804987px;}
.x5{left:436.604987px;}
.x12{left:446.865000px;}
.xb{left:452.624987px;}
.x3{left:454.959000px;}
.xc{left:533.084987px;}
.x18{left:542.625000px;}
.x14{left:617.010000px;}
.x19{left:712.590000px;}
.x8{left:786.779987px;}
@media print{
.v8{vertical-align:-35.840000pt;}
.v7{vertical-align:-23.680000pt;}
.v6{vertical-align:-14.080000pt;}
.v1{vertical-align:-12.160000pt;}
.v4{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:11.520000pt;}
.v5{vertical-align:29.440000pt;}
.v3{vertical-align:48.000000pt;}
.ls18{letter-spacing:-1.082667pt;}
.ls1b{letter-spacing:-0.949333pt;}
.ls12{letter-spacing:-0.762667pt;}
.ls4e{letter-spacing:-0.634667pt;}
.ls42{letter-spacing:-0.618667pt;}
.lsb{letter-spacing:-0.533333pt;}
.ls31{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.476267pt;}
.ls1c{letter-spacing:-0.445333pt;}
.ls9{letter-spacing:-0.332800pt;}
.ls10{letter-spacing:-0.309867pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.166400pt;}
.ls47{letter-spacing:-0.130667pt;}
.ls13{letter-spacing:-0.122667pt;}
.lsf{letter-spacing:-0.120533pt;}
.ls3b{letter-spacing:-0.102400pt;}
.ls53{letter-spacing:-0.086933pt;}
.ls11{letter-spacing:-0.076800pt;}
.ls1d{letter-spacing:-0.051200pt;}
.lsa{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.005760pt;}
.ls38{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.020480pt;}
.ls17{letter-spacing:0.033280pt;}
.ls3e{letter-spacing:0.074880pt;}
.ls43{letter-spacing:0.105067pt;}
.ls52{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.128000pt;}
.ls34{letter-spacing:0.133120pt;}
.ls33{letter-spacing:0.140800pt;}
.ls3d{letter-spacing:0.149867pt;}
.ls3{letter-spacing:0.153600pt;}
.ls4d{letter-spacing:0.159360pt;}
.ls19{letter-spacing:0.163733pt;}
.ls27{letter-spacing:0.163840pt;}
.ls44{letter-spacing:0.197333pt;}
.ls50{letter-spacing:0.198933pt;}
.ls41{letter-spacing:0.243200pt;}
.ls4b{letter-spacing:0.284160pt;}
.lsd{letter-spacing:0.291840pt;}
.ls8{letter-spacing:0.307200pt;}
.ls46{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.330133pt;}
.ls40{letter-spacing:0.332800pt;}
.ls4f{letter-spacing:0.333333pt;}
.ls23{letter-spacing:0.350720pt;}
.ls3a{letter-spacing:0.350933pt;}
.ls4c{letter-spacing:0.645333pt;}
.ls39{letter-spacing:0.645760pt;}
.ls51{letter-spacing:0.650667pt;}
.ls3c{letter-spacing:0.832000pt;}
.ls49{letter-spacing:0.960000pt;}
.ls1f{letter-spacing:2.240000pt;}
.ls22{letter-spacing:2.892800pt;}
.ls25{letter-spacing:3.509120pt;}
.ls26{letter-spacing:3.532800pt;}
.ls5{letter-spacing:3.993600pt;}
.ls32{letter-spacing:4.149120pt;}
.ls4a{letter-spacing:7.632640pt;}
.ls4{letter-spacing:7.833600pt;}
.ls24{letter-spacing:8.010240pt;}
.ls6{letter-spacing:9.113600pt;}
.ls37{letter-spacing:9.930240pt;}
.ls20{letter-spacing:15.162880pt;}
.ls2f{letter-spacing:16.309120pt;}
.ls2d{letter-spacing:16.415787pt;}
.ls21{letter-spacing:16.949120pt;}
.ls35{letter-spacing:19.509120pt;}
.ls36{letter-spacing:20.149120pt;}
.ls2c{letter-spacing:31.492480pt;}
.ls2{letter-spacing:32.793600pt;}
.ls45{letter-spacing:37.051307pt;}
.ls29{letter-spacing:39.856640pt;}
.ls30{letter-spacing:46.212480pt;}
.lse{letter-spacing:59.210240pt;}
.ls3f{letter-spacing:59.520000pt;}
.ls2e{letter-spacing:83.972480pt;}
.ls7{letter-spacing:751.770027pt;}
.ls2b{letter-spacing:799.188907pt;}
.ls1e{letter-spacing:928.468907pt;}
.ls2a{letter-spacing:954.068907pt;}
.ls28{letter-spacing:1005.908907pt;}
.ws3{word-spacing:-64.000000pt;}
.ws13{word-spacing:-58.880000pt;}
.ws16{word-spacing:-45.903360pt;}
.ws14{word-spacing:-42.880000pt;}
.ws1f{word-spacing:-42.821120pt;}
.ws20{word-spacing:-42.714453pt;}
.ws15{word-spacing:-42.703360pt;}
.ws21{word-spacing:-42.181120pt;}
.ws19{word-spacing:-34.560000pt;}
.ws1d{word-spacing:-26.547200pt;}
.ws18{word-spacing:-23.347200pt;}
.ws1c{word-spacing:-23.240533pt;}
.ws1a{word-spacing:-19.923200pt;}
.ws1{word-spacing:-16.793600pt;}
.ws1e{word-spacing:-16.660693pt;}
.ws29{word-spacing:-16.552960pt;}
.ws2c{word-spacing:-16.507093pt;}
.ws4{word-spacing:-16.486400pt;}
.wsf{word-spacing:-16.473493pt;}
.ws1b{word-spacing:-16.437760pt;}
.ws11{word-spacing:-16.343040pt;}
.ws6{word-spacing:-16.330240pt;}
.ws5{word-spacing:-16.309760pt;}
.ws12{word-spacing:-16.258560pt;}
.ws8{word-spacing:-16.232960pt;}
.ws22{word-spacing:-16.207360pt;}
.ws7{word-spacing:-16.189227pt;}
.wsb{word-spacing:-16.187093pt;}
.ws2{word-spacing:-16.153600pt;}
.ws10{word-spacing:-16.143360pt;}
.wsd{word-spacing:-16.053760pt;}
.ws9{word-spacing:-15.999893pt;}
.wsc{word-spacing:-15.833493pt;}
.ws17{word-spacing:-15.797760pt;}
.wse{word-spacing:-15.776427pt;}
.ws25{word-spacing:-15.705600pt;}
.ws2a{word-spacing:-15.691093pt;}
.wsa{word-spacing:-15.547093pt;}
.ws30{word-spacing:-15.364907pt;}
.ws2b{word-spacing:-15.206400pt;}
.ws2e{word-spacing:-15.047573pt;}
.ws2f{word-spacing:-14.913173pt;}
.ws23{word-spacing:-14.873600pt;}
.ws24{word-spacing:-14.725760pt;}
.ws28{word-spacing:-14.714240pt;}
.ws31{word-spacing:-14.627307pt;}
.ws2d{word-spacing:-14.583573pt;}
.ws26{word-spacing:-14.156800pt;}
.ws27{word-spacing:-14.154987pt;}
.ws0{word-spacing:0.000000pt;}
._23{margin-left:-6.160213pt;}
._13{margin-left:-4.239787pt;}
._12{margin-left:-3.261013pt;}
._b{margin-left:-2.050133pt;}
._1{margin-left:-1.118720pt;}
._2{width:1.120000pt;}
._16{width:2.889813pt;}
._c{width:4.159147pt;}
._15{width:5.261653pt;}
._17{width:6.632107pt;}
._a{width:8.007680pt;}
._f{width:9.115733pt;}
._6{width:10.186240pt;}
._5{width:11.383467pt;}
._11{width:12.776960pt;}
._19{width:14.131200pt;}
._1b{width:15.251840pt;}
._2c{width:16.556373pt;}
._18{width:17.474987pt;}
._8{width:18.370560pt;}
._9{width:19.338667pt;}
._14{width:20.445013pt;}
._1a{width:21.716053pt;}
._7{width:23.257600pt;}
._1d{width:24.400213pt;}
._1c{width:25.318400pt;}
._1e{width:26.378240pt;}
._d{width:28.380160pt;}
._e{width:30.000213pt;}
._4{width:31.708160pt;}
._3{width:32.805547pt;}
._10{width:33.720320pt;}
._27{width:35.463680pt;}
._28{width:36.858880pt;}
._21{width:38.154240pt;}
._32{width:40.796160pt;}
._39{width:45.152000pt;}
._3a{width:46.536320pt;}
._1f{width:49.576960pt;}
._20{width:50.861653pt;}
._0{width:59.210240pt;}
._2f{width:82.718080pt;}
._2e{width:83.664000pt;}
._3b{width:91.122347pt;}
._3c{width:92.066987pt;}
._3d{width:93.421227pt;}
._2b{width:117.567360pt;}
._2a{width:118.512640pt;}
._35{width:125.469440pt;}
._36{width:126.735360pt;}
._2d{width:139.333760pt;}
._34{width:168.279680pt;}
._33{width:169.399680pt;}
._38{width:194.945920pt;}
._37{width:195.853440pt;}
._31{width:197.415680pt;}
._30{width:198.403200pt;}
._29{width:311.533440pt;}
._26{width:723.487147pt;}
._22{width:852.312747pt;}
._25{width:879.014827pt;}
._24{width:930.008107pt;}
.fs9{font-size:26.880000pt;}
.fsc{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:42.880000pt;}
.fsd{font-size:50.560000pt;}
.fsa{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:2.240000pt;}
.y122{bottom:2.720000pt;}
.y10d{bottom:2.874667pt;}
.y106{bottom:2.880000pt;}
.y10a{bottom:3.040000pt;}
.y103{bottom:11.680000pt;}
.y145{bottom:11.840000pt;}
.y121{bottom:18.240000pt;}
.y11f{bottom:18.880000pt;}
.y105{bottom:19.200000pt;}
.y137{bottom:19.360000pt;}
.y135{bottom:28.000000pt;}
.y102{bottom:28.160000pt;}
.y6{bottom:31.933340pt;}
.y28{bottom:50.400000pt;}
.y5{bottom:59.133337pt;}
.y27{bottom:67.360000pt;}
.y4{bottom:86.333337pt;}
.y197{bottom:98.240000pt;}
.y89{bottom:99.360000pt;}
.y10f{bottom:101.920000pt;}
.y15a{bottom:104.800000pt;}
.y15c{bottom:107.520000pt;}
.yd7{bottom:111.680000pt;}
.y130{bottom:113.280000pt;}
.y143{bottom:113.760000pt;}
.y196{bottom:114.560000pt;}
.y10e{bottom:116.640000pt;}
.y88{bottom:117.280000pt;}
.yd8{bottom:117.600000pt;}
.y1b5{bottom:122.592000pt;}
.y159{bottom:122.752000pt;}
.y23{bottom:123.790666pt;}
.y15b{bottom:125.472000pt;}
.y12f{bottom:129.632000pt;}
.y142{bottom:130.112000pt;}
.yd6{bottom:131.072000pt;}
.y163{bottom:132.672000pt;}
.y10c{bottom:132.992000pt;}
.y195{bottom:134.906667pt;}
.y87{bottom:135.386667pt;}
.y1b4{bottom:138.906667pt;}
.y158{bottom:140.826667pt;}
.y12e{bottom:143.066667pt;}
.yac{bottom:143.546667pt;}
.yd5{bottom:148.986667pt;}
.y10b{bottom:149.306667pt;}
.y194{bottom:151.226667pt;}
.y86{bottom:153.306667pt;}
.y1b3{bottom:155.226667pt;}
.y157{bottom:158.746667pt;}
.yab{bottom:161.466667pt;}
.y162{bottom:165.306667pt;}
.y109{bottom:165.626667pt;}
.yd4{bottom:167.066667pt;}
.y193{bottom:167.546667pt;}
.y58{bottom:167.866667pt;}
.y85{bottom:171.226667pt;}
.y1a{bottom:175.052000pt;}
.y1b2{bottom:175.546667pt;}
.y156{bottom:176.666667pt;}
.yaa{bottom:179.386667pt;}
.y108{bottom:182.106667pt;}
.yd3{bottom:184.986667pt;}
.y161{bottom:185.626667pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y192{bottom:187.866667pt;}
.y84{bottom:189.306667pt;}
.y1b1{bottom:191.866667pt;}
.y57{bottom:192.506667pt;}
.y155{bottom:196.186667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.ya9{bottom:197.466667pt;}
.y107{bottom:198.426667pt;}
.y160{bottom:201.946667pt;}
.yd2{bottom:202.906667pt;}
.y191{bottom:204.346667pt;}
.y83{bottom:207.226667pt;}
.y1b0{bottom:208.186667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y56{bottom:210.586667pt;}
.y101{bottom:214.746667pt;}
.ya8{bottom:215.386667pt;}
.y15f{bottom:218.266667pt;}
.y190{bottom:220.666667pt;}
.y154{bottom:220.826667pt;}
.yd1{bottom:220.986667pt;}
.y82{bottom:225.306667pt;}
.y55{bottom:228.506667pt;}
.y1af{bottom:228.666667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y104{bottom:232.506667pt;}
.ya7{bottom:233.466667pt;}
.y15e{bottom:236.506667pt;}
.y153{bottom:238.426667pt;}
.yd0{bottom:238.906667pt;}
.y18f{bottom:240.986667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y81{bottom:243.226667pt;}
.y1ae{bottom:244.986667pt;}
.y54{bottom:246.426667pt;}
.ya6{bottom:251.386667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y152{bottom:254.906667pt;}
.ycf{bottom:256.986667pt;}
.y18e{bottom:257.306667pt;}
.y80{bottom:261.146667pt;}
.y1ad{bottom:261.306667pt;}
.y53{bottom:262.586667pt;}
.y151{bottom:268.346667pt;}
.ya5{bottom:269.306667pt;}
.y100{bottom:269.786667pt;}
.y52{bottom:272.666667pt;}
.y18d{bottom:273.626667pt;}
.yce{bottom:274.906667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y7f{bottom:279.226667pt;}
.y1ac{bottom:281.626667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.ya4{bottom:287.386667pt;}
.yff{bottom:287.706667pt;}
.y51{bottom:290.586667pt;}
.ycd{bottom:292.826667pt;}
.y18c{bottom:293.946667pt;}
.y7e{bottom:297.146667pt;}
.y1ab{bottom:297.946667pt;}
.yfe{bottom:303.866667pt;}
.ya3{bottom:305.306667pt;}
.y50{bottom:308.666667pt;}
.y11{bottom:309.452000pt;}
.y18b{bottom:310.426667pt;}
.ycc{bottom:310.906667pt;}
.yfd{bottom:313.786667pt;}
.y7d{bottom:315.226667pt;}
.ycb{bottom:318.266667pt;}
.y1aa{bottom:318.426667pt;}
.ya2{bottom:323.386667pt;}
.y4f{bottom:326.586667pt;}
.y18a{bottom:330.746667pt;}
.yfc{bottom:331.866667pt;}
.y7c{bottom:333.146667pt;}
.y1a9{bottom:334.746667pt;}
.y12d{bottom:336.186667pt;}
.y141{bottom:336.826667pt;}
.yca{bottom:338.106667pt;}
.ya1{bottom:341.306667pt;}
.y10{bottom:343.809333pt;}
.y4e{bottom:344.546667pt;}
.y189{bottom:347.106667pt;}
.yfb{bottom:349.826667pt;}
.y7b{bottom:351.106667pt;}
.y12c{bottom:354.146667pt;}
.y140{bottom:354.946667pt;}
.yc9{bottom:356.066667pt;}
.ya0{bottom:359.266667pt;}
.y4d{bottom:360.706667pt;}
.yf{bottom:362.706666pt;}
.y188{bottom:367.426667pt;}
.yfa{bottom:367.906667pt;}
.y7a{bottom:369.186667pt;}
.y4c{bottom:370.786667pt;}
.y1a8{bottom:371.426667pt;}
.y12b{bottom:372.066667pt;}
.y13f{bottom:372.866667pt;}
.yc8{bottom:374.146667pt;}
.y9f{bottom:377.346667pt;}
.y187{bottom:383.746667pt;}
.yf9{bottom:385.826667pt;}
.y79{bottom:387.106667pt;}
.y1a7{bottom:387.746667pt;}
.y4b{bottom:388.706667pt;}
.y12a{bottom:390.146667pt;}
.y13e{bottom:390.466667pt;}
.yc7{bottom:392.066667pt;}
.y9e{bottom:395.266667pt;}
.y186{bottom:400.226667pt;}
.yf8{bottom:403.746667pt;}
.y4a{bottom:404.866667pt;}
.y78{bottom:405.026667pt;}
.y13d{bottom:406.946667pt;}
.y129{bottom:407.746667pt;}
.y1a6{bottom:408.226667pt;}
.yc6{bottom:409.986667pt;}
.y9d{bottom:413.346667pt;}
.y49{bottom:414.946667pt;}
.y185{bottom:420.546667pt;}
.y13c{bottom:421.666667pt;}
.yf7{bottom:421.826667pt;}
.y128{bottom:422.466667pt;}
.y77{bottom:423.106667pt;}
.y1a5{bottom:424.546667pt;}
.yc5{bottom:428.066667pt;}
.ye{bottom:430.990669pt;}
.y9c{bottom:431.266667pt;}
.y48{bottom:432.866667pt;}
.y184{bottom:436.866667pt;}
.y127{bottom:437.986667pt;}
.yf6{bottom:439.746667pt;}
.y1a4{bottom:440.866667pt;}
.y76{bottom:441.026667pt;}
.yc4{bottom:445.986667pt;}
.yd{bottom:446.990669pt;}
.y47{bottom:449.026667pt;}
.y9b{bottom:449.186667pt;}
.y126{bottom:453.506667pt;}
.y13b{bottom:454.306667pt;}
.y183{bottom:457.186667pt;}
.yf5{bottom:457.826667pt;}
.y46{bottom:459.106667pt;}
.y1a3{bottom:461.186667pt;}
.y150{bottom:461.506667pt;}
.yc{bottom:462.990669pt;}
.yc3{bottom:464.066667pt;}
.y9a{bottom:467.266667pt;}
.y125{bottom:469.026667pt;}
.y13a{bottom:470.626667pt;}
.y182{bottom:473.506667pt;}
.yf4{bottom:475.746667pt;}
.y45{bottom:477.026667pt;}
.y1a2{bottom:477.506667pt;}
.yb{bottom:478.990666pt;}
.y14f{bottom:479.586667pt;}
.yc2{bottom:481.986667pt;}
.y124{bottom:484.706667pt;}
.y99{bottom:485.186667pt;}
.y139{bottom:487.106667pt;}
.y44{bottom:493.186667pt;}
.yf3{bottom:493.666667pt;}
.y181{bottom:493.826667pt;}
.y75{bottom:494.946667pt;}
.ya{bottom:494.990666pt;}
.y14e{bottom:497.506667pt;}
.yc1{bottom:499.906667pt;}
.y123{bottom:500.226667pt;}
.y43{bottom:503.106667pt;}
.y138{bottom:503.426667pt;}
.y180{bottom:510.306667pt;}
.yf2{bottom:511.746667pt;}
.y74{bottom:513.026667pt;}
.y1a1{bottom:514.306667pt;}
.y14d{bottom:515.586667pt;}
.y11e{bottom:515.746667pt;}
.yc0{bottom:517.986667pt;}
.y134{bottom:519.746667pt;}
.y42{bottom:521.186667pt;}
.y17f{bottom:526.626667pt;}
.yf1{bottom:529.666667pt;}
.y1a0{bottom:530.626667pt;}
.y73{bottom:530.946667pt;}
.y120{bottom:532.546667pt;}
.y14c{bottom:533.186667pt;}
.ybf{bottom:535.906667pt;}
.y136{bottom:537.346667pt;}
.y41{bottom:539.106667pt;}
.y17e{bottom:546.946667pt;}
.yf0{bottom:547.746667pt;}
.y14b{bottom:547.906667pt;}
.y72{bottom:549.026667pt;}
.y98{bottom:550.466667pt;}
.ybe{bottom:553.826667pt;}
.y40{bottom:557.186667pt;}
.y17d{bottom:563.266667pt;}
.y14a{bottom:564.226667pt;}
.yef{bottom:565.666667pt;}
.y71{bottom:566.946667pt;}
.y19f{bottom:567.266667pt;}
.y11d{bottom:568.226667pt;}
.ybd{bottom:571.933333pt;}
.y9{bottom:573.786667pt;}
.y133{bottom:574.653333pt;}
.y3f{bottom:575.133333pt;}
.y17c{bottom:579.613333pt;}
.y149{bottom:580.733333pt;}
.yee{bottom:583.613333pt;}
.y70{bottom:584.893333pt;}
.y11c{bottom:586.173333pt;}
.ybc{bottom:590.013333pt;}
.y8{bottom:592.685334pt;}
.y132{bottom:592.733333pt;}
.y3e{bottom:593.053333pt;}
.y148{bottom:597.053333pt;}
.y17b{bottom:599.933333pt;}
.yed{bottom:601.693333pt;}
.y6f{bottom:602.973333pt;}
.y11b{bottom:604.253333pt;}
.ybb{bottom:607.933333pt;}
.y131{bottom:610.973333pt;}
.y3d{bottom:611.133333pt;}
.y147{bottom:613.373333pt;}
.y17a{bottom:616.413333pt;}
.yec{bottom:619.613333pt;}
.y6e{bottom:620.893333pt;}
.y11a{bottom:622.173333pt;}
.y1ba{bottom:624.733333pt;}
.yba{bottom:627.293333pt;}
.y3c{bottom:629.053333pt;}
.y146{bottom:629.693333pt;}
.y179{bottom:632.733333pt;}
.y19e{bottom:636.733333pt;}
.yeb{bottom:637.533333pt;}
.y6d{bottom:638.973333pt;}
.y119{bottom:640.093333pt;}
.y7{bottom:645.598667pt;}
.yb9{bottom:645.853333pt;}
.y144{bottom:646.013333pt;}
.y3b{bottom:647.133333pt;}
.y178{bottom:653.053333pt;}
.yea{bottom:655.613333pt;}
.y6c{bottom:656.893333pt;}
.y118{bottom:658.173333pt;}
.yb8{bottom:663.773333pt;}
.y3a{bottom:665.053333pt;}
.y3{bottom:668.977329pt;}
.y177{bottom:669.373333pt;}
.y1b9{bottom:673.373333pt;}
.ye9{bottom:673.533333pt;}
.y6b{bottom:674.813333pt;}
.y117{bottom:676.093333pt;}
.yb7{bottom:681.693333pt;}
.y39{bottom:682.973333pt;}
.y176{bottom:689.693333pt;}
.ye8{bottom:691.613333pt;}
.y6a{bottom:692.893333pt;}
.y116{bottom:694.173333pt;}
.yb6{bottom:699.773333pt;}
.y38{bottom:701.053333pt;}
.y1cc{bottom:704.253333pt;}
.y175{bottom:706.013333pt;}
.ye7{bottom:709.533333pt;}
.y69{bottom:710.813333pt;}
.y115{bottom:712.093333pt;}
.y15d{bottom:712.253333pt;}
.y37{bottom:717.213333pt;}
.yb5{bottom:717.693333pt;}
.y97{bottom:718.973333pt;}
.y1cb{bottom:722.333333pt;}
.y174{bottom:722.493333pt;}
.y19d{bottom:726.493333pt;}
.ye6{bottom:727.453333pt;}
.y36{bottom:728.573333pt;}
.y68{bottom:728.733333pt;}
.y114{bottom:730.013333pt;}
.yb4{bottom:735.773333pt;}
.y96{bottom:737.053333pt;}
.y1ca{bottom:740.253333pt;}
.y173{bottom:742.813333pt;}
.ye5{bottom:745.533333pt;}
.y67{bottom:746.813333pt;}
.y113{bottom:748.093333pt;}
.y35{bottom:753.373333pt;}
.yb3{bottom:753.693333pt;}
.y95{bottom:754.973333pt;}
.y1c9{bottom:758.173333pt;}
.y172{bottom:759.133333pt;}
.y1b8{bottom:763.133333pt;}
.ye4{bottom:763.453333pt;}
.y66{bottom:764.733333pt;}
.y112{bottom:765.693333pt;}
.y34{bottom:771.613333pt;}
.y94{bottom:772.893333pt;}
.y19c{bottom:775.453333pt;}
.y1c8{bottom:776.253333pt;}
.y171{bottom:779.453333pt;}
.ye3{bottom:781.533333pt;}
.y2{bottom:781.661334pt;}
.y111{bottom:782.013333pt;}
.y65{bottom:782.813333pt;}
.yb2{bottom:789.693333pt;}
.y93{bottom:790.973333pt;}
.y33{bottom:791.773333pt;}
.y1c7{bottom:792.413333pt;}
.y110{bottom:795.493333pt;}
.y170{bottom:795.813333pt;}
.ye2{bottom:799.493333pt;}
.y64{bottom:800.773333pt;}
.y1c6{bottom:802.373333pt;}
.yb1{bottom:807.653333pt;}
.y92{bottom:808.933333pt;}
.y16f{bottom:812.293333pt;}
.y32{bottom:814.053333pt;}
.y1b7{bottom:816.293333pt;}
.ye1{bottom:817.413333pt;}
.y63{bottom:818.693333pt;}
.y1c5{bottom:820.453333pt;}
.yb0{bottom:825.573333pt;}
.y91{bottom:827.013333pt;}
.y19b{bottom:828.613333pt;}
.y16e{bottom:832.613333pt;}
.y31{bottom:836.453333pt;}
.y62{bottom:836.773333pt;}
.ye0{bottom:836.933333pt;}
.y1c4{bottom:838.373333pt;}
.yaf{bottom:843.333333pt;}
.y90{bottom:844.933333pt;}
.y16d{bottom:848.933333pt;}
.y61{bottom:854.693333pt;}
.y1c3{bottom:856.293333pt;}
.y1{bottom:859.312000pt;}
.yae{bottom:859.653333pt;}
.ydf{bottom:861.573333pt;}
.y8f{bottom:862.853333pt;}
.y16c{bottom:865.253333pt;}
.y1b6{bottom:869.253333pt;}
.y30{bottom:870.853333pt;}
.y1c2{bottom:872.613333pt;}
.y60{bottom:872.773333pt;}
.yad{bottom:873.093333pt;}
.yde{bottom:879.653333pt;}
.y8e{bottom:880.933333pt;}
.y19a{bottom:881.573333pt;}
.y1c1{bottom:882.533333pt;}
.y16b{bottom:885.573333pt;}
.y5f{bottom:890.693333pt;}
.ydd{bottom:897.573333pt;}
.y8d{bottom:898.853333pt;}
.y1c0{bottom:900.453333pt;}
.y16a{bottom:901.893333pt;}
.y2f{bottom:905.093333pt;}
.y5e{bottom:908.613333pt;}
.ydc{bottom:915.493333pt;}
.y8c{bottom:916.773333pt;}
.y199{bottom:918.373333pt;}
.y1bf{bottom:918.533333pt;}
.y169{bottom:922.373333pt;}
.y5d{bottom:926.693333pt;}
.ydb{bottom:933.573333pt;}
.y8b{bottom:934.853333pt;}
.y1be{bottom:936.453333pt;}
.y168{bottom:938.693333pt;}
.y2e{bottom:939.493333pt;}
.y5c{bottom:944.613333pt;}
.yda{bottom:951.493333pt;}
.y8a{bottom:952.773333pt;}
.y1bd{bottom:954.373333pt;}
.y167{bottom:955.013333pt;}
.y5b{bottom:962.693333pt;}
.yd9{bottom:969.413333pt;}
.y2d{bottom:970.853333pt;}
.y198{bottom:971.333333pt;}
.y1bc{bottom:972.453333pt;}
.y166{bottom:975.333333pt;}
.y5a{bottom:980.613333pt;}
.y1bb{bottom:988.613333pt;}
.y2c{bottom:988.773333pt;}
.y165{bottom:991.653333pt;}
.y59{bottom:999.973333pt;}
.y2b{bottom:1006.693333pt;}
.y164{bottom:1007.973333pt;}
.y26{bottom:1024.800000pt;}
.y25{bottom:1042.720000pt;}
.y24{bottom:1060.800000pt;}
.y29{bottom:1067.040000pt;}
.h23{height:15.520000pt;}
.h25{height:15.680000pt;}
.h1d{height:16.320000pt;}
.h1f{height:16.352000pt;}
.h1e{height:16.480000pt;}
.h29{height:16.512000pt;}
.hd{height:16.960000pt;}
.h13{height:20.212500pt;}
.h12{height:20.973750pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h22{height:31.040000pt;}
.h1c{height:32.640000pt;}
.h28{height:32.832000pt;}
.h21{height:38.018750pt;}
.h19{height:38.148125pt;}
.h24{height:39.450625pt;}
.h1b{height:39.943750pt;}
.h7{height:40.853333pt;}
.h15{height:41.448125pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h14{height:44.160000pt;}
.hb{height:45.942500pt;}
.h2b{height:47.258125pt;}
.h20{height:47.840000pt;}
.hf{height:48.000000pt;}
.h2{height:49.024000pt;}
.h1a{height:50.400000pt;}
.h27{height:50.432000pt;}
.h16{height:52.382500pt;}
.h2a{height:54.598989pt;}
.h10{height:56.160000pt;}
.hc{height:60.519362pt;}
.h11{height:64.006250pt;}
.h26{height:65.781915pt;}
.h5{height:69.450667pt;}
.h17{height:73.988125pt;}
.h18{height:81.822500pt;}
.he{height:84.218750pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.ha{height:1122.720000pt;}
.w12{width:65.792000pt;}
.wd{width:65.952000pt;}
.wc{width:66.112000pt;}
.wa{width:66.272000pt;}
.w9{width:84.960000pt;}
.wb{width:85.120000pt;}
.w11{width:85.280000pt;}
.w10{width:150.746667pt;}
.w8{width:150.906667pt;}
.wf{width:151.066667pt;}
.w7{width:151.226667pt;}
.w6{width:151.386667pt;}
.we{width:151.546667pt;}
.w2{width:566.928019pt;}
.w5{width:643.493333pt;}
.w0{width:793.700000pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.200000pt;}
.x1f{left:8.160000pt;}
.x15{left:12.480000pt;}
.x17{left:14.240000pt;}
.x1c{left:15.840000pt;}
.x23{left:16.960000pt;}
.x10{left:22.240000pt;}
.x25{left:23.386667pt;}
.x20{left:24.800000pt;}
.x13{left:25.920000pt;}
.x21{left:28.480000pt;}
.x24{left:30.746667pt;}
.xd{left:33.120000pt;}
.x1b{left:34.560000pt;}
.x22{left:35.680000pt;}
.x1d{left:42.080000pt;}
.xe{left:48.314667pt;}
.x1e{left:49.440000pt;}
.x11{left:59.200000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:113.471988pt;}
.x26{left:118.591988pt;}
.x27{left:142.586655pt;}
.x6{left:150.434667pt;}
.x4{left:180.874667pt;}
.xf{left:245.986667pt;}
.xa{left:307.906655pt;}
.x16{left:330.946667pt;}
.x9{left:386.493322pt;}
.x5{left:388.093322pt;}
.x12{left:397.213333pt;}
.xb{left:402.333322pt;}
.x3{left:404.408000pt;}
.xc{left:473.853322pt;}
.x18{left:482.333333pt;}
.x14{left:548.453333pt;}
.x19{left:633.413333pt;}
.x8{left:699.359988pt;}
}




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