
    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_58f9d88d48f2aded20598946.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.190918;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_5f5424d1971ecadf5b4eccd9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_7accd085effce49d7ee2dd5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.191406;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_5ba2e181130618b79b9201dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_f4a55cdb6459b03b56f1b7ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_f465117b7aa2ed0eabb6a6c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_9ad2cfa8be353b1827cc1560.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.384000;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_50d10f856e60d5de920c6ce1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.349000;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_342e1d72f26180f59df5a4fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.362000;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_7f620036770f24cf9acd928f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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);}
.v5{vertical-align:-18.900146px;}
.v4{vertical-align:-17.849991px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.635469px;}
.v2{vertical-align:21.000000px;}
.ls48{letter-spacing:-1.620000px;}
.ls49{letter-spacing:-1.350000px;}
.ls1b{letter-spacing:-0.648000px;}
.ls4e{letter-spacing:-0.540000px;}
.ls1c{letter-spacing:-0.432000px;}
.ls45{letter-spacing:-0.405000px;}
.ls2f{letter-spacing:-0.378000px;}
.ls4a{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.324000px;}
.lsf{letter-spacing:-0.270000px;}
.ls46{letter-spacing:-0.225000px;}
.ls19{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.210600px;}
.ls30{letter-spacing:-0.175500px;}
.ls28{letter-spacing:-0.162000px;}
.ls4d{letter-spacing:-0.135000px;}
.ls31{letter-spacing:-0.108000px;}
.ls29{letter-spacing:-0.105300px;}
.ls43{letter-spacing:-0.090000px;}
.lse{letter-spacing:-0.054000px;}
.ls44{letter-spacing:-0.045000px;}
.lsa{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.013040px;}
.ls2{letter-spacing:0.013223px;}
.ls4{letter-spacing:0.013772px;}
.ls9{letter-spacing:0.018028px;}
.ls26{letter-spacing:0.035100px;}
.ls13{letter-spacing:0.037986px;}
.ls3b{letter-spacing:0.045000px;}
.ls12{letter-spacing:0.054000px;}
.ls34{letter-spacing:0.070200px;}
.ls4b{letter-spacing:0.090000px;}
.ls15{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.125927px;}
.ls7{letter-spacing:0.126622px;}
.ls3e{letter-spacing:0.135000px;}
.ls37{letter-spacing:0.140400px;}
.ls32{letter-spacing:0.157950px;}
.ls33{letter-spacing:0.158836px;}
.ls11{letter-spacing:0.159019px;}
.ls1a{letter-spacing:0.162000px;}
.ls6{letter-spacing:0.175500px;}
.ls39{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.194400px;}
.ls3a{letter-spacing:0.202500px;}
.ls5{letter-spacing:0.216000px;}
.ls3f{letter-spacing:0.225000px;}
.ls25{letter-spacing:0.232191px;}
.ls2a{letter-spacing:0.237600px;}
.ls2b{letter-spacing:0.245700px;}
.ls38{letter-spacing:0.264000px;}
.lsc{letter-spacing:0.270000px;}
.ls36{letter-spacing:0.280800px;}
.ls23{letter-spacing:0.313200px;}
.ls4c{letter-spacing:0.315000px;}
.ls14{letter-spacing:0.315900px;}
.ls1e{letter-spacing:0.324000px;}
.ls17{letter-spacing:0.351000px;}
.ls47{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.378000px;}
.ls40{letter-spacing:0.405000px;}
.ls22{letter-spacing:0.415800px;}
.ls1d{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.486000px;}
.ls35{letter-spacing:0.491400px;}
.ls3d{letter-spacing:0.517500px;}
.ls16{letter-spacing:0.540000px;}
.ls2e{letter-spacing:0.594000px;}
.ls2d{letter-spacing:0.648000px;}
.ls21{letter-spacing:0.702000px;}
.ls27{letter-spacing:0.756000px;}
.ls20{letter-spacing:0.810000px;}
.ls1f{letter-spacing:1.026000px;}
.ls41{letter-spacing:1.295993px;}
.ls42{letter-spacing:1.809000px;}
.ls3c{letter-spacing:1.835994px;}
.ls0{letter-spacing:1.872000px;}
.ls1{letter-spacing:3.000000px;}
.ls10{letter-spacing:12.829050px;}
.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;}
}
.ws0{word-spacing:-48.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws84{word-spacing:-13.860000px;}
.ws57{word-spacing:-13.596000px;}
.ws18{word-spacing:-12.829050px;}
.ws55{word-spacing:-12.636000px;}
.wsa{word-spacing:-12.528000px;}
.ws53{word-spacing:-12.474000px;}
.ws51{word-spacing:-12.420000px;}
.ws1f{word-spacing:-12.366000px;}
.ws65{word-spacing:-12.258000px;}
.wsd{word-spacing:-12.204000px;}
.ws7f{word-spacing:-12.150000px;}
.ws58{word-spacing:-11.988000px;}
.ws3e{word-spacing:-11.826000px;}
.ws1e{word-spacing:-11.718000px;}
.ws4{word-spacing:-11.394000px;}
.ws89{word-spacing:-10.710000px;}
.ws88{word-spacing:-10.417500px;}
.ws85{word-spacing:-10.215000px;}
.ws8b{word-spacing:-10.080000px;}
.ws86{word-spacing:-9.900000px;}
.ws87{word-spacing:-9.765000px;}
.ws1a{word-spacing:-9.600000px;}
.ws8a{word-spacing:-8.955000px;}
.ws7a{word-spacing:-8.459100px;}
.ws1c{word-spacing:-8.318700px;}
.ws54{word-spacing:-8.283600px;}
.ws7b{word-spacing:-8.248500px;}
.ws66{word-spacing:-8.213400px;}
.ws1b{word-spacing:-8.143200px;}
.ws7c{word-spacing:-8.108100px;}
.ws79{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws52{word-spacing:-8.002800px;}
.ws5{word-spacing:-7.967700px;}
.ws56{word-spacing:-7.862400px;}
.ws67{word-spacing:-7.792200px;}
.ws1d{word-spacing:-7.757100px;}
.ws6{word-spacing:-6.630000px;}
.ws9c{word-spacing:-6.165000px;}
.ws93{word-spacing:-6.030000px;}
.ws94{word-spacing:-5.805000px;}
.ws3a{word-spacing:-5.508000px;}
.ws3c{word-spacing:-4.284000px;}
.ws68{word-spacing:-3.132000px;}
.ws45{word-spacing:-2.160000px;}
.ws3f{word-spacing:-1.620000px;}
.ws78{word-spacing:-1.350000px;}
.wse{word-spacing:-1.242000px;}
.ws25{word-spacing:-1.188000px;}
.ws5b{word-spacing:-1.134000px;}
.ws4a{word-spacing:-1.080000px;}
.ws8d{word-spacing:-1.035000px;}
.ws29{word-spacing:-1.026000px;}
.ws98{word-spacing:-0.990000px;}
.wsf{word-spacing:-0.972000px;}
.ws2c{word-spacing:-0.918000px;}
.ws8{word-spacing:-0.912000px;}
.ws81{word-spacing:-0.864000px;}
.ws62{word-spacing:-0.810000px;}
.ws9b{word-spacing:-0.720000px;}
.ws7d{word-spacing:-0.702000px;}
.wsb{word-spacing:-0.648000px;}
.ws43{word-spacing:-0.594000px;}
.ws90{word-spacing:-0.585000px;}
.ws36{word-spacing:-0.540000px;}
.ws9d{word-spacing:-0.495000px;}
.ws69{word-spacing:-0.486000px;}
.ws35{word-spacing:-0.432000px;}
.ws59{word-spacing:-0.378000px;}
.ws22{word-spacing:-0.351000px;}
.ws5d{word-spacing:-0.324000px;}
.ws61{word-spacing:-0.315900px;}
.ws20{word-spacing:-0.270000px;}
.ws9f{word-spacing:-0.264000px;}
.ws8f{word-spacing:-0.225000px;}
.ws9{word-spacing:-0.216000px;}
.ws8e{word-spacing:-0.180000px;}
.ws60{word-spacing:-0.162000px;}
.ws63{word-spacing:-0.108000px;}
.ws91{word-spacing:-0.090000px;}
.ws24{word-spacing:-0.054000px;}
.ws9e{word-spacing:-0.045000px;}
.ws3{word-spacing:-0.039000px;}
.ws7{word-spacing:0.000000px;}
.ws99{word-spacing:0.045000px;}
.ws42{word-spacing:0.054000px;}
.ws5a{word-spacing:0.108000px;}
.ws82{word-spacing:0.162000px;}
.ws23{word-spacing:0.210600px;}
.ws6c{word-spacing:0.216000px;}
.ws26{word-spacing:0.270000px;}
.ws64{word-spacing:0.324000px;}
.ws31{word-spacing:0.378000px;}
.ws3b{word-spacing:0.432000px;}
.ws2f{word-spacing:0.540000px;}
.ws2d{word-spacing:0.594000px;}
.ws4c{word-spacing:0.648000px;}
.ws96{word-spacing:0.675000px;}
.ws6d{word-spacing:0.702000px;}
.ws8c{word-spacing:0.720000px;}
.ws5c{word-spacing:0.756000px;}
.ws80{word-spacing:0.864000px;}
.ws9a{word-spacing:0.900000px;}
.ws30{word-spacing:0.918000px;}
.ws32{word-spacing:0.972000px;}
.ws95{word-spacing:0.990000px;}
.ws5e{word-spacing:1.026000px;}
.ws97{word-spacing:1.035000px;}
.ws83{word-spacing:1.080000px;}
.ws4d{word-spacing:1.134000px;}
.ws92{word-spacing:1.170000px;}
.wsc{word-spacing:1.188000px;}
.ws21{word-spacing:1.242000px;}
.ws75{word-spacing:1.458000px;}
.ws4f{word-spacing:1.512000px;}
.ws6a{word-spacing:1.620000px;}
.ws76{word-spacing:1.674000px;}
.ws6e{word-spacing:1.728000px;}
.ws71{word-spacing:1.782000px;}
.ws70{word-spacing:1.836000px;}
.ws5f{word-spacing:1.890000px;}
.ws7e{word-spacing:1.998000px;}
.wsa2{word-spacing:2.052000px;}
.ws38{word-spacing:2.106000px;}
.ws77{word-spacing:2.160000px;}
.ws3d{word-spacing:2.322000px;}
.ws4e{word-spacing:2.376000px;}
.ws47{word-spacing:2.592000px;}
.ws48{word-spacing:2.646000px;}
.ws4b{word-spacing:2.916000px;}
.ws39{word-spacing:3.024000px;}
.ws27{word-spacing:3.078000px;}
.ws2b{word-spacing:3.132000px;}
.ws46{word-spacing:3.186000px;}
.ws72{word-spacing:3.294000px;}
.ws49{word-spacing:3.402000px;}
.ws6f{word-spacing:3.618000px;}
.ws16{word-spacing:3.927000px;}
.ws41{word-spacing:3.942000px;}
.ws28{word-spacing:4.158000px;}
.ws34{word-spacing:4.212000px;}
.ws44{word-spacing:4.590000px;}
.ws37{word-spacing:5.022000px;}
.ws2a{word-spacing:5.292000px;}
.ws74{word-spacing:5.346000px;}
.ws33{word-spacing:5.454000px;}
.wsa3{word-spacing:5.670000px;}
.ws6b{word-spacing:5.778000px;}
.ws17{word-spacing:6.375000px;}
.wsa4{word-spacing:6.426000px;}
.wsa0{word-spacing:6.480000px;}
.ws40{word-spacing:6.642000px;}
.wsa1{word-spacing:6.750000px;}
.ws11{word-spacing:7.140000px;}
.ws15{word-spacing:7.395000px;}
.ws73{word-spacing:7.398000px;}
.ws2e{word-spacing:7.560000px;}
.ws14{word-spacing:8.568000px;}
.ws12{word-spacing:10.659000px;}
.ws13{word-spacing:12.546000px;}
.ws50{word-spacing:15.282000px;}
.ws19{word-spacing:19.737000px;}
.ws10{word-spacing:34.017000px;}
._2d{margin-left:-20.952007px;}
._18{margin-left:-17.240918px;}
._2f{margin-left:-15.540387px;}
._2b{margin-left:-14.396819px;}
._15{margin-left:-13.352787px;}
._8{margin-left:-11.458797px;}
._14{margin-left:-9.827273px;}
._2c{margin-left:-8.329200px;}
._2e{margin-left:-7.236014px;}
._17{margin-left:-6.128400px;}
._3{margin-left:-4.412886px;}
._2{margin-left:-2.972497px;}
._0{margin-left:-1.876800px;}
._4{width:1.014387px;}
._5{width:2.143800px;}
._f{width:3.398076px;}
._10{width:4.403065px;}
._30{width:6.347999px;}
._31{width:7.923000px;}
._7{width:11.078400px;}
._b{width:12.488400px;}
._19{width:14.618886px;}
._12{width:16.498270px;}
._11{width:18.604801px;}
._13{width:20.438702px;}
._16{width:47.873401px;}
._1b{width:55.608000px;}
._d{width:62.429399px;}
._25{width:74.168013px;}
._c{width:83.368199px;}
._e{width:84.925797px;}
._6{width:117.730797px;}
._a{width:150.211797px;}
._9{width:161.794797px;}
._26{width:178.500000px;}
._1f{width:201.348000px;}
._1d{width:210.924000px;}
._24{width:230.310018px;}
._23{width:240.660000px;}
._29{width:251.244000px;}
._1a{width:257.230413px;}
._21{width:260.820000px;}
._1{width:317.188782px;}
._27{width:325.081461px;}
._22{width:374.452413px;}
._1e{width:376.978800px;}
._1c{width:396.466800px;}
._20{width:454.734000px;}
._2a{width:488.502000px;}
._28{width:501.760800px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:3.199200px;}
.y32{bottom:3.199350px;}
.yce{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y31{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.ya2{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y30{bottom:68.037452px;}
.y60{bottom:73.375652px;}
.y9d{bottom:73.420186px;}
.y122{bottom:73.983148px;}
.yd5{bottom:78.489148px;}
.yc3{bottom:79.987648px;}
.y2f{bottom:83.031452px;}
.y2e{bottom:83.043452px;}
.y5f{bottom:88.374152px;}
.y9c{bottom:88.418686px;}
.y121{bottom:88.981648px;}
.y124{bottom:91.981648px;}
.y1b5{bottom:92.210098px;}
.yd4{bottom:93.487648px;}
.yc2{bottom:94.986148px;}
.y2d{bottom:98.037452px;}
.y5e{bottom:103.372652px;}
.y9b{bottom:103.417186px;}
.y120{bottom:103.987648px;}
.y123{bottom:106.980148px;}
.y1b4{bottom:107.208598px;}
.yd3{bottom:108.486148px;}
.yc1{bottom:109.984648px;}
.y16d{bottom:109.990648px;}
.y2c{bottom:113.037452px;}
.y5d{bottom:118.371152px;}
.y9a{bottom:118.415686px;}
.y11f{bottom:118.986148px;}
.y1b3{bottom:122.207098px;}
.yd2{bottom:123.484648px;}
.yc0{bottom:124.983148px;}
.y16c{bottom:124.989148px;}
.y2b{bottom:128.037452px;}
.y5c{bottom:133.380152px;}
.y99{bottom:133.414186px;}
.y11e{bottom:133.984648px;}
.y1b2{bottom:137.205598px;}
.yd1{bottom:138.483148px;}
.ybf{bottom:139.981648px;}
.y16b{bottom:139.987648px;}
.y2a{bottom:143.037452px;}
.y5b{bottom:148.378652px;}
.y98{bottom:148.412686px;}
.y11d{bottom:148.983148px;}
.y1b1{bottom:152.204098px;}
.yd0{bottom:153.481648px;}
.ybe{bottom:154.980148px;}
.y16a{bottom:154.986148px;}
.y29{bottom:158.037452px;}
.y5a{bottom:163.377152px;}
.y97{bottom:163.411186px;}
.y11c{bottom:163.981648px;}
.y1b0{bottom:167.204098px;}
.ycf{bottom:168.480148px;}
.ybd{bottom:169.980148px;}
.y169{bottom:169.984648px;}
.y131{bottom:177.109507px;}
.y28{bottom:177.493950px;}
.y59{bottom:178.375652px;}
.y96{bottom:178.409686px;}
.y11b{bottom:178.980148px;}
.y168{bottom:184.983148px;}
.y130{bottom:192.108007px;}
.y58{bottom:193.374152px;}
.y95{bottom:193.408186px;}
.y11a{bottom:193.980148px;}
.y1af{bottom:197.208609px;}
.y167{bottom:199.981648px;}
.ybc{bottom:202.981648px;}
.y12f{bottom:207.106507px;}
.y57{bottom:208.372652px;}
.y94{bottom:208.406686px;}
.y1ae{bottom:212.207109px;}
.ye1{bottom:214.427991px;}
.y166{bottom:214.980148px;}
.ybb{bottom:217.986148px;}
.y12e{bottom:222.105007px;}
.y56{bottom:223.371152px;}
.y93{bottom:223.405186px;}
.y26{bottom:226.807344px;}
.y119{bottom:226.992148px;}
.y1ad{bottom:227.205609px;}
.ye0{bottom:229.426491px;}
.y165{bottom:229.980148px;}
.yba{bottom:232.984648px;}
.y12d{bottom:237.103507px;}
.y55{bottom:238.369652px;}
.y92{bottom:238.403686px;}
.y25{bottom:241.805844px;}
.y118{bottom:241.990648px;}
.y1ac{bottom:242.204109px;}
.ydf{bottom:244.424991px;}
.yb9{bottom:247.983148px;}
.y12c{bottom:252.102007px;}
.y91{bottom:253.402186px;}
.y24{bottom:256.805844px;}
.y117{bottom:256.989148px;}
.y1ab{bottom:257.204109px;}
.yde{bottom:259.423491px;}
.yb8{bottom:262.981648px;}
.y164{bottom:263.004148px;}
.y12b{bottom:267.100507px;}
.y90{bottom:268.400686px;}
.y54{bottom:271.371152px;}
.y23{bottom:271.870330px;}
.y116{bottom:271.987648px;}
.ydd{bottom:274.421991px;}
.yb7{bottom:277.993648px;}
.y163{bottom:278.002648px;}
.y12a{bottom:282.099007px;}
.y8f{bottom:283.399186px;}
.y53{bottom:286.384629px;}
.y22{bottom:286.868830px;}
.y115{bottom:286.986148px;}
.y1aa{bottom:287.421632px;}
.ydc{bottom:289.420491px;}
.yb6{bottom:292.992148px;}
.y162{bottom:293.001148px;}
.y129{bottom:297.097507px;}
.y8e{bottom:298.397686px;}
.y1a9{bottom:300.167882px;}
.y52{bottom:301.383129px;}
.y114{bottom:301.984648px;}
.ydb{bottom:304.418991px;}
.yb5{bottom:307.990648px;}
.y161{bottom:307.999648px;}
.y128{bottom:312.096007px;}
.y1a8{bottom:312.914132px;}
.y8d{bottom:313.396186px;}
.y51{bottom:316.381629px;}
.y113{bottom:316.983148px;}
.yda{bottom:319.417491px;}
.y21{bottom:319.862830px;}
.yb4{bottom:322.989148px;}
.y160{bottom:322.998148px;}
.y1a7{bottom:325.660382px;}
.y127{bottom:327.094507px;}
.y8c{bottom:328.394686px;}
.y50{bottom:331.380129px;}
.y112{bottom:331.981648px;}
.yd9{bottom:334.415991px;}
.y20{bottom:334.861330px;}
.yb3{bottom:337.987648px;}
.y15f{bottom:337.996648px;}
.y1a6{bottom:338.406632px;}
.y126{bottom:342.093007px;}
.y8b{bottom:343.393186px;}
.y4f{bottom:346.378629px;}
.y111{bottom:346.980148px;}
.yd8{bottom:349.414491px;}
.y1f{bottom:349.859830px;}
.y1a5{bottom:351.152882px;}
.yb2{bottom:352.986148px;}
.y15e{bottom:352.995148px;}
.y125{bottom:357.091507px;}
.y8a{bottom:358.391686px;}
.y4e{bottom:361.377129px;}
.y1a4{bottom:363.899132px;}
.yd7{bottom:364.412991px;}
.y1e{bottom:364.858330px;}
.yb1{bottom:367.984648px;}
.y15d{bottom:367.993648px;}
.y89{bottom:373.390186px;}
.y4d{bottom:376.375629px;}
.y1a3{bottom:376.645382px;}
.yd6{bottom:379.411491px;}
.y1d{bottom:379.856830px;}
.y110{bottom:380.016148px;}
.yb0{bottom:382.983148px;}
.y15c{bottom:382.992148px;}
.y88{bottom:388.388686px;}
.y1a2{bottom:389.391632px;}
.y4c{bottom:391.374129px;}
.y1c{bottom:394.855330px;}
.y10f{bottom:395.014648px;}
.yaf{bottom:397.981648px;}
.y15b{bottom:397.990648px;}
.y1a1{bottom:402.137882px;}
.y87{bottom:403.387186px;}
.y4b{bottom:406.372629px;}
.y1b{bottom:409.853830px;}
.y10e{bottom:410.013148px;}
.y15a{bottom:412.989148px;}
.yae{bottom:412.995148px;}
.y1a0{bottom:414.884132px;}
.y86{bottom:418.385686px;}
.y4a{bottom:421.371129px;}
.y1a{bottom:424.852330px;}
.y10d{bottom:425.011648px;}
.y19f{bottom:427.630382px;}
.y159{bottom:427.987648px;}
.yad{bottom:427.993648px;}
.y85{bottom:433.385686px;}
.y49{bottom:436.372629px;}
.y10c{bottom:440.010148px;}
.y19e{bottom:440.376632px;}
.y158{bottom:442.986148px;}
.yac{bottom:442.992148px;}
.y84{bottom:448.384186px;}
.y48{bottom:451.371129px;}
.y19d{bottom:453.122882px;}
.y10b{bottom:455.008648px;}
.y157{bottom:457.984648px;}
.yab{bottom:457.990648px;}
.y19c{bottom:465.869132px;}
.y47{bottom:466.369629px;}
.y19{bottom:469.996330px;}
.y10a{bottom:470.007148px;}
.y156{bottom:472.983148px;}
.yaa{bottom:472.989148px;}
.y19b{bottom:478.615382px;}
.y46{bottom:481.369629px;}
.y83{bottom:481.391686px;}
.y109{bottom:485.005648px;}
.y18{bottom:486.493330px;}
.y155{bottom:487.981648px;}
.ya9{bottom:487.987648px;}
.y19a{bottom:491.361632px;}
.y82{bottom:496.390186px;}
.y108{bottom:500.004148px;}
.ya8{bottom:502.986148px;}
.y154{bottom:502.989148px;}
.y17{bottom:502.990330px;}
.y199{bottom:504.107882px;}
.y81{bottom:511.388686px;}
.y45{bottom:514.381629px;}
.y107{bottom:515.002648px;}
.y198{bottom:516.854132px;}
.ya7{bottom:517.984648px;}
.y153{bottom:517.987648px;}
.y16{bottom:519.487330px;}
.y80{bottom:526.387186px;}
.y44{bottom:529.380129px;}
.y197{bottom:529.600382px;}
.y106{bottom:530.001148px;}
.ya6{bottom:532.983148px;}
.y152{bottom:532.986148px;}
.y15{bottom:535.984330px;}
.y7f{bottom:541.385686px;}
.y196{bottom:542.346632px;}
.y43{bottom:544.378629px;}
.y105{bottom:544.999648px;}
.ya5{bottom:547.981648px;}
.y151{bottom:547.984648px;}
.y14{bottom:552.481330px;}
.y195{bottom:555.092882px;}
.y7e{bottom:556.385686px;}
.y42{bottom:559.377129px;}
.y104{bottom:559.998148px;}
.ya4{bottom:562.980148px;}
.y150{bottom:562.983148px;}
.y194{bottom:567.839132px;}
.y13{bottom:568.978330px;}
.y7d{bottom:571.384186px;}
.y41{bottom:574.375629px;}
.y103{bottom:574.996648px;}
.y14f{bottom:577.981648px;}
.y193{bottom:580.585382px;}
.y12{bottom:585.475330px;}
.y7c{bottom:586.384186px;}
.y40{bottom:589.374129px;}
.y102{bottom:589.995148px;}
.y14e{bottom:592.990648px;}
.y192{bottom:593.331632px;}
.y11{bottom:601.972330px;}
.y3f{bottom:604.372629px;}
.y101{bottom:604.993648px;}
.y191{bottom:606.077882px;}
.ycd{bottom:606.765148px;}
.y14d{bottom:607.989148px;}
.y10{bottom:618.469330px;}
.y190{bottom:618.824132px;}
.y3e{bottom:619.371129px;}
.y7b{bottom:619.396186px;}
.y100{bottom:619.992148px;}
.ycc{bottom:621.763648px;}
.y14c{bottom:622.987648px;}
.y18f{bottom:631.570382px;}
.y3d{bottom:634.371129px;}
.y7a{bottom:634.394686px;}
.yf{bottom:634.966330px;}
.yff{bottom:634.990648px;}
.ycb{bottom:636.762148px;}
.y14b{bottom:637.986148px;}
.y18e{bottom:644.316632px;}
.y3c{bottom:649.371129px;}
.y79{bottom:649.393186px;}
.yfe{bottom:649.989148px;}
.ye{bottom:651.463330px;}
.yca{bottom:651.760648px;}
.y14a{bottom:652.984648px;}
.y18d{bottom:657.062882px;}
.y3b{bottom:664.372629px;}
.y78{bottom:664.391686px;}
.yfd{bottom:664.987648px;}
.yc9{bottom:666.759148px;}
.yd{bottom:667.960330px;}
.y149{bottom:667.983148px;}
.y18c{bottom:669.809132px;}
.y3a{bottom:679.371129px;}
.y77{bottom:679.390186px;}
.yfc{bottom:679.986148px;}
.yc8{bottom:681.757648px;}
.y18b{bottom:682.555382px;}
.y148{bottom:682.981648px;}
.yc{bottom:684.457330px;}
.y39{bottom:694.371129px;}
.y76{bottom:694.388686px;}
.yfb{bottom:694.984648px;}
.y18a{bottom:695.301632px;}
.yc7{bottom:696.756148px;}
.y147{bottom:697.983148px;}
.yb{bottom:700.954330px;}
.y189{bottom:708.047882px;}
.y38{bottom:709.371129px;}
.y75{bottom:709.387186px;}
.yfa{bottom:709.983148px;}
.yc6{bottom:711.754648px;}
.y146{bottom:712.981648px;}
.y188{bottom:720.794132px;}
.y37{bottom:724.372629px;}
.y74{bottom:724.385686px;}
.yf9{bottom:724.981648px;}
.y1ca{bottom:725.537702px;}
.yc5{bottom:726.753148px;}
.y145{bottom:727.981648px;}
.ya{bottom:730.954330px;}
.y187{bottom:733.540382px;}
.y36{bottom:739.371129px;}
.y73{bottom:739.385686px;}
.yf8{bottom:739.980148px;}
.yc4{bottom:741.751648px;}
.y144{bottom:742.981648px;}
.y186{bottom:746.286632px;}
.y9{bottom:748.954330px;}
.y35{bottom:754.371129px;}
.y72{bottom:754.384186px;}
.yf7{bottom:754.980148px;}
.y1c9{bottom:755.534700px;}
.y143{bottom:757.981694px;}
.y185{bottom:759.032882px;}
.y34{bottom:769.369629px;}
.y71{bottom:769.384186px;}
.y1c8{bottom:770.533200px;}
.y184{bottom:771.779132px;}
.y142{bottom:772.984694px;}
.y8{bottom:781.936376px;}
.y183{bottom:784.525382px;}
.y1c7{bottom:785.531700px;}
.y141{bottom:787.983194px;}
.yf6{bottom:788.005694px;}
.y182{bottom:797.271632px;}
.y1c6{bottom:800.530200px;}
.y140{bottom:802.981694px;}
.yf5{bottom:803.004194px;}
.y181{bottom:810.017882px;}
.y1c5{bottom:815.528700px;}
.y13f{bottom:817.984694px;}
.yf4{bottom:818.002694px;}
.y180{bottom:822.764132px;}
.y7{bottom:826.942376px;}
.ya0{bottom:828.754465px;}
.y62{bottom:829.218785px;}
.y1c4{bottom:830.527200px;}
.y13e{bottom:832.983194px;}
.yf3{bottom:833.001194px;}
.y17f{bottom:835.510382px;}
.y9f{bottom:843.752965px;}
.y61{bottom:844.217285px;}
.y1c3{bottom:845.525700px;}
.y13d{bottom:847.981694px;}
.yf2{bottom:847.999694px;}
.y17e{bottom:848.256632px;}
.y9e{bottom:858.751465px;}
.y1c2{bottom:860.524200px;}
.y17d{bottom:861.002882px;}
.y13c{bottom:862.981694px;}
.yf1{bottom:862.998194px;}
.y6{bottom:871.948376px;}
.y17c{bottom:873.749132px;}
.y6f{bottom:875.778486px;}
.y13b{bottom:877.983194px;}
.yf0{bottom:877.996694px;}
.y1c1{bottom:883.012200px;}
.y17b{bottom:886.495382px;}
.y13a{bottom:892.981694px;}
.yef{bottom:892.995194px;}
.y6e{bottom:893.313486px;}
.y1c0{bottom:898.010700px;}
.y17a{bottom:899.241632px;}
.y139{bottom:907.987694px;}
.yee{bottom:907.993694px;}
.y6d{bottom:910.848486px;}
.y179{bottom:911.987882px;}
.y5{bottom:916.954376px;}
.y1bf{bottom:920.515200px;}
.y138{bottom:922.986194px;}
.yed{bottom:922.992194px;}
.y27{bottom:924.602509px;}
.y178{bottom:924.734132px;}
.y6c{bottom:928.383486px;}
.y177{bottom:937.480382px;}
.y137{bottom:937.984694px;}
.yec{bottom:937.990694px;}
.y1be{bottom:943.019700px;}
.y6b{bottom:945.918486px;}
.y176{bottom:950.226632px;}
.y136{bottom:952.983194px;}
.yeb{bottom:952.989194px;}
.y175{bottom:962.972882px;}
.y6a{bottom:963.453486px;}
.y1bd{bottom:965.524200px;}
.y135{bottom:967.981694px;}
.yea{bottom:967.987694px;}
.y174{bottom:975.719132px;}
.y1bc{bottom:980.524200px;}
.y69{bottom:980.988486px;}
.y134{bottom:982.981694px;}
.ye9{bottom:982.986194px;}
.y173{bottom:988.465382px;}
.y133{bottom:997.983194px;}
.ye8{bottom:997.984694px;}
.y68{bottom:998.523486px;}
.y172{bottom:1001.211632px;}
.y1bb{bottom:1010.530200px;}
.y132{bottom:1012.981694px;}
.ye7{bottom:1012.983194px;}
.y171{bottom:1013.957882px;}
.y67{bottom:1016.058486px;}
.y1ba{bottom:1025.528700px;}
.y170{bottom:1026.704132px;}
.ye6{bottom:1027.981694px;}
.y66{bottom:1033.593486px;}
.y16f{bottom:1039.454132px;}
.y1b9{bottom:1040.527200px;}
.ye5{bottom:1042.984694px;}
.y65{bottom:1051.128486px;}
.y1b8{bottom:1055.525700px;}
.ye4{bottom:1057.983194px;}
.y64{bottom:1068.663486px;}
.y1b7{bottom:1070.524200px;}
.ye3{bottom:1072.981694px;}
.y1b6{bottom:1085.524200px;}
.y63{bottom:1086.198486px;}
.ye2{bottom:1087.980194px;}
.y16e{bottom:1088.954132px;}
.y70{bottom:1140.640320px;}
.ya3{bottom:1140.746521px;}
.y33{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h10{height:30.684677px;}
.h3{height:34.523438px;}
.h2b{height:35.411133px;}
.ha{height:38.838867px;}
.h1d{height:41.538000px;}
.h12{height:41.644740px;}
.h1c{height:43.008000px;}
.h1e{height:43.154297px;}
.h2e{height:44.505000px;}
.h2c{height:45.090000px;}
.h2{height:45.679688px;}
.h4{height:45.703125px;}
.h2d{height:46.080000px;}
.h17{height:47.469727px;}
.h11{height:48.534668px;}
.h8{height:49.183594px;}
.h13{height:49.373525px;}
.h2f{height:50.439000px;}
.hc{height:53.406000px;}
.h1f{height:53.553863px;}
.h18{height:53.553955px;}
.h16{height:53.566046px;}
.h29{height:53.571863px;}
.h1a{height:53.571909px;}
.h2a{height:53.577863px;}
.h27{height:53.583680px;}
.h23{height:53.583907px;}
.h21{height:53.589863px;}
.h24{height:53.595680px;}
.he{height:53.601314px;}
.h26{height:53.601680px;}
.h28{height:53.601863px;}
.h15{height:53.602046px;}
.hd{height:53.607314px;}
.h25{height:53.607680px;}
.h19{height:53.607863px;}
.h14{height:53.608046px;}
.h20{height:54.054000px;}
.h1b{height:54.108000px;}
.hb{height:55.296000px;}
.h5{height:57.099609px;}
.h9{height:57.128906px;}
.h22{height:62.841797px;}
.hf{height:102.832031px;}
.h7{height:112.201172px;}
.h6{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.228350px;}
.x3{left:61.887897px;}
.x7{left:141.395702px;}
.x5{left:233.858253px;}
.xa{left:238.570793px;}
.x6{left:251.852997px;}
.xc{left:254.108253px;}
.xe{left:302.498703px;}
.x4{left:586.814117px;}
.x8{left:609.426453px;}
.xb{left:797.390808px;}
.x2{left:798.901611px;}
.xd{left:819.610474px;}
.x1{left:825.774628px;}
@media print{
.v5{vertical-align:-16.800130pt;}
.v4{vertical-align:-15.866659pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.564861pt;}
.v2{vertical-align:18.666667pt;}
.ls48{letter-spacing:-1.440000pt;}
.ls49{letter-spacing:-1.200000pt;}
.ls1b{letter-spacing:-0.576000pt;}
.ls4e{letter-spacing:-0.480000pt;}
.ls1c{letter-spacing:-0.384000pt;}
.ls45{letter-spacing:-0.360000pt;}
.ls2f{letter-spacing:-0.336000pt;}
.ls4a{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.288000pt;}
.lsf{letter-spacing:-0.240000pt;}
.ls46{letter-spacing:-0.200000pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.187200pt;}
.ls30{letter-spacing:-0.156000pt;}
.ls28{letter-spacing:-0.144000pt;}
.ls4d{letter-spacing:-0.120000pt;}
.ls31{letter-spacing:-0.096000pt;}
.ls29{letter-spacing:-0.093600pt;}
.ls43{letter-spacing:-0.080000pt;}
.lse{letter-spacing:-0.048000pt;}
.ls44{letter-spacing:-0.040000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011591pt;}
.ls2{letter-spacing:0.011754pt;}
.ls4{letter-spacing:0.012242pt;}
.ls9{letter-spacing:0.016025pt;}
.ls26{letter-spacing:0.031200pt;}
.ls13{letter-spacing:0.033766pt;}
.ls3b{letter-spacing:0.040000pt;}
.ls12{letter-spacing:0.048000pt;}
.ls34{letter-spacing:0.062400pt;}
.ls4b{letter-spacing:0.080000pt;}
.ls15{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.111935pt;}
.ls7{letter-spacing:0.112553pt;}
.ls3e{letter-spacing:0.120000pt;}
.ls37{letter-spacing:0.124800pt;}
.ls32{letter-spacing:0.140400pt;}
.ls33{letter-spacing:0.141188pt;}
.ls11{letter-spacing:0.141350pt;}
.ls1a{letter-spacing:0.144000pt;}
.ls6{letter-spacing:0.156000pt;}
.ls39{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.172800pt;}
.ls3a{letter-spacing:0.180000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls3f{letter-spacing:0.200000pt;}
.ls25{letter-spacing:0.206392pt;}
.ls2a{letter-spacing:0.211200pt;}
.ls2b{letter-spacing:0.218400pt;}
.ls38{letter-spacing:0.234667pt;}
.lsc{letter-spacing:0.240000pt;}
.ls36{letter-spacing:0.249600pt;}
.ls23{letter-spacing:0.278400pt;}
.ls4c{letter-spacing:0.280000pt;}
.ls14{letter-spacing:0.280800pt;}
.ls1e{letter-spacing:0.288000pt;}
.ls17{letter-spacing:0.312000pt;}
.ls47{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.336000pt;}
.ls40{letter-spacing:0.360000pt;}
.ls22{letter-spacing:0.369600pt;}
.ls1d{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.432000pt;}
.ls35{letter-spacing:0.436800pt;}
.ls3d{letter-spacing:0.460000pt;}
.ls16{letter-spacing:0.480000pt;}
.ls2e{letter-spacing:0.528000pt;}
.ls2d{letter-spacing:0.576000pt;}
.ls21{letter-spacing:0.624000pt;}
.ls27{letter-spacing:0.672000pt;}
.ls20{letter-spacing:0.720000pt;}
.ls1f{letter-spacing:0.912000pt;}
.ls41{letter-spacing:1.151993pt;}
.ls42{letter-spacing:1.608000pt;}
.ls3c{letter-spacing:1.631995pt;}
.ls0{letter-spacing:1.664000pt;}
.ls1{letter-spacing:2.666667pt;}
.ls10{letter-spacing:11.403600pt;}
.ws0{word-spacing:-42.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws84{word-spacing:-12.320000pt;}
.ws57{word-spacing:-12.085333pt;}
.ws18{word-spacing:-11.403600pt;}
.ws55{word-spacing:-11.232000pt;}
.wsa{word-spacing:-11.136000pt;}
.ws53{word-spacing:-11.088000pt;}
.ws51{word-spacing:-11.040000pt;}
.ws1f{word-spacing:-10.992000pt;}
.ws65{word-spacing:-10.896000pt;}
.wsd{word-spacing:-10.848000pt;}
.ws7f{word-spacing:-10.800000pt;}
.ws58{word-spacing:-10.656000pt;}
.ws3e{word-spacing:-10.512000pt;}
.ws1e{word-spacing:-10.416000pt;}
.ws4{word-spacing:-10.128000pt;}
.ws89{word-spacing:-9.520000pt;}
.ws88{word-spacing:-9.260000pt;}
.ws85{word-spacing:-9.080000pt;}
.ws8b{word-spacing:-8.960000pt;}
.ws86{word-spacing:-8.800000pt;}
.ws87{word-spacing:-8.680000pt;}
.ws1a{word-spacing:-8.533333pt;}
.ws8a{word-spacing:-7.960000pt;}
.ws7a{word-spacing:-7.519200pt;}
.ws1c{word-spacing:-7.394400pt;}
.ws54{word-spacing:-7.363200pt;}
.ws7b{word-spacing:-7.332000pt;}
.ws66{word-spacing:-7.300800pt;}
.ws1b{word-spacing:-7.238400pt;}
.ws7c{word-spacing:-7.207200pt;}
.ws79{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws52{word-spacing:-7.113600pt;}
.ws5{word-spacing:-7.082400pt;}
.ws56{word-spacing:-6.988800pt;}
.ws67{word-spacing:-6.926400pt;}
.ws1d{word-spacing:-6.895200pt;}
.ws6{word-spacing:-5.893333pt;}
.ws9c{word-spacing:-5.480000pt;}
.ws93{word-spacing:-5.360000pt;}
.ws94{word-spacing:-5.160000pt;}
.ws3a{word-spacing:-4.896000pt;}
.ws3c{word-spacing:-3.808000pt;}
.ws68{word-spacing:-2.784000pt;}
.ws45{word-spacing:-1.920000pt;}
.ws3f{word-spacing:-1.440000pt;}
.ws78{word-spacing:-1.200000pt;}
.wse{word-spacing:-1.104000pt;}
.ws25{word-spacing:-1.056000pt;}
.ws5b{word-spacing:-1.008000pt;}
.ws4a{word-spacing:-0.960000pt;}
.ws8d{word-spacing:-0.920000pt;}
.ws29{word-spacing:-0.912000pt;}
.ws98{word-spacing:-0.880000pt;}
.wsf{word-spacing:-0.864000pt;}
.ws2c{word-spacing:-0.816000pt;}
.ws8{word-spacing:-0.810667pt;}
.ws81{word-spacing:-0.768000pt;}
.ws62{word-spacing:-0.720000pt;}
.ws9b{word-spacing:-0.640000pt;}
.ws7d{word-spacing:-0.624000pt;}
.wsb{word-spacing:-0.576000pt;}
.ws43{word-spacing:-0.528000pt;}
.ws90{word-spacing:-0.520000pt;}
.ws36{word-spacing:-0.480000pt;}
.ws9d{word-spacing:-0.440000pt;}
.ws69{word-spacing:-0.432000pt;}
.ws35{word-spacing:-0.384000pt;}
.ws59{word-spacing:-0.336000pt;}
.ws22{word-spacing:-0.312000pt;}
.ws5d{word-spacing:-0.288000pt;}
.ws61{word-spacing:-0.280800pt;}
.ws20{word-spacing:-0.240000pt;}
.ws9f{word-spacing:-0.234667pt;}
.ws8f{word-spacing:-0.200000pt;}
.ws9{word-spacing:-0.192000pt;}
.ws8e{word-spacing:-0.160000pt;}
.ws60{word-spacing:-0.144000pt;}
.ws63{word-spacing:-0.096000pt;}
.ws91{word-spacing:-0.080000pt;}
.ws24{word-spacing:-0.048000pt;}
.ws9e{word-spacing:-0.040000pt;}
.ws3{word-spacing:-0.034667pt;}
.ws7{word-spacing:0.000000pt;}
.ws99{word-spacing:0.040000pt;}
.ws42{word-spacing:0.048000pt;}
.ws5a{word-spacing:0.096000pt;}
.ws82{word-spacing:0.144000pt;}
.ws23{word-spacing:0.187200pt;}
.ws6c{word-spacing:0.192000pt;}
.ws26{word-spacing:0.240000pt;}
.ws64{word-spacing:0.288000pt;}
.ws31{word-spacing:0.336000pt;}
.ws3b{word-spacing:0.384000pt;}
.ws2f{word-spacing:0.480000pt;}
.ws2d{word-spacing:0.528000pt;}
.ws4c{word-spacing:0.576000pt;}
.ws96{word-spacing:0.600000pt;}
.ws6d{word-spacing:0.624000pt;}
.ws8c{word-spacing:0.640000pt;}
.ws5c{word-spacing:0.672000pt;}
.ws80{word-spacing:0.768000pt;}
.ws9a{word-spacing:0.800000pt;}
.ws30{word-spacing:0.816000pt;}
.ws32{word-spacing:0.864000pt;}
.ws95{word-spacing:0.880000pt;}
.ws5e{word-spacing:0.912000pt;}
.ws97{word-spacing:0.920000pt;}
.ws83{word-spacing:0.960000pt;}
.ws4d{word-spacing:1.008000pt;}
.ws92{word-spacing:1.040000pt;}
.wsc{word-spacing:1.056000pt;}
.ws21{word-spacing:1.104000pt;}
.ws75{word-spacing:1.296000pt;}
.ws4f{word-spacing:1.344000pt;}
.ws6a{word-spacing:1.440000pt;}
.ws76{word-spacing:1.488000pt;}
.ws6e{word-spacing:1.536000pt;}
.ws71{word-spacing:1.584000pt;}
.ws70{word-spacing:1.632000pt;}
.ws5f{word-spacing:1.680000pt;}
.ws7e{word-spacing:1.776000pt;}
.wsa2{word-spacing:1.824000pt;}
.ws38{word-spacing:1.872000pt;}
.ws77{word-spacing:1.920000pt;}
.ws3d{word-spacing:2.064000pt;}
.ws4e{word-spacing:2.112000pt;}
.ws47{word-spacing:2.304000pt;}
.ws48{word-spacing:2.352000pt;}
.ws4b{word-spacing:2.592000pt;}
.ws39{word-spacing:2.688000pt;}
.ws27{word-spacing:2.736000pt;}
.ws2b{word-spacing:2.784000pt;}
.ws46{word-spacing:2.832000pt;}
.ws72{word-spacing:2.928000pt;}
.ws49{word-spacing:3.024000pt;}
.ws6f{word-spacing:3.216000pt;}
.ws16{word-spacing:3.490667pt;}
.ws41{word-spacing:3.504000pt;}
.ws28{word-spacing:3.696000pt;}
.ws34{word-spacing:3.744000pt;}
.ws44{word-spacing:4.080000pt;}
.ws37{word-spacing:4.464000pt;}
.ws2a{word-spacing:4.704000pt;}
.ws74{word-spacing:4.752000pt;}
.ws33{word-spacing:4.848000pt;}
.wsa3{word-spacing:5.040000pt;}
.ws6b{word-spacing:5.136000pt;}
.ws17{word-spacing:5.666667pt;}
.wsa4{word-spacing:5.712000pt;}
.wsa0{word-spacing:5.760000pt;}
.ws40{word-spacing:5.904000pt;}
.wsa1{word-spacing:6.000000pt;}
.ws11{word-spacing:6.346667pt;}
.ws15{word-spacing:6.573333pt;}
.ws73{word-spacing:6.576000pt;}
.ws2e{word-spacing:6.720000pt;}
.ws14{word-spacing:7.616000pt;}
.ws12{word-spacing:9.474667pt;}
.ws13{word-spacing:11.152000pt;}
.ws50{word-spacing:13.584000pt;}
.ws19{word-spacing:17.544000pt;}
.ws10{word-spacing:30.237333pt;}
._2d{margin-left:-18.624006pt;}
._18{margin-left:-15.325260pt;}
._2f{margin-left:-13.813677pt;}
._2b{margin-left:-12.797173pt;}
._15{margin-left:-11.869144pt;}
._8{margin-left:-10.185598pt;}
._14{margin-left:-8.735354pt;}
._2c{margin-left:-7.403733pt;}
._2e{margin-left:-6.432012pt;}
._17{margin-left:-5.447467pt;}
._3{margin-left:-3.922566pt;}
._2{margin-left:-2.642219pt;}
._0{margin-left:-1.668267pt;}
._4{width:0.901677pt;}
._5{width:1.905600pt;}
._f{width:3.020512pt;}
._10{width:3.913836pt;}
._30{width:5.642666pt;}
._31{width:7.042666pt;}
._7{width:9.847466pt;}
._b{width:11.100800pt;}
._19{width:12.994566pt;}
._12{width:14.665129pt;}
._11{width:16.537600pt;}
._13{width:18.167735pt;}
._16{width:42.554134pt;}
._1b{width:49.429333pt;}
._d{width:55.492799pt;}
._25{width:65.927123pt;}
._c{width:74.105065pt;}
._e{width:75.489598pt;}
._6{width:104.649598pt;}
._a{width:133.521598pt;}
._9{width:143.817598pt;}
._26{width:158.666667pt;}
._1f{width:178.976000pt;}
._1d{width:187.488000pt;}
._24{width:204.720016pt;}
._23{width:213.920000pt;}
._29{width:223.328000pt;}
._1a{width:228.649256pt;}
._21{width:231.840000pt;}
._1{width:281.945584pt;}
._27{width:288.961298pt;}
._22{width:332.846589pt;}
._1e{width:335.092267pt;}
._1c{width:352.414933pt;}
._20{width:404.208000pt;}
._2a{width:434.224000pt;}
._28{width:446.009600pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:2.843733pt;}
.y32{bottom:2.843867pt;}
.yce{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y31{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.ya2{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y30{bottom:60.477735pt;}
.y60{bottom:65.222802pt;}
.y9d{bottom:65.262387pt;}
.y122{bottom:65.762799pt;}
.yd5{bottom:69.768132pt;}
.yc3{bottom:71.100132pt;}
.y2f{bottom:73.805735pt;}
.y2e{bottom:73.816402pt;}
.y5f{bottom:78.554802pt;}
.y9c{bottom:78.594387pt;}
.y121{bottom:79.094799pt;}
.y124{bottom:81.761465pt;}
.y1b5{bottom:81.964531pt;}
.yd4{bottom:83.100132pt;}
.yc2{bottom:84.432132pt;}
.y2d{bottom:87.144402pt;}
.y5e{bottom:91.886802pt;}
.y9b{bottom:91.926387pt;}
.y120{bottom:92.433465pt;}
.y123{bottom:95.093465pt;}
.y1b4{bottom:95.296531pt;}
.yd3{bottom:96.432132pt;}
.yc1{bottom:97.764132pt;}
.y16d{bottom:97.769465pt;}
.y2c{bottom:100.477735pt;}
.y5d{bottom:105.218802pt;}
.y9a{bottom:105.258387pt;}
.y11f{bottom:105.765465pt;}
.y1b3{bottom:108.628531pt;}
.yd2{bottom:109.764132pt;}
.yc0{bottom:111.096132pt;}
.y16c{bottom:111.101465pt;}
.y2b{bottom:113.811069pt;}
.y5c{bottom:118.560135pt;}
.y99{bottom:118.590387pt;}
.y11e{bottom:119.097465pt;}
.y1b2{bottom:121.960531pt;}
.yd1{bottom:123.096132pt;}
.ybf{bottom:124.428132pt;}
.y16b{bottom:124.433465pt;}
.y2a{bottom:127.144402pt;}
.y5b{bottom:131.892135pt;}
.y98{bottom:131.922387pt;}
.y11d{bottom:132.429465pt;}
.y1b1{bottom:135.292531pt;}
.yd0{bottom:136.428132pt;}
.ybe{bottom:137.760132pt;}
.y16a{bottom:137.765465pt;}
.y29{bottom:140.477735pt;}
.y5a{bottom:145.224135pt;}
.y97{bottom:145.254387pt;}
.y11c{bottom:145.761465pt;}
.y1b0{bottom:148.625865pt;}
.ycf{bottom:149.760132pt;}
.ybd{bottom:151.093465pt;}
.y169{bottom:151.097465pt;}
.y131{bottom:157.430673pt;}
.y28{bottom:157.772400pt;}
.y59{bottom:158.556135pt;}
.y96{bottom:158.586387pt;}
.y11b{bottom:159.093465pt;}
.y168{bottom:164.429465pt;}
.y130{bottom:170.762673pt;}
.y58{bottom:171.888135pt;}
.y95{bottom:171.918387pt;}
.y11a{bottom:172.426799pt;}
.y1af{bottom:175.296542pt;}
.y167{bottom:177.761465pt;}
.ybc{bottom:180.428132pt;}
.y12f{bottom:184.094673pt;}
.y57{bottom:185.220135pt;}
.y94{bottom:185.250387pt;}
.y1ae{bottom:188.628542pt;}
.ye1{bottom:190.602659pt;}
.y166{bottom:191.093465pt;}
.ybb{bottom:193.765465pt;}
.y12e{bottom:197.426673pt;}
.y56{bottom:198.552135pt;}
.y93{bottom:198.582387pt;}
.y26{bottom:201.606528pt;}
.y119{bottom:201.770799pt;}
.y1ad{bottom:201.960542pt;}
.ye0{bottom:203.934659pt;}
.y165{bottom:204.426799pt;}
.yba{bottom:207.097465pt;}
.y12d{bottom:210.758673pt;}
.y55{bottom:211.884135pt;}
.y92{bottom:211.914387pt;}
.y25{bottom:214.938528pt;}
.y118{bottom:215.102799pt;}
.y1ac{bottom:215.292542pt;}
.ydf{bottom:217.266659pt;}
.yb9{bottom:220.429465pt;}
.y12c{bottom:224.090673pt;}
.y91{bottom:225.246387pt;}
.y24{bottom:228.271861pt;}
.y117{bottom:228.434799pt;}
.y1ab{bottom:228.625875pt;}
.yde{bottom:230.598659pt;}
.yb8{bottom:233.761465pt;}
.y164{bottom:233.781465pt;}
.y12b{bottom:237.422673pt;}
.y90{bottom:238.578387pt;}
.y54{bottom:241.218802pt;}
.y23{bottom:241.662516pt;}
.y116{bottom:241.766799pt;}
.ydd{bottom:243.930659pt;}
.yb7{bottom:247.105465pt;}
.y163{bottom:247.113465pt;}
.y12a{bottom:250.754673pt;}
.y8f{bottom:251.910387pt;}
.y53{bottom:254.564115pt;}
.y22{bottom:254.994516pt;}
.y115{bottom:255.098799pt;}
.y1aa{bottom:255.485895pt;}
.ydc{bottom:257.262659pt;}
.yb6{bottom:260.437465pt;}
.y162{bottom:260.445465pt;}
.y129{bottom:264.086673pt;}
.y8e{bottom:265.242387pt;}
.y1a9{bottom:266.815895pt;}
.y52{bottom:267.896115pt;}
.y114{bottom:268.430799pt;}
.ydb{bottom:270.594659pt;}
.yb5{bottom:273.769465pt;}
.y161{bottom:273.777465pt;}
.y128{bottom:277.418673pt;}
.y1a8{bottom:278.145895pt;}
.y8d{bottom:278.574387pt;}
.y51{bottom:281.228115pt;}
.y113{bottom:281.762799pt;}
.yda{bottom:283.926659pt;}
.y21{bottom:284.322516pt;}
.yb4{bottom:287.101465pt;}
.y160{bottom:287.109465pt;}
.y1a7{bottom:289.475895pt;}
.y127{bottom:290.750673pt;}
.y8c{bottom:291.906387pt;}
.y50{bottom:294.560115pt;}
.y112{bottom:295.094799pt;}
.yd9{bottom:297.258659pt;}
.y20{bottom:297.654516pt;}
.yb3{bottom:300.433465pt;}
.y15f{bottom:300.441465pt;}
.y1a6{bottom:300.805895pt;}
.y126{bottom:304.082673pt;}
.y8b{bottom:305.238387pt;}
.y4f{bottom:307.892115pt;}
.y111{bottom:308.426799pt;}
.yd8{bottom:310.590659pt;}
.y1f{bottom:310.986516pt;}
.y1a5{bottom:312.135895pt;}
.yb2{bottom:313.765465pt;}
.y15e{bottom:313.773465pt;}
.y125{bottom:317.414673pt;}
.y8a{bottom:318.570387pt;}
.y4e{bottom:321.224115pt;}
.y1a4{bottom:323.465895pt;}
.yd7{bottom:323.922659pt;}
.y1e{bottom:324.318516pt;}
.yb1{bottom:327.097465pt;}
.y15d{bottom:327.105465pt;}
.y89{bottom:331.902387pt;}
.y4d{bottom:334.556115pt;}
.y1a3{bottom:334.795895pt;}
.yd6{bottom:337.254659pt;}
.y1d{bottom:337.650516pt;}
.y110{bottom:337.792132pt;}
.yb0{bottom:340.429465pt;}
.y15c{bottom:340.437465pt;}
.y88{bottom:345.234387pt;}
.y1a2{bottom:346.125895pt;}
.y4c{bottom:347.888115pt;}
.y1c{bottom:350.982516pt;}
.y10f{bottom:351.124132pt;}
.yaf{bottom:353.761465pt;}
.y15b{bottom:353.769465pt;}
.y1a1{bottom:357.455895pt;}
.y87{bottom:358.566387pt;}
.y4b{bottom:361.220115pt;}
.y1b{bottom:364.314516pt;}
.y10e{bottom:364.456132pt;}
.y15a{bottom:367.101465pt;}
.yae{bottom:367.106799pt;}
.y1a0{bottom:368.785895pt;}
.y86{bottom:371.898387pt;}
.y4a{bottom:374.552115pt;}
.y1a{bottom:377.646516pt;}
.y10d{bottom:377.788132pt;}
.y19f{bottom:380.115895pt;}
.y159{bottom:380.433465pt;}
.yad{bottom:380.438799pt;}
.y85{bottom:385.231721pt;}
.y49{bottom:387.886781pt;}
.y10c{bottom:391.120132pt;}
.y19e{bottom:391.445895pt;}
.y158{bottom:393.765465pt;}
.yac{bottom:393.770799pt;}
.y84{bottom:398.563721pt;}
.y48{bottom:401.218781pt;}
.y19d{bottom:402.775895pt;}
.y10b{bottom:404.452132pt;}
.y157{bottom:407.097465pt;}
.yab{bottom:407.102799pt;}
.y19c{bottom:414.105895pt;}
.y47{bottom:414.550781pt;}
.y19{bottom:417.774516pt;}
.y10a{bottom:417.784132pt;}
.y156{bottom:420.429465pt;}
.yaa{bottom:420.434799pt;}
.y19b{bottom:425.435895pt;}
.y46{bottom:427.884115pt;}
.y83{bottom:427.903721pt;}
.y109{bottom:431.116132pt;}
.y18{bottom:432.438516pt;}
.y155{bottom:433.761465pt;}
.ya9{bottom:433.766799pt;}
.y19a{bottom:436.765895pt;}
.y82{bottom:441.235721pt;}
.y108{bottom:444.448132pt;}
.ya8{bottom:447.098799pt;}
.y154{bottom:447.101465pt;}
.y17{bottom:447.102516pt;}
.y199{bottom:448.095895pt;}
.y81{bottom:454.567721pt;}
.y45{bottom:457.228115pt;}
.y107{bottom:457.780132pt;}
.y198{bottom:459.425895pt;}
.ya7{bottom:460.430799pt;}
.y153{bottom:460.433465pt;}
.y16{bottom:461.766516pt;}
.y80{bottom:467.899721pt;}
.y44{bottom:470.560115pt;}
.y197{bottom:470.755895pt;}
.y106{bottom:471.112132pt;}
.ya6{bottom:473.762799pt;}
.y152{bottom:473.765465pt;}
.y15{bottom:476.430516pt;}
.y7f{bottom:481.231721pt;}
.y196{bottom:482.085895pt;}
.y43{bottom:483.892115pt;}
.y105{bottom:484.444132pt;}
.ya5{bottom:487.094799pt;}
.y151{bottom:487.097465pt;}
.y14{bottom:491.094516pt;}
.y195{bottom:493.415895pt;}
.y7e{bottom:494.565054pt;}
.y42{bottom:497.224115pt;}
.y104{bottom:497.776132pt;}
.ya4{bottom:500.426799pt;}
.y150{bottom:500.429465pt;}
.y194{bottom:504.745895pt;}
.y13{bottom:505.758516pt;}
.y7d{bottom:507.897054pt;}
.y41{bottom:510.556115pt;}
.y103{bottom:511.108132pt;}
.y14f{bottom:513.761465pt;}
.y193{bottom:516.075895pt;}
.y12{bottom:520.422516pt;}
.y7c{bottom:521.230387pt;}
.y40{bottom:523.888115pt;}
.y102{bottom:524.440132pt;}
.y14e{bottom:527.102799pt;}
.y192{bottom:527.405895pt;}
.y11{bottom:535.086516pt;}
.y3f{bottom:537.220115pt;}
.y101{bottom:537.772132pt;}
.y191{bottom:538.735895pt;}
.ycd{bottom:539.346798pt;}
.y14d{bottom:540.434799pt;}
.y10{bottom:549.750516pt;}
.y190{bottom:550.065895pt;}
.y3e{bottom:550.552115pt;}
.y7b{bottom:550.574387pt;}
.y100{bottom:551.104132pt;}
.ycc{bottom:552.678798pt;}
.y14c{bottom:553.766799pt;}
.y18f{bottom:561.395895pt;}
.y3d{bottom:563.885448pt;}
.y7a{bottom:563.906387pt;}
.yf{bottom:564.414516pt;}
.yff{bottom:564.436132pt;}
.ycb{bottom:566.010798pt;}
.y14b{bottom:567.098799pt;}
.y18e{bottom:572.725895pt;}
.y3c{bottom:577.218781pt;}
.y79{bottom:577.238387pt;}
.yfe{bottom:577.768132pt;}
.ye{bottom:579.078516pt;}
.yca{bottom:579.342798pt;}
.y14a{bottom:580.430799pt;}
.y18d{bottom:584.055895pt;}
.y3b{bottom:590.553448pt;}
.y78{bottom:590.570387pt;}
.yfd{bottom:591.100132pt;}
.yc9{bottom:592.674798pt;}
.yd{bottom:593.742516pt;}
.y149{bottom:593.762799pt;}
.y18c{bottom:595.385895pt;}
.y3a{bottom:603.885448pt;}
.y77{bottom:603.902387pt;}
.yfc{bottom:604.432132pt;}
.yc8{bottom:606.006798pt;}
.y18b{bottom:606.715895pt;}
.y148{bottom:607.094799pt;}
.yc{bottom:608.406516pt;}
.y39{bottom:617.218781pt;}
.y76{bottom:617.234387pt;}
.yfb{bottom:617.764132pt;}
.y18a{bottom:618.045895pt;}
.yc7{bottom:619.338798pt;}
.y147{bottom:620.429465pt;}
.yb{bottom:623.070516pt;}
.y189{bottom:629.375895pt;}
.y38{bottom:630.552115pt;}
.y75{bottom:630.566387pt;}
.yfa{bottom:631.096132pt;}
.yc6{bottom:632.670798pt;}
.y146{bottom:633.761465pt;}
.y188{bottom:640.705895pt;}
.y37{bottom:643.886781pt;}
.y74{bottom:643.898387pt;}
.yf9{bottom:644.428132pt;}
.y1ca{bottom:644.922401pt;}
.yc5{bottom:646.002798pt;}
.y145{bottom:647.094799pt;}
.ya{bottom:649.737183pt;}
.y187{bottom:652.035895pt;}
.y36{bottom:657.218781pt;}
.y73{bottom:657.231721pt;}
.yf8{bottom:657.760132pt;}
.yc4{bottom:659.334798pt;}
.y144{bottom:660.428132pt;}
.y186{bottom:663.365895pt;}
.y9{bottom:665.737183pt;}
.y35{bottom:670.552115pt;}
.y72{bottom:670.563721pt;}
.yf7{bottom:671.093465pt;}
.y1c9{bottom:671.586400pt;}
.y143{bottom:673.761506pt;}
.y185{bottom:674.695895pt;}
.y34{bottom:683.884115pt;}
.y71{bottom:683.897054pt;}
.y1c8{bottom:684.918400pt;}
.y184{bottom:686.025895pt;}
.y142{bottom:687.097506pt;}
.y8{bottom:695.054557pt;}
.y183{bottom:697.355895pt;}
.y1c7{bottom:698.250400pt;}
.y141{bottom:700.429506pt;}
.yf6{bottom:700.449506pt;}
.y182{bottom:708.685895pt;}
.y1c6{bottom:711.582400pt;}
.y140{bottom:713.761506pt;}
.yf5{bottom:713.781506pt;}
.y181{bottom:720.015895pt;}
.y1c5{bottom:724.914400pt;}
.y13f{bottom:727.097506pt;}
.yf4{bottom:727.113506pt;}
.y180{bottom:731.345895pt;}
.y7{bottom:735.059890pt;}
.ya0{bottom:736.670635pt;}
.y62{bottom:737.083365pt;}
.y1c4{bottom:738.246400pt;}
.y13e{bottom:740.429506pt;}
.yf3{bottom:740.445506pt;}
.y17f{bottom:742.675895pt;}
.y9f{bottom:750.002635pt;}
.y61{bottom:750.415365pt;}
.y1c3{bottom:751.578400pt;}
.y13d{bottom:753.761506pt;}
.yf2{bottom:753.777506pt;}
.y17e{bottom:754.005895pt;}
.y9e{bottom:763.334635pt;}
.y1c2{bottom:764.910400pt;}
.y17d{bottom:765.335895pt;}
.y13c{bottom:767.094839pt;}
.yf1{bottom:767.109506pt;}
.y6{bottom:775.065223pt;}
.y17c{bottom:776.665895pt;}
.y6f{bottom:778.469766pt;}
.y13b{bottom:780.429506pt;}
.yf0{bottom:780.441506pt;}
.y1c1{bottom:784.899733pt;}
.y17b{bottom:787.995895pt;}
.y13a{bottom:793.761506pt;}
.yef{bottom:793.773506pt;}
.y6e{bottom:794.056432pt;}
.y1c0{bottom:798.231733pt;}
.y17a{bottom:799.325895pt;}
.y139{bottom:807.100173pt;}
.yee{bottom:807.105506pt;}
.y6d{bottom:809.643099pt;}
.y179{bottom:810.655895pt;}
.y5{bottom:815.070557pt;}
.y1bf{bottom:818.235733pt;}
.y138{bottom:820.432173pt;}
.yed{bottom:820.437506pt;}
.y27{bottom:821.868896pt;}
.y178{bottom:821.985895pt;}
.y6c{bottom:825.229766pt;}
.y177{bottom:833.315895pt;}
.y137{bottom:833.764173pt;}
.yec{bottom:833.769506pt;}
.y1be{bottom:838.239733pt;}
.y6b{bottom:840.816432pt;}
.y176{bottom:844.645895pt;}
.y136{bottom:847.096173pt;}
.yeb{bottom:847.101506pt;}
.y175{bottom:855.975895pt;}
.y6a{bottom:856.403099pt;}
.y1bd{bottom:858.243733pt;}
.y135{bottom:860.428173pt;}
.yea{bottom:860.433506pt;}
.y174{bottom:867.305895pt;}
.y1bc{bottom:871.577067pt;}
.y69{bottom:871.989766pt;}
.y134{bottom:873.761506pt;}
.ye9{bottom:873.765506pt;}
.y173{bottom:878.635895pt;}
.y133{bottom:887.096173pt;}
.ye8{bottom:887.097506pt;}
.y68{bottom:887.576432pt;}
.y172{bottom:889.965895pt;}
.y1bb{bottom:898.249067pt;}
.y132{bottom:900.428173pt;}
.ye7{bottom:900.429506pt;}
.y171{bottom:901.295895pt;}
.y67{bottom:903.163099pt;}
.y1ba{bottom:911.581067pt;}
.y170{bottom:912.625895pt;}
.ye6{bottom:913.761506pt;}
.y66{bottom:918.749766pt;}
.y16f{bottom:923.959229pt;}
.y1b9{bottom:924.913067pt;}
.ye5{bottom:927.097506pt;}
.y65{bottom:934.336432pt;}
.y1b8{bottom:938.245067pt;}
.ye4{bottom:940.429506pt;}
.y64{bottom:949.923099pt;}
.y1b7{bottom:951.577067pt;}
.ye3{bottom:953.761506pt;}
.y1b6{bottom:964.910400pt;}
.y63{bottom:965.509766pt;}
.ye2{bottom:967.093506pt;}
.y16e{bottom:967.959229pt;}
.y70{bottom:1013.902507pt;}
.ya3{bottom:1013.996908pt;}
.y33{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h10{height:27.275268pt;}
.h3{height:30.687500pt;}
.h2b{height:31.476562pt;}
.ha{height:34.523438pt;}
.h1d{height:36.922667pt;}
.h12{height:37.017547pt;}
.h1c{height:38.229333pt;}
.h1e{height:38.359375pt;}
.h2e{height:39.560000pt;}
.h2c{height:40.080000pt;}
.h2{height:40.604167pt;}
.h4{height:40.625000pt;}
.h2d{height:40.960000pt;}
.h17{height:42.195312pt;}
.h11{height:43.141927pt;}
.h8{height:43.718750pt;}
.h13{height:43.887578pt;}
.h2f{height:44.834667pt;}
.hc{height:47.472000pt;}
.h1f{height:47.603434pt;}
.h18{height:47.603515pt;}
.h16{height:47.614264pt;}
.h29{height:47.619434pt;}
.h1a{height:47.619475pt;}
.h2a{height:47.624767pt;}
.h27{height:47.629938pt;}
.h23{height:47.630139pt;}
.h21{height:47.635434pt;}
.h24{height:47.640605pt;}
.he{height:47.645612pt;}
.h26{height:47.645938pt;}
.h28{height:47.646101pt;}
.h15{height:47.646264pt;}
.hd{height:47.650946pt;}
.h25{height:47.651271pt;}
.h19{height:47.651434pt;}
.h14{height:47.651597pt;}
.h20{height:48.048000pt;}
.h1b{height:48.096000pt;}
.hb{height:49.152000pt;}
.h5{height:50.755208pt;}
.h9{height:50.781250pt;}
.h22{height:55.859375pt;}
.hf{height:91.406250pt;}
.h7{height:99.734375pt;}
.h6{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.425200pt;}
.x3{left:55.011464pt;}
.x7{left:125.685069pt;}
.x5{left:207.874003pt;}
.xa{left:212.062927pt;}
.x6{left:223.869330pt;}
.xc{left:225.874003pt;}
.xe{left:268.887736pt;}
.x4{left:521.612549pt;}
.x8{left:541.712402pt;}
.xb{left:708.791829pt;}
.x2{left:710.134766pt;}
.xd{left:728.542643pt;}
.x1{left:734.021891pt;}
}




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