
    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_7fb535b53892ac7d26b2d888.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_191ce23b538a20b24f842538.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_47367ddf45afb207bfbb2f86.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_7233d3fdc0ccbf68da4d3f5b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_438ab9095ef52e2f3ea5d7b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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);}
.v3{vertical-align:-15.300000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.169000px;}
.v2{vertical-align:19.212000px;}
.ls9{letter-spacing:-1.515150px;}
.lsa{letter-spacing:-1.226550px;}
.ls4{letter-spacing:-0.570000px;}
.ls13{letter-spacing:-0.315000px;}
.ls17{letter-spacing:-0.255000px;}
.ls14{letter-spacing:-0.204750px;}
.ls16{letter-spacing:-0.165750px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.001800px;}
.ls12{letter-spacing:0.006300px;}
.lse{letter-spacing:0.006900px;}
.ls2{letter-spacing:0.007800px;}
.ls6{letter-spacing:0.008400px;}
.ls7{letter-spacing:0.009000px;}
.ls1{letter-spacing:0.011400px;}
.lsd{letter-spacing:0.288600px;}
.lsf{letter-spacing:0.409500px;}
.lsc{letter-spacing:0.630000px;}
.lsb{letter-spacing:2.550000px;}
.ls8{letter-spacing:2.550600px;}
.ls0{letter-spacing:3.150000px;}
.ls11{letter-spacing:3.558600px;}
.ls5{letter-spacing:5.040000px;}
.ls10{letter-spacing:12.750000px;}
.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;}
}
.ws2{word-spacing:-16.500000px;}
.ws9d{word-spacing:-16.380000px;}
.ws23{word-spacing:-15.750000px;}
.wse8{word-spacing:-14.250000px;}
.wsd6{word-spacing:-13.500000px;}
.ws22{word-spacing:-13.125000px;}
.ws24{word-spacing:-12.750000px;}
.ws3{word-spacing:-12.375000px;}
.ws0{word-spacing:-11.250000px;}
.ws88{word-spacing:-10.647000px;}
.ws21{word-spacing:-10.500000px;}
.ws5{word-spacing:-10.237500px;}
.wsbf{word-spacing:-10.032750px;}
.ws1{word-spacing:-9.750000px;}
.ws7{word-spacing:-9.562500px;}
.ws4{word-spacing:-9.262500px;}
.ws44{word-spacing:-8.722350px;}
.ws6{word-spacing:-8.287500px;}
.wsde{word-spacing:-8.121750px;}
.ws45{word-spacing:-7.060950px;}
.wsfc{word-spacing:-3.135000px;}
.ws107{word-spacing:-2.964000px;}
.wsff{word-spacing:-2.736000px;}
.wsfb{word-spacing:-2.679000px;}
.wsf2{word-spacing:-2.394000px;}
.wsef{word-spacing:-2.052000px;}
.wsf3{word-spacing:-1.653000px;}
.ws6f{word-spacing:-1.512000px;}
.wsba{word-spacing:-1.197000px;}
.wsf4{word-spacing:-1.026000px;}
.ws5c{word-spacing:-1.008000px;}
.ws41{word-spacing:-0.918000px;}
.ws101{word-spacing:-0.912000px;}
.wsc8{word-spacing:-0.765000px;}
.ws5b{word-spacing:-0.756000px;}
.ws2a{word-spacing:-0.693000px;}
.wsf0{word-spacing:-0.684000px;}
.ws95{word-spacing:-0.630000px;}
.ws105{word-spacing:-0.570000px;}
.ws69{word-spacing:-0.561000px;}
.ws32{word-spacing:-0.441000px;}
.ws9e{word-spacing:-0.409500px;}
.ws10a{word-spacing:-0.285000px;}
.ws9{word-spacing:0.000000px;}
.ws82{word-spacing:0.051000px;}
.ws90{word-spacing:0.063000px;}
.wscc{word-spacing:0.126000px;}
.ws1c{word-spacing:0.189000px;}
.ws9c{word-spacing:0.306000px;}
.wsee{word-spacing:0.342000px;}
.wsbc{word-spacing:0.357000px;}
.wsb3{word-spacing:0.378000px;}
.ws106{word-spacing:0.399000px;}
.wse0{word-spacing:0.504000px;}
.wsf7{word-spacing:0.513000px;}
.wse4{word-spacing:0.561000px;}
.ws93{word-spacing:0.567000px;}
.wsd4{word-spacing:0.612000px;}
.ws2b{word-spacing:0.630000px;}
.ws6e{word-spacing:0.693000px;}
.ws1b{word-spacing:0.756000px;}
.ws100{word-spacing:0.798000px;}
.ws3a{word-spacing:0.819000px;}
.ws7b{word-spacing:0.882000px;}
.wsf8{word-spacing:0.912000px;}
.ws97{word-spacing:0.918000px;}
.ws13{word-spacing:0.945000px;}
.wsbd{word-spacing:0.969000px;}
.ws3b{word-spacing:1.008000px;}
.ws72{word-spacing:1.071000px;}
.wsf1{word-spacing:1.083000px;}
.wscb{word-spacing:1.134000px;}
.ws75{word-spacing:1.197000px;}
.wsca{word-spacing:1.224000px;}
.ws48{word-spacing:1.260000px;}
.ws4c{word-spacing:1.323000px;}
.ws54{word-spacing:1.326000px;}
.ws70{word-spacing:1.386000px;}
.ws63{word-spacing:1.428000px;}
.wsc1{word-spacing:1.449000px;}
.wsd0{word-spacing:1.530000px;}
.wsce{word-spacing:1.575000px;}
.wsd1{word-spacing:1.581000px;}
.ws50{word-spacing:1.638000px;}
.wsa9{word-spacing:1.683000px;}
.ws77{word-spacing:1.701000px;}
.ws108{word-spacing:1.710000px;}
.wsdd{word-spacing:1.728000px;}
.ws65{word-spacing:1.734000px;}
.ws5e{word-spacing:1.764000px;}
.wsdc{word-spacing:1.782000px;}
.ws35{word-spacing:1.827000px;}
.ws9a{word-spacing:1.836000px;}
.ws38{word-spacing:1.890000px;}
.ws6d{word-spacing:1.938000px;}
.wsb1{word-spacing:1.953000px;}
.wsa8{word-spacing:1.989000px;}
.ws19{word-spacing:2.016000px;}
.ws73{word-spacing:2.079000px;}
.wsd2{word-spacing:2.142000px;}
.ws2e{word-spacing:2.205000px;}
.ws60{word-spacing:2.244000px;}
.ws8{word-spacing:2.250000px;}
.ws37{word-spacing:2.268000px;}
.ws86{word-spacing:2.295000px;}
.wsaf{word-spacing:2.331000px;}
.wsf6{word-spacing:2.337000px;}
.ws49{word-spacing:2.394000px;}
.ws26{word-spacing:2.400000px;}
.wsfe{word-spacing:2.451000px;}
.ws29{word-spacing:2.457000px;}
.ws6b{word-spacing:2.499000px;}
.ws4f{word-spacing:2.520000px;}
.wsb{word-spacing:2.550000px;}
.ws102{word-spacing:2.565000px;}
.wsb5{word-spacing:2.583000px;}
.wsa7{word-spacing:2.600995px;}
.ws68{word-spacing:2.601000px;}
.ws8f{word-spacing:2.646000px;}
.wsd5{word-spacing:2.652000px;}
.ws55{word-spacing:2.700000px;}
.wse9{word-spacing:2.708994px;}
.ws1d{word-spacing:2.709000px;}
.ws20{word-spacing:2.772000px;}
.ws12{word-spacing:2.793000px;}
.ws61{word-spacing:2.805000px;}
.ws28{word-spacing:2.835000px;}
.ws10{word-spacing:2.850000px;}
.ws87{word-spacing:2.856000px;}
.ws8a{word-spacing:2.898000px;}
.wse6{word-spacing:2.958000px;}
.ws79{word-spacing:2.961000px;}
.ws56{word-spacing:3.024000px;}
.wsa6{word-spacing:3.060000px;}
.ws1e{word-spacing:3.087000px;}
.wsbe{word-spacing:3.111000px;}
.wsa{word-spacing:3.150000px;}
.wse7{word-spacing:3.162000px;}
.wsc9{word-spacing:3.264000px;}
.ws8e{word-spacing:3.276000px;}
.wsd{word-spacing:3.300000px;}
.ws7c{word-spacing:3.339000px;}
.wsf5{word-spacing:3.363000px;}
.wse3{word-spacing:3.366000px;}
.ws80{word-spacing:3.402000px;}
.ws3d{word-spacing:3.465000px;}
.ws3e{word-spacing:3.528000px;}
.ws67{word-spacing:3.570000px;}
.ws51{word-spacing:3.591000px;}
.ws84{word-spacing:3.621000px;}
.ws71{word-spacing:3.654000px;}
.ws59{word-spacing:3.780000px;}
.ws1a{word-spacing:3.843000px;}
.wsf{word-spacing:3.876000px;}
.ws58{word-spacing:3.906000px;}
.ws99{word-spacing:3.927000px;}
.ws74{word-spacing:3.969000px;}
.ws30{word-spacing:4.095000px;}
.ws98{word-spacing:4.131000px;}
.ws14{word-spacing:4.158000px;}
.ws6a{word-spacing:4.182000px;}
.wsfd{word-spacing:4.218000px;}
.wsc7{word-spacing:4.221000px;}
.ws109{word-spacing:4.275000px;}
.ws4b{word-spacing:4.284000px;}
.ws62{word-spacing:4.335000px;}
.ws7a{word-spacing:4.347000px;}
.wsa5{word-spacing:4.385995px;}
.ws57{word-spacing:4.410000px;}
.wsd8{word-spacing:4.472994px;}
.ws5a{word-spacing:4.473000px;}
.ws9b{word-spacing:4.488000px;}
.ws25{word-spacing:4.500000px;}
.ws18{word-spacing:4.536000px;}
.ws52{word-spacing:4.539000px;}
.wsa2{word-spacing:4.641000px;}
.wsb7{word-spacing:4.662000px;}
.wsc0{word-spacing:4.725000px;}
.wsa4{word-spacing:4.794000px;}
.ws4e{word-spacing:4.851000px;}
.wsc{word-spacing:4.890000px;}
.ws81{word-spacing:4.896000px;}
.ws1f{word-spacing:4.914000px;}
.wsfa{word-spacing:4.947000px;}
.wsb4{word-spacing:4.977000px;}
.ws3c{word-spacing:5.040000px;}
.wsd3{word-spacing:5.049000px;}
.ws66{word-spacing:5.100000px;}
.ws8d{word-spacing:5.103000px;}
.wsa0{word-spacing:5.166000px;}
.ws31{word-spacing:5.229000px;}
.ws78{word-spacing:5.292000px;}
.ws2f{word-spacing:5.355000px;}
.ws33{word-spacing:5.418000px;}
.wse5{word-spacing:5.559000px;}
.ws5d{word-spacing:5.607000px;}
.ws83{word-spacing:5.610000px;}
.ws7e{word-spacing:5.670000px;}
.ws6c{word-spacing:5.712000px;}
.ws46{word-spacing:5.733000px;}
.ws5f{word-spacing:5.763000px;}
.ws47{word-spacing:5.796000px;}
.ws104{word-spacing:5.814000px;}
.ws89{word-spacing:5.859000px;}
.ws2d{word-spacing:5.922000px;}
.ws8b{word-spacing:5.985000px;}
.wsab{word-spacing:6.018000px;}
.wsa3{word-spacing:6.069000px;}
.wsdf{word-spacing:6.237000px;}
.ws36{word-spacing:6.300000px;}
.ws43{word-spacing:6.426000px;}
.wsb8{word-spacing:6.489000px;}
.wsad{word-spacing:6.552000px;}
.ws10b{word-spacing:6.555000px;}
.wsf9{word-spacing:6.579000px;}
.wseb{word-spacing:6.615000px;}
.ws8c{word-spacing:6.678000px;}
.ws91{word-spacing:6.741000px;}
.ws11{word-spacing:6.783000px;}
.ws4d{word-spacing:6.804000px;}
.ws64{word-spacing:6.834000px;}
.ws39{word-spacing:6.867000px;}
.ws96{word-spacing:6.930000px;}
.wsaa{word-spacing:6.987000px;}
.ws7f{word-spacing:6.993000px;}
.ws92{word-spacing:7.056000px;}
.wse1{word-spacing:7.119000px;}
.wsd7{word-spacing:7.182000px;}
.ws2c{word-spacing:7.245000px;}
.wsc5{word-spacing:7.371000px;}
.ws85{word-spacing:7.395000px;}
.ws94{word-spacing:7.560000px;}
.wsbb{word-spacing:7.623000px;}
.wscd{word-spacing:7.749000px;}
.ws53{word-spacing:7.803000px;}
.ws3f{word-spacing:7.812000px;}
.wsa1{word-spacing:7.875000px;}
.wsac{word-spacing:7.938000px;}
.ws15{word-spacing:8.064000px;}
.ws7d{word-spacing:8.127000px;}
.ws16{word-spacing:8.190000px;}
.wscf{word-spacing:8.316000px;}
.wsb0{word-spacing:8.379000px;}
.wsb2{word-spacing:8.442000px;}
.wsae{word-spacing:8.568000px;}
.wsc6{word-spacing:8.694000px;}
.wsdb{word-spacing:8.883000px;}
.wsd9{word-spacing:8.946000px;}
.ws4a{word-spacing:9.009000px;}
.wsed{word-spacing:9.135000px;}
.ws103{word-spacing:9.177000px;}
.ws27{word-spacing:9.198000px;}
.wsb9{word-spacing:9.387000px;}
.wse{word-spacing:9.633000px;}
.ws40{word-spacing:9.702000px;}
.ws76{word-spacing:9.765000px;}
.wsc4{word-spacing:9.828000px;}
.wsda{word-spacing:9.891000px;}
.ws17{word-spacing:9.954000px;}
.wsc2{word-spacing:10.017000px;}
.ws34{word-spacing:10.269000px;}
.wsea{word-spacing:10.584000px;}
.wsc3{word-spacing:10.647000px;}
.wsec{word-spacing:10.710000px;}
.wsb6{word-spacing:11.592000px;}
.ws9f{word-spacing:11.655000px;}
.wse2{word-spacing:12.495000px;}
.ws42{word-spacing:12.750000px;}
._8{margin-left:-7.616700px;}
._5{margin-left:-5.970000px;}
._0{margin-left:-4.095000px;}
._4{margin-left:-2.661000px;}
._1{margin-left:-1.651500px;}
._c{width:1.467900px;}
._3{width:2.563200px;}
._2{width:3.701400px;}
._b{width:6.324000px;}
._d{width:8.211000px;}
._9{width:9.282000px;}
._e{width:10.800000px;}
._f{width:11.832000px;}
._a{width:13.668000px;}
._6{width:33.600000px;}
._7{width:293.233500px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:33.150000px;}
.fs8{font-size:37.050000px;}
.fsb{font-size:38.250000px;}
.fs2{font-size:39.000000px;}
.fs9{font-size:40.950000px;}
.fsd{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fsf{font-size:48.000000px;}
.fs6{font-size:49.500000px;}
.fs3{font-size:51.000000px;}
.fse{font-size:52.500000px;}
.fs10{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fsc{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs11{font-size:69.000000px;}
.fs4{font-size:97.800000px;}
.y0{bottom:0.000000px;}
.y23{bottom:113.789700px;}
.y5c{bottom:131.294550px;}
.y22{bottom:131.294700px;}
.y21{bottom:178.226550px;}
.ye7{bottom:178.226700px;}
.yfc{bottom:178.231800px;}
.y5b{bottom:178.231950px;}
.y123{bottom:178.237200px;}
.y72{bottom:178.242300px;}
.y20{bottom:182.051550px;}
.yc0{bottom:182.051700px;}
.y1cd{bottom:191.903850px;}
.ya2{bottom:193.391550px;}
.ybf{bottom:193.391700px;}
.ya1{bottom:193.396800px;}
.y122{bottom:193.396950px;}
.y71{bottom:193.402050px;}
.ye6{bottom:193.407300px;}
.y15d{bottom:197.216550px;}
.y5a{bottom:197.216700px;}
.ya0{bottom:208.556550px;}
.y59{bottom:208.556700px;}
.y70{bottom:208.561800px;}
.ybe{bottom:208.561950px;}
.ye5{bottom:208.567050px;}
.y19a{bottom:208.572450px;}
.y121{bottom:208.577700px;}
.y1cc{bottom:209.039850px;}
.y9f{bottom:212.381550px;}
.y58{bottom:212.381700px;}
.y141{bottom:223.721550px;}
.y57{bottom:223.721700px;}
.ye4{bottom:223.726800px;}
.y199{bottom:223.732200px;}
.y120{bottom:223.737450px;}
.y9e{bottom:223.758300px;}
.y6f{bottom:227.546550px;}
.y56{bottom:227.546700px;}
.y6e{bottom:238.886550px;}
.y55{bottom:238.886700px;}
.y198{bottom:238.891950px;}
.ybd{bottom:238.897200px;}
.y9d{bottom:238.918050px;}
.y6d{bottom:242.711550px;}
.y54{bottom:242.711700px;}
.y1f{bottom:247.274700px;}
.y15c{bottom:247.840650px;}
.y130{bottom:254.051550px;}
.y53{bottom:254.051700px;}
.y179{bottom:254.056800px;}
.ybc{bottom:254.056950px;}
.ye3{bottom:254.062050px;}
.y9c{bottom:254.077800px;}
.yfb{bottom:254.088300px;}
.y52{bottom:257.876700px;}
.y1cb{bottom:260.465850px;}
.y1e{bottom:264.410700px;}
.y15b{bottom:264.976650px;}
.y51{bottom:269.216700px;}
.ye2{bottom:269.221800px;}
.y9b{bottom:269.237550px;}
.yfa{bottom:269.248050px;}
.y178{bottom:273.041550px;}
.y50{bottom:273.041700px;}
.y1ca{bottom:276.440100px;}
.y1d{bottom:281.546700px;}
.y15a{bottom:282.112650px;}
.y4f{bottom:284.386950px;}
.y9a{bottom:284.397300px;}
.yf9{bottom:284.407800px;}
.ybb{bottom:288.206700px;}
.y1c9{bottom:292.414350px;}
.y6c{bottom:295.076100px;}
.y1c{bottom:298.682700px;}
.y159{bottom:299.248650px;}
.ye1{bottom:299.546550px;}
.y11f{bottom:299.546700px;}
.ye0{bottom:299.551800px;}
.y99{bottom:299.557050px;}
.yba{bottom:299.557200px;}
.yf8{bottom:299.567550px;}
.y4e{bottom:303.371700px;}
.y1c8{bottom:308.388600px;}
.y6b{bottom:312.212100px;}
.y140{bottom:314.711550px;}
.y4d{bottom:314.711700px;}
.y98{bottom:314.716800px;}
.yb9{bottom:314.716950px;}
.yf7{bottom:314.727300px;}
.y1b{bottom:315.818700px;}
.y158{bottom:316.384650px;}
.y4c{bottom:318.536700px;}
.y1c7{bottom:324.362850px;}
.y6a{bottom:329.348100px;}
.ydf{bottom:329.876550px;}
.y4b{bottom:329.876700px;}
.yf6{bottom:329.887050px;}
.y177{bottom:329.908650px;}
.y1a{bottom:332.954700px;}
.y157{bottom:333.520650px;}
.y4a{bottom:333.701700px;}
.y1c6{bottom:340.337100px;}
.y197{bottom:344.275350px;}
.y13f{bottom:345.041550px;}
.yb8{bottom:345.041700px;}
.yf5{bottom:345.046800px;}
.yb7{bottom:345.046950px;}
.y97{bottom:345.078450px;}
.y69{bottom:346.484100px;}
.y176{bottom:347.026650px;}
.y19{bottom:350.090700px;}
.y156{bottom:350.656650px;}
.y1c5{bottom:356.311350px;}
.yde{bottom:360.206700px;}
.ydd{bottom:360.211950px;}
.y96{bottom:360.238200px;}
.y196{bottom:360.249600px;}
.y68{bottom:363.554250px;}
.yf4{bottom:364.031550px;}
.yb6{bottom:364.031700px;}
.y175{bottom:364.162650px;}
.y18{bottom:367.226700px;}
.y155{bottom:367.792650px;}
.y1c4{bottom:372.285600px;}
.y11e{bottom:375.143850px;}
.yb5{bottom:375.371700px;}
.y12f{bottom:375.382200px;}
.y95{bottom:375.397950px;}
.y195{bottom:376.223850px;}
.yb4{bottom:379.196700px;}
.y67{bottom:380.690250px;}
.y174{bottom:381.298650px;}
.y17{bottom:384.362700px;}
.y154{bottom:384.928650px;}
.y1c3{bottom:388.259850px;}
.ydc{bottom:390.541950px;}
.y94{bottom:390.557700px;}
.y194{bottom:392.198100px;}
.y11d{bottom:392.279850px;}
.y66{bottom:397.826250px;}
.y173{bottom:398.326650px;}
.y16{bottom:401.498700px;}
.y153{bottom:401.962650px;}
.y1c2{bottom:404.234100px;}
.y12e{bottom:405.701700px;}
.y93{bottom:405.717450px;}
.y193{bottom:408.172350px;}
.y11c{bottom:409.415850px;}
.y49{bottom:409.511850px;}
.ydb{bottom:409.526700px;}
.y65{bottom:414.962250px;}
.y172{bottom:415.462650px;}
.y15{bottom:418.634700px;}
.y152{bottom:419.098650px;}
.y1c1{bottom:420.208350px;}
.y92{bottom:420.877200px;}
.yf3{bottom:423.820650px;}
.y192{bottom:424.146600px;}
.y11b{bottom:426.551850px;}
.yb3{bottom:426.575850px;}
.y48{bottom:426.647850px;}
.y64{bottom:432.098250px;}
.y171{bottom:432.598650px;}
.y14{bottom:435.770700px;}
.y91{bottom:436.036950px;}
.y1c0{bottom:436.182600px;}
.y151{bottom:436.234650px;}
.y191{bottom:440.120850px;}
.yf2{bottom:440.956650px;}
.y11a{bottom:443.687850px;}
.yb2{bottom:443.711850px;}
.y47{bottom:443.771850px;}
.y63{bottom:449.234250px;}
.y170{bottom:449.734650px;}
.y1bf{bottom:452.156850px;}
.y13{bottom:452.906700px;}
.y150{bottom:453.370650px;}
.y90{bottom:455.021550px;}
.y190{bottom:456.095100px;}
.yf1{bottom:458.092650px;}
.y119{bottom:460.823850px;}
.yb1{bottom:460.847850px;}
.y46{bottom:460.907850px;}
.y62{bottom:466.370250px;}
.y8f{bottom:466.372050px;}
.y16f{bottom:466.870650px;}
.y1be{bottom:468.131100px;}
.y12{bottom:470.042700px;}
.y14f{bottom:470.506650px;}
.y18f{bottom:472.069350px;}
.yf0{bottom:475.228650px;}
.y118{bottom:477.959850px;}
.yb0{bottom:477.983850px;}
.yda{bottom:477.995850px;}
.y45{bottom:478.001850px;}
.y8e{bottom:481.531800px;}
.y61{bottom:483.506250px;}
.y16e{bottom:484.006650px;}
.y1bd{bottom:484.105350px;}
.y14e{bottom:487.642650px;}
.y18e{bottom:488.043600px;}
.yef{bottom:492.328650px;}
.y117{bottom:495.095850px;}
.yaf{bottom:495.119850px;}
.y12d{bottom:495.125850px;}
.yd9{bottom:495.131850px;}
.y44{bottom:495.137850px;}
.y1bc{bottom:500.079600px;}
.y8d{bottom:500.516550px;}
.y60{bottom:500.642250px;}
.y16d{bottom:501.142650px;}
.y18d{bottom:504.017850px;}
.y14d{bottom:504.778650px;}
.yee{bottom:509.464650px;}
.y8c{bottom:511.861950px;}
.y116{bottom:512.231850px;}
.yae{bottom:512.255850px;}
.y12c{bottom:512.261850px;}
.yd8{bottom:512.267850px;}
.y43{bottom:512.273850px;}
.y1bb{bottom:516.053850px;}
.y5f{bottom:517.778250px;}
.y16c{bottom:518.278650px;}
.y18c{bottom:519.992100px;}
.y14c{bottom:521.914650px;}
.yed{bottom:526.600650px;}
.y115{bottom:529.367850px;}
.yad{bottom:529.391850px;}
.y12b{bottom:529.397850px;}
.yd7{bottom:529.403850px;}
.y42{bottom:529.409850px;}
.y8b{bottom:530.846700px;}
.y1ba{bottom:532.028100px;}
.y11{bottom:532.170450px;}
.y5e{bottom:534.914250px;}
.y16b{bottom:535.414650px;}
.y18b{bottom:535.966350px;}
.y14b{bottom:539.050650px;}
.y8a{bottom:542.186700px;}
.yec{bottom:543.736650px;}
.y89{bottom:546.011700px;}
.y114{bottom:546.503850px;}
.yac{bottom:546.527850px;}
.y12a{bottom:546.533850px;}
.yd6{bottom:546.539850px;}
.y41{bottom:546.545850px;}
.y1b9{bottom:548.002350px;}
.y10{bottom:548.925450px;}
.y18a{bottom:551.940600px;}
.y5d{bottom:552.050250px;}
.y16a{bottom:552.550650px;}
.y14a{bottom:556.186650px;}
.yeb{bottom:560.872650px;}
.y113{bottom:563.639850px;}
.yab{bottom:563.663850px;}
.y129{bottom:563.669850px;}
.yd5{bottom:563.675850px;}
.y40{bottom:563.681850px;}
.y1b8{bottom:563.976600px;}
.yf{bottom:565.697700px;}
.y189{bottom:567.914850px;}
.y169{bottom:569.686650px;}
.y149{bottom:573.322650px;}
.yea{bottom:578.008650px;}
.y1b7{bottom:579.950850px;}
.y112{bottom:580.775850px;}
.yaa{bottom:580.799850px;}
.y128{bottom:580.805850px;}
.yd4{bottom:580.811850px;}
.y3f{bottom:580.817850px;}
.ye{bottom:582.469950px;}
.y188{bottom:583.889100px;}
.y168{bottom:586.822650px;}
.y148{bottom:590.458650px;}
.ye9{bottom:595.138650px;}
.y1b6{bottom:595.925100px;}
.y75{bottom:597.673800px;}
.y78{bottom:597.687300px;}
.y111{bottom:597.911850px;}
.y88{bottom:597.929850px;}
.y3e{bottom:597.935850px;}
.y127{bottom:597.941850px;}
.yd3{bottom:597.947850px;}
.yd{bottom:599.242200px;}
.y187{bottom:599.863350px;}
.y167{bottom:603.958650px;}
.y147{bottom:607.594650px;}
.y1b5{bottom:611.899350px;}
.ye8{bottom:612.274650px;}
.y74{bottom:612.834300px;}
.y77{bottom:612.847800px;}
.y110{bottom:615.047850px;}
.yd2{bottom:615.059850px;}
.y87{bottom:615.065850px;}
.y3d{bottom:615.071850px;}
.y126{bottom:615.077850px;}
.y186{bottom:615.837600px;}
.y166{bottom:621.094650px;}
.y146{bottom:624.730650px;}
.y1b4{bottom:627.873600px;}
.y73{bottom:627.994800px;}
.y76{bottom:628.008300px;}
.y185{bottom:631.811850px;}
.y10f{bottom:632.183850px;}
.yd1{bottom:632.195850px;}
.y86{bottom:632.201850px;}
.y3c{bottom:632.207850px;}
.y165{bottom:638.230650px;}
.y145{bottom:641.866650px;}
.y1b3{bottom:643.847850px;}
.y184{bottom:647.786100px;}
.y13e{bottom:649.283850px;}
.y3b{bottom:649.301850px;}
.y10e{bottom:649.319850px;}
.ya9{bottom:649.325850px;}
.yd0{bottom:649.331850px;}
.y85{bottom:649.337850px;}
.yfe{bottom:651.834300px;}
.y164{bottom:655.366650px;}
.y144{bottom:659.002650px;}
.y1b2{bottom:659.822100px;}
.yc{bottom:661.015950px;}
.y183{bottom:663.760350px;}
.y13d{bottom:666.419850px;}
.y3a{bottom:666.437850px;}
.y10d{bottom:666.455850px;}
.y84{bottom:666.461850px;}
.ycf{bottom:666.467850px;}
.yfd{bottom:666.994800px;}
.y163{bottom:672.502650px;}
.y1b1{bottom:675.796350px;}
.y143{bottom:676.138650px;}
.yb{bottom:677.788200px;}
.y182{bottom:679.734600px;}
.y13c{bottom:683.555850px;}
.y39{bottom:683.573850px;}
.yce{bottom:683.585850px;}
.y10c{bottom:683.591850px;}
.y83{bottom:683.597850px;}
.y162{bottom:689.638650px;}
.y1b0{bottom:691.770600px;}
.y142{bottom:693.274650px;}
.ya{bottom:694.560450px;}
.y181{bottom:695.708850px;}
.y13b{bottom:700.691850px;}
.y38{bottom:700.709850px;}
.ycd{bottom:700.721850px;}
.y10b{bottom:700.727850px;}
.y161{bottom:706.774650px;}
.y1af{bottom:707.744850px;}
.y9{bottom:711.332700px;}
.y13a{bottom:717.827850px;}
.y37{bottom:717.845850px;}
.y10a{bottom:717.851850px;}
.ycc{bottom:717.857850px;}
.y1ae{bottom:723.719100px;}
.y180{bottom:729.683850px;}
.ycb{bottom:734.939850px;}
.y139{bottom:734.963850px;}
.y36{bottom:734.981850px;}
.y109{bottom:734.987850px;}
.y1ad{bottom:739.693350px;}
.y160{bottom:744.963900px;}
.y17c{bottom:751.454100px;}
.yca{bottom:752.075850px;}
.y108{bottom:752.081850px;}
.y138{bottom:752.099850px;}
.y35{bottom:752.117850px;}
.y1ac{bottom:755.667600px;}
.y15f{bottom:760.124400px;}
.y17b{bottom:766.614600px;}
.yc9{bottom:769.211850px;}
.y107{bottom:769.217850px;}
.y82{bottom:769.229850px;}
.y34{bottom:769.235850px;}
.y1ab{bottom:771.641850px;}
.y15e{bottom:775.284900px;}
.y17a{bottom:781.775100px;}
.yc8{bottom:786.347850px;}
.y106{bottom:786.353850px;}
.y81{bottom:786.365850px;}
.y33{bottom:786.371850px;}
.y1aa{bottom:787.616100px;}
.y8{bottom:788.102700px;}
.yc7{bottom:803.483850px;}
.y105{bottom:803.489850px;}
.y80{bottom:803.501850px;}
.y32{bottom:803.507850px;}
.y1a9{bottom:803.590350px;}
.y7{bottom:806.102700px;}
.y1a8{bottom:819.564600px;}
.y31{bottom:820.613850px;}
.yc6{bottom:820.619850px;}
.y104{bottom:820.625850px;}
.y137{bottom:820.631850px;}
.y7f{bottom:820.637850px;}
.y1a7{bottom:835.538850px;}
.y125{bottom:837.731850px;}
.y7e{bottom:837.737850px;}
.y30{bottom:837.749850px;}
.yc5{bottom:837.755850px;}
.y103{bottom:837.761850px;}
.y136{bottom:837.767850px;}
.y6{bottom:845.102700px;}
.y1a6{bottom:851.513100px;}
.y124{bottom:854.867850px;}
.y7d{bottom:854.873850px;}
.y2f{bottom:854.885850px;}
.yc4{bottom:854.891850px;}
.y102{bottom:854.897850px;}
.y1a5{bottom:867.487350px;}
.y5{bottom:871.352700px;}
.y101{bottom:872.003850px;}
.y7c{bottom:872.009850px;}
.y17f{bottom:872.015700px;}
.y2e{bottom:872.021850px;}
.yc3{bottom:872.027850px;}
.y1a4{bottom:883.461600px;}
.y100{bottom:889.139850px;}
.y7b{bottom:889.145850px;}
.y17e{bottom:889.151700px;}
.y2d{bottom:889.157850px;}
.y1a3{bottom:899.435850px;}
.y2c{bottom:906.251850px;}
.y135{bottom:906.263700px;}
.yff{bottom:906.275850px;}
.y7a{bottom:906.281850px;}
.ya8{bottom:906.287700px;}
.y1a2{bottom:915.410100px;}
.y2b{bottom:923.387850px;}
.y134{bottom:923.399700px;}
.y17d{bottom:923.405700px;}
.ya7{bottom:923.411850px;}
.y79{bottom:923.417850px;}
.y1a1{bottom:931.384350px;}
.y2a{bottom:940.523850px;}
.y133{bottom:940.535700px;}
.yc2{bottom:940.541700px;}
.ya6{bottom:940.547850px;}
.y1a0{bottom:947.358600px;}
.y29{bottom:957.659850px;}
.ya5{bottom:957.665850px;}
.y132{bottom:957.671700px;}
.yc1{bottom:957.677700px;}
.y19f{bottom:963.332850px;}
.y28{bottom:974.795850px;}
.ya4{bottom:974.801850px;}
.y131{bottom:974.807700px;}
.y19e{bottom:979.307100px;}
.y4{bottom:991.033950px;}
.y27{bottom:991.931850px;}
.ya3{bottom:991.937850px;}
.y19d{bottom:995.281350px;}
.y3{bottom:1007.009700px;}
.y26{bottom:1009.067850px;}
.y19c{bottom:1011.255600px;}
.y2{bottom:1022.984700px;}
.y25{bottom:1026.203850px;}
.y19b{bottom:1027.229850px;}
.y1{bottom:1038.959700px;}
.y24{bottom:1068.417600px;}
.h1b{height:29.448912px;}
.hb{height:29.449512px;}
.h1a{height:29.450112px;}
.h26{height:29.573423px;}
.h2b{height:29.574023px;}
.h25{height:29.574623px;}
.h3{height:44.749512px;}
.h14{height:44.874023px;}
.h1c{height:45.297363px;}
.hd{height:46.065674px;}
.h17{height:47.381836px;}
.h16{height:47.513672px;}
.h7{height:50.014160px;}
.h9{height:50.083160px;}
.h2e{height:50.153320px;}
.h8{height:50.626465px;}
.hc{height:52.646484px;}
.h2{height:55.278809px;}
.h1d{height:55.302809px;}
.h1f{height:55.303409px;}
.h1e{height:55.326209px;}
.h13{height:55.326809px;}
.h21{height:55.327409px;}
.h10{height:55.350809px;}
.h2c{height:55.351409px;}
.h19{height:55.374809px;}
.hf{height:55.398809px;}
.h18{height:55.422809px;}
.h12{height:55.432617px;}
.he{height:55.446809px;}
.h24{height:55.470809px;}
.h22{height:55.494809px;}
.h28{height:55.518809px;}
.h23{height:55.528617px;}
.h15{height:55.542209px;}
.h27{height:55.553217px;}
.ha{height:55.590809px;}
.h11{height:55.600617px;}
.h29{height:55.686809px;}
.h2a{height:55.710809px;}
.h20{height:55.955566px;}
.h6{height:57.911133px;}
.h2d{height:60.543457px;}
.h4{height:85.813770px;}
.h5{height:1190.195400px;}
.h1{height:1191.000000px;}
.h0{height:1191.252900px;}
.w2{width:849.634500px;}
.w1{width:850.500000px;}
.w0{width:850.691850px;}
.x0{left:0.000000px;}
.x7{left:1.057350px;}
.x5d{left:117.002850px;}
.x58{left:118.057350px;}
.x44{left:119.058000px;}
.xd{left:120.111600px;}
.x22{left:125.798700px;}
.x23{left:131.833200px;}
.x59{left:140.564100px;}
.xc{left:142.612350px;}
.x24{left:148.343700px;}
.xf{left:152.073750px;}
.x1e{left:155.910000px;}
.x5{left:160.291350px;}
.x5e{left:163.925850px;}
.x2b{left:168.090300px;}
.x18{left:175.378650px;}
.x52{left:176.985000px;}
.x45{left:186.735600px;}
.x1a{left:193.687800px;}
.xe{left:194.909850px;}
.x1f{left:197.523900px;}
.x13{left:204.310200px;}
.x19{left:216.992700px;}
.x55{left:225.709050px;}
.x1b{left:227.985450px;}
.x10{left:233.817150px;}
.x8{left:235.307550px;}
.x61{left:237.960900px;}
.x3c{left:239.841300px;}
.x32{left:244.454250px;}
.x28{left:250.009050px;}
.x5f{left:252.381150px;}
.x2d{left:258.159900px;}
.x37{left:264.891450px;}
.x2c{left:270.032550px;}
.x20{left:276.568650px;}
.x6{left:283.062900px;}
.x14{left:291.574350px;}
.x3d{left:298.426200px;}
.x2e{left:305.386950px;}
.x1c{left:321.815400px;}
.x3a{left:325.202400px;}
.x15{left:333.188250px;}
.x4e{left:335.930100px;}
.x33{left:339.160050px;}
.x48{left:340.472250px;}
.x12{left:348.028950px;}
.xb{left:350.280750px;}
.x38{left:353.222250px;}
.x9{left:354.648900px;}
.x1d{left:363.429300px;}
.xa{left:370.831050px;}
.x3f{left:373.638900px;}
.x21{left:379.885650px;}
.x49{left:382.086150px;}
.x11{left:395.667150px;}
.x3e{left:398.233200px;}
.x2f{left:404.153250px;}
.x16{left:421.519050px;}
.x39{left:425.577600px;}
.x46{left:433.758600px;}
.x34{left:441.102450px;}
.x40{left:449.524650px;}
.x4a{left:451.292100px;}
.x47{left:467.481600px;}
.x3b{left:471.058500px;}
.x25{left:474.679200px;}
.x26{left:484.628700px;}
.x1{left:490.955250px;}
.x17{left:503.612700px;}
.x57{left:506.569050px;}
.x4f{left:508.530750px;}
.x60{left:512.569200px;}
.x35{left:515.010750px;}
.x4b{left:527.203650px;}
.x4d{left:528.382500px;}
.x41{left:540.458550px;}
.x53{left:544.787400px;}
.x27{left:546.823200px;}
.x3{left:553.970100px;}
.x4c{left:557.259600px;}
.x5a{left:570.760050px;}
.x2{left:574.695900px;}
.x4{left:588.706800px;}
.x29{left:602.748900px;}
.x5b{left:611.029050px;}
.x36{left:617.292750px;}
.x30{left:634.090200px;}
.x42{left:639.170550px;}
.x54{left:651.654300px;}
.x50{left:658.016700px;}
.x2a{left:690.833700px;}
.x5c{left:693.529200px;}
.x56{left:695.754150px;}
.x31{left:697.317750px;}
.x43{left:700.358400px;}
.x51{left:728.149950px;}
@media print{
.v3{vertical-align:-13.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.261333pt;}
.v2{vertical-align:17.077333pt;}
.ls9{letter-spacing:-1.346800pt;}
.lsa{letter-spacing:-1.090267pt;}
.ls4{letter-spacing:-0.506667pt;}
.ls13{letter-spacing:-0.280000pt;}
.ls17{letter-spacing:-0.226667pt;}
.ls14{letter-spacing:-0.182000pt;}
.ls16{letter-spacing:-0.147333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.001600pt;}
.ls12{letter-spacing:0.005600pt;}
.lse{letter-spacing:0.006133pt;}
.ls2{letter-spacing:0.006933pt;}
.ls6{letter-spacing:0.007467pt;}
.ls7{letter-spacing:0.008000pt;}
.ls1{letter-spacing:0.010133pt;}
.lsd{letter-spacing:0.256533pt;}
.lsf{letter-spacing:0.364000pt;}
.lsc{letter-spacing:0.560000pt;}
.lsb{letter-spacing:2.266667pt;}
.ls8{letter-spacing:2.267200pt;}
.ls0{letter-spacing:2.800000pt;}
.ls11{letter-spacing:3.163200pt;}
.ls5{letter-spacing:4.480000pt;}
.ls10{letter-spacing:11.333333pt;}
.ws2{word-spacing:-14.666667pt;}
.ws9d{word-spacing:-14.560000pt;}
.ws23{word-spacing:-14.000000pt;}
.wse8{word-spacing:-12.666667pt;}
.wsd6{word-spacing:-12.000000pt;}
.ws22{word-spacing:-11.666667pt;}
.ws24{word-spacing:-11.333333pt;}
.ws3{word-spacing:-11.000000pt;}
.ws0{word-spacing:-10.000000pt;}
.ws88{word-spacing:-9.464000pt;}
.ws21{word-spacing:-9.333333pt;}
.ws5{word-spacing:-9.100000pt;}
.wsbf{word-spacing:-8.918000pt;}
.ws1{word-spacing:-8.666667pt;}
.ws7{word-spacing:-8.500000pt;}
.ws4{word-spacing:-8.233333pt;}
.ws44{word-spacing:-7.753200pt;}
.ws6{word-spacing:-7.366667pt;}
.wsde{word-spacing:-7.219333pt;}
.ws45{word-spacing:-6.276400pt;}
.wsfc{word-spacing:-2.786667pt;}
.ws107{word-spacing:-2.634667pt;}
.wsff{word-spacing:-2.432000pt;}
.wsfb{word-spacing:-2.381333pt;}
.wsf2{word-spacing:-2.128000pt;}
.wsef{word-spacing:-1.824000pt;}
.wsf3{word-spacing:-1.469333pt;}
.ws6f{word-spacing:-1.344000pt;}
.wsba{word-spacing:-1.064000pt;}
.wsf4{word-spacing:-0.912000pt;}
.ws5c{word-spacing:-0.896000pt;}
.ws41{word-spacing:-0.816000pt;}
.ws101{word-spacing:-0.810667pt;}
.wsc8{word-spacing:-0.680000pt;}
.ws5b{word-spacing:-0.672000pt;}
.ws2a{word-spacing:-0.616000pt;}
.wsf0{word-spacing:-0.608000pt;}
.ws95{word-spacing:-0.560000pt;}
.ws105{word-spacing:-0.506667pt;}
.ws69{word-spacing:-0.498667pt;}
.ws32{word-spacing:-0.392000pt;}
.ws9e{word-spacing:-0.364000pt;}
.ws10a{word-spacing:-0.253333pt;}
.ws9{word-spacing:0.000000pt;}
.ws82{word-spacing:0.045333pt;}
.ws90{word-spacing:0.056000pt;}
.wscc{word-spacing:0.112000pt;}
.ws1c{word-spacing:0.168000pt;}
.ws9c{word-spacing:0.272000pt;}
.wsee{word-spacing:0.304000pt;}
.wsbc{word-spacing:0.317333pt;}
.wsb3{word-spacing:0.336000pt;}
.ws106{word-spacing:0.354667pt;}
.wse0{word-spacing:0.448000pt;}
.wsf7{word-spacing:0.456000pt;}
.wse4{word-spacing:0.498667pt;}
.ws93{word-spacing:0.504000pt;}
.wsd4{word-spacing:0.544000pt;}
.ws2b{word-spacing:0.560000pt;}
.ws6e{word-spacing:0.616000pt;}
.ws1b{word-spacing:0.672000pt;}
.ws100{word-spacing:0.709333pt;}
.ws3a{word-spacing:0.728000pt;}
.ws7b{word-spacing:0.784000pt;}
.wsf8{word-spacing:0.810667pt;}
.ws97{word-spacing:0.816000pt;}
.ws13{word-spacing:0.840000pt;}
.wsbd{word-spacing:0.861333pt;}
.ws3b{word-spacing:0.896000pt;}
.ws72{word-spacing:0.952000pt;}
.wsf1{word-spacing:0.962667pt;}
.wscb{word-spacing:1.008000pt;}
.ws75{word-spacing:1.064000pt;}
.wsca{word-spacing:1.088000pt;}
.ws48{word-spacing:1.120000pt;}
.ws4c{word-spacing:1.176000pt;}
.ws54{word-spacing:1.178667pt;}
.ws70{word-spacing:1.232000pt;}
.ws63{word-spacing:1.269333pt;}
.wsc1{word-spacing:1.288000pt;}
.wsd0{word-spacing:1.360000pt;}
.wsce{word-spacing:1.400000pt;}
.wsd1{word-spacing:1.405333pt;}
.ws50{word-spacing:1.456000pt;}
.wsa9{word-spacing:1.496000pt;}
.ws77{word-spacing:1.512000pt;}
.ws108{word-spacing:1.520000pt;}
.wsdd{word-spacing:1.536000pt;}
.ws65{word-spacing:1.541333pt;}
.ws5e{word-spacing:1.568000pt;}
.wsdc{word-spacing:1.584000pt;}
.ws35{word-spacing:1.624000pt;}
.ws9a{word-spacing:1.632000pt;}
.ws38{word-spacing:1.680000pt;}
.ws6d{word-spacing:1.722667pt;}
.wsb1{word-spacing:1.736000pt;}
.wsa8{word-spacing:1.768000pt;}
.ws19{word-spacing:1.792000pt;}
.ws73{word-spacing:1.848000pt;}
.wsd2{word-spacing:1.904000pt;}
.ws2e{word-spacing:1.960000pt;}
.ws60{word-spacing:1.994667pt;}
.ws8{word-spacing:2.000000pt;}
.ws37{word-spacing:2.016000pt;}
.ws86{word-spacing:2.040000pt;}
.wsaf{word-spacing:2.072000pt;}
.wsf6{word-spacing:2.077333pt;}
.ws49{word-spacing:2.128000pt;}
.ws26{word-spacing:2.133333pt;}
.wsfe{word-spacing:2.178667pt;}
.ws29{word-spacing:2.184000pt;}
.ws6b{word-spacing:2.221333pt;}
.ws4f{word-spacing:2.240000pt;}
.wsb{word-spacing:2.266667pt;}
.ws102{word-spacing:2.280000pt;}
.wsb5{word-spacing:2.296000pt;}
.wsa7{word-spacing:2.311995pt;}
.ws68{word-spacing:2.312000pt;}
.ws8f{word-spacing:2.352000pt;}
.wsd5{word-spacing:2.357333pt;}
.ws55{word-spacing:2.400000pt;}
.wse9{word-spacing:2.407994pt;}
.ws1d{word-spacing:2.408000pt;}
.ws20{word-spacing:2.464000pt;}
.ws12{word-spacing:2.482667pt;}
.ws61{word-spacing:2.493333pt;}
.ws28{word-spacing:2.520000pt;}
.ws10{word-spacing:2.533333pt;}
.ws87{word-spacing:2.538667pt;}
.ws8a{word-spacing:2.576000pt;}
.wse6{word-spacing:2.629333pt;}
.ws79{word-spacing:2.632000pt;}
.ws56{word-spacing:2.688000pt;}
.wsa6{word-spacing:2.720000pt;}
.ws1e{word-spacing:2.744000pt;}
.wsbe{word-spacing:2.765333pt;}
.wsa{word-spacing:2.800000pt;}
.wse7{word-spacing:2.810667pt;}
.wsc9{word-spacing:2.901333pt;}
.ws8e{word-spacing:2.912000pt;}
.wsd{word-spacing:2.933333pt;}
.ws7c{word-spacing:2.968000pt;}
.wsf5{word-spacing:2.989333pt;}
.wse3{word-spacing:2.992000pt;}
.ws80{word-spacing:3.024000pt;}
.ws3d{word-spacing:3.080000pt;}
.ws3e{word-spacing:3.136000pt;}
.ws67{word-spacing:3.173333pt;}
.ws51{word-spacing:3.192000pt;}
.ws84{word-spacing:3.218667pt;}
.ws71{word-spacing:3.248000pt;}
.ws59{word-spacing:3.360000pt;}
.ws1a{word-spacing:3.416000pt;}
.wsf{word-spacing:3.445333pt;}
.ws58{word-spacing:3.472000pt;}
.ws99{word-spacing:3.490667pt;}
.ws74{word-spacing:3.528000pt;}
.ws30{word-spacing:3.640000pt;}
.ws98{word-spacing:3.672000pt;}
.ws14{word-spacing:3.696000pt;}
.ws6a{word-spacing:3.717333pt;}
.wsfd{word-spacing:3.749333pt;}
.wsc7{word-spacing:3.752000pt;}
.ws109{word-spacing:3.800000pt;}
.ws4b{word-spacing:3.808000pt;}
.ws62{word-spacing:3.853333pt;}
.ws7a{word-spacing:3.864000pt;}
.wsa5{word-spacing:3.898662pt;}
.ws57{word-spacing:3.920000pt;}
.wsd8{word-spacing:3.975994pt;}
.ws5a{word-spacing:3.976000pt;}
.ws9b{word-spacing:3.989333pt;}
.ws25{word-spacing:4.000000pt;}
.ws18{word-spacing:4.032000pt;}
.ws52{word-spacing:4.034667pt;}
.wsa2{word-spacing:4.125333pt;}
.wsb7{word-spacing:4.144000pt;}
.wsc0{word-spacing:4.200000pt;}
.wsa4{word-spacing:4.261333pt;}
.ws4e{word-spacing:4.312000pt;}
.wsc{word-spacing:4.346667pt;}
.ws81{word-spacing:4.352000pt;}
.ws1f{word-spacing:4.368000pt;}
.wsfa{word-spacing:4.397333pt;}
.wsb4{word-spacing:4.424000pt;}
.ws3c{word-spacing:4.480000pt;}
.wsd3{word-spacing:4.488000pt;}
.ws66{word-spacing:4.533333pt;}
.ws8d{word-spacing:4.536000pt;}
.wsa0{word-spacing:4.592000pt;}
.ws31{word-spacing:4.648000pt;}
.ws78{word-spacing:4.704000pt;}
.ws2f{word-spacing:4.760000pt;}
.ws33{word-spacing:4.816000pt;}
.wse5{word-spacing:4.941333pt;}
.ws5d{word-spacing:4.984000pt;}
.ws83{word-spacing:4.986667pt;}
.ws7e{word-spacing:5.040000pt;}
.ws6c{word-spacing:5.077333pt;}
.ws46{word-spacing:5.096000pt;}
.ws5f{word-spacing:5.122667pt;}
.ws47{word-spacing:5.152000pt;}
.ws104{word-spacing:5.168000pt;}
.ws89{word-spacing:5.208000pt;}
.ws2d{word-spacing:5.264000pt;}
.ws8b{word-spacing:5.320000pt;}
.wsab{word-spacing:5.349333pt;}
.wsa3{word-spacing:5.394667pt;}
.wsdf{word-spacing:5.544000pt;}
.ws36{word-spacing:5.600000pt;}
.ws43{word-spacing:5.712000pt;}
.wsb8{word-spacing:5.768000pt;}
.wsad{word-spacing:5.824000pt;}
.ws10b{word-spacing:5.826667pt;}
.wsf9{word-spacing:5.848000pt;}
.wseb{word-spacing:5.880000pt;}
.ws8c{word-spacing:5.936000pt;}
.ws91{word-spacing:5.992000pt;}
.ws11{word-spacing:6.029333pt;}
.ws4d{word-spacing:6.048000pt;}
.ws64{word-spacing:6.074667pt;}
.ws39{word-spacing:6.104000pt;}
.ws96{word-spacing:6.160000pt;}
.wsaa{word-spacing:6.210667pt;}
.ws7f{word-spacing:6.216000pt;}
.ws92{word-spacing:6.272000pt;}
.wse1{word-spacing:6.328000pt;}
.wsd7{word-spacing:6.384000pt;}
.ws2c{word-spacing:6.440000pt;}
.wsc5{word-spacing:6.552000pt;}
.ws85{word-spacing:6.573333pt;}
.ws94{word-spacing:6.720000pt;}
.wsbb{word-spacing:6.776000pt;}
.wscd{word-spacing:6.888000pt;}
.ws53{word-spacing:6.936000pt;}
.ws3f{word-spacing:6.944000pt;}
.wsa1{word-spacing:7.000000pt;}
.wsac{word-spacing:7.056000pt;}
.ws15{word-spacing:7.168000pt;}
.ws7d{word-spacing:7.224000pt;}
.ws16{word-spacing:7.280000pt;}
.wscf{word-spacing:7.392000pt;}
.wsb0{word-spacing:7.448000pt;}
.wsb2{word-spacing:7.504000pt;}
.wsae{word-spacing:7.616000pt;}
.wsc6{word-spacing:7.728000pt;}
.wsdb{word-spacing:7.896000pt;}
.wsd9{word-spacing:7.952000pt;}
.ws4a{word-spacing:8.008000pt;}
.wsed{word-spacing:8.120000pt;}
.ws103{word-spacing:8.157333pt;}
.ws27{word-spacing:8.176000pt;}
.wsb9{word-spacing:8.344000pt;}
.wse{word-spacing:8.562667pt;}
.ws40{word-spacing:8.624000pt;}
.ws76{word-spacing:8.680000pt;}
.wsc4{word-spacing:8.736000pt;}
.wsda{word-spacing:8.792000pt;}
.ws17{word-spacing:8.848000pt;}
.wsc2{word-spacing:8.904000pt;}
.ws34{word-spacing:9.128000pt;}
.wsea{word-spacing:9.408000pt;}
.wsc3{word-spacing:9.464000pt;}
.wsec{word-spacing:9.520000pt;}
.wsb6{word-spacing:10.304000pt;}
.ws9f{word-spacing:10.360000pt;}
.wse2{word-spacing:11.106667pt;}
.ws42{word-spacing:11.333333pt;}
._8{margin-left:-6.770400pt;}
._5{margin-left:-5.306667pt;}
._0{margin-left:-3.640000pt;}
._4{margin-left:-2.365333pt;}
._1{margin-left:-1.468000pt;}
._c{width:1.304800pt;}
._3{width:2.278400pt;}
._2{width:3.290133pt;}
._b{width:5.621333pt;}
._d{width:7.298667pt;}
._9{width:8.250667pt;}
._e{width:9.600000pt;}
._f{width:10.517333pt;}
._a{width:12.149333pt;}
._6{width:29.866667pt;}
._7{width:260.652000pt;}
.fsa{font-size:29.466667pt;}
.fs8{font-size:32.933333pt;}
.fsb{font-size:34.000000pt;}
.fs2{font-size:34.666667pt;}
.fs9{font-size:36.400000pt;}
.fsd{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fsf{font-size:42.666667pt;}
.fs6{font-size:44.000000pt;}
.fs3{font-size:45.333333pt;}
.fse{font-size:46.666667pt;}
.fs10{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fsc{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs11{font-size:61.333333pt;}
.fs4{font-size:86.933333pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:101.146400pt;}
.y5c{bottom:116.706267pt;}
.y22{bottom:116.706400pt;}
.y21{bottom:158.423600pt;}
.ye7{bottom:158.423733pt;}
.yfc{bottom:158.428267pt;}
.y5b{bottom:158.428400pt;}
.y123{bottom:158.433067pt;}
.y72{bottom:158.437600pt;}
.y20{bottom:161.823600pt;}
.yc0{bottom:161.823733pt;}
.y1cd{bottom:170.581200pt;}
.ya2{bottom:171.903600pt;}
.ybf{bottom:171.903733pt;}
.ya1{bottom:171.908267pt;}
.y122{bottom:171.908400pt;}
.y71{bottom:171.912933pt;}
.ye6{bottom:171.917600pt;}
.y15d{bottom:175.303600pt;}
.y5a{bottom:175.303733pt;}
.ya0{bottom:185.383600pt;}
.y59{bottom:185.383733pt;}
.y70{bottom:185.388267pt;}
.ybe{bottom:185.388400pt;}
.ye5{bottom:185.392933pt;}
.y19a{bottom:185.397733pt;}
.y121{bottom:185.402400pt;}
.y1cc{bottom:185.813200pt;}
.y9f{bottom:188.783600pt;}
.y58{bottom:188.783733pt;}
.y141{bottom:198.863600pt;}
.y57{bottom:198.863733pt;}
.ye4{bottom:198.868267pt;}
.y199{bottom:198.873067pt;}
.y120{bottom:198.877733pt;}
.y9e{bottom:198.896267pt;}
.y6f{bottom:202.263600pt;}
.y56{bottom:202.263733pt;}
.y6e{bottom:212.343600pt;}
.y55{bottom:212.343733pt;}
.y198{bottom:212.348400pt;}
.ybd{bottom:212.353067pt;}
.y9d{bottom:212.371600pt;}
.y6d{bottom:215.743600pt;}
.y54{bottom:215.743733pt;}
.y1f{bottom:219.799733pt;}
.y15c{bottom:220.302800pt;}
.y130{bottom:225.823600pt;}
.y53{bottom:225.823733pt;}
.y179{bottom:225.828267pt;}
.ybc{bottom:225.828400pt;}
.ye3{bottom:225.832933pt;}
.y9c{bottom:225.846933pt;}
.yfb{bottom:225.856267pt;}
.y52{bottom:229.223733pt;}
.y1cb{bottom:231.525200pt;}
.y1e{bottom:235.031733pt;}
.y15b{bottom:235.534800pt;}
.y51{bottom:239.303733pt;}
.ye2{bottom:239.308267pt;}
.y9b{bottom:239.322267pt;}
.yfa{bottom:239.331600pt;}
.y178{bottom:242.703600pt;}
.y50{bottom:242.703733pt;}
.y1ca{bottom:245.724533pt;}
.y1d{bottom:250.263733pt;}
.y15a{bottom:250.766800pt;}
.y4f{bottom:252.788400pt;}
.y9a{bottom:252.797600pt;}
.yf9{bottom:252.806933pt;}
.ybb{bottom:256.183733pt;}
.y1c9{bottom:259.923867pt;}
.y6c{bottom:262.289867pt;}
.y1c{bottom:265.495733pt;}
.y159{bottom:265.998800pt;}
.ye1{bottom:266.263600pt;}
.y11f{bottom:266.263733pt;}
.ye0{bottom:266.268267pt;}
.y99{bottom:266.272933pt;}
.yba{bottom:266.273067pt;}
.yf8{bottom:266.282267pt;}
.y4e{bottom:269.663733pt;}
.y1c8{bottom:274.123200pt;}
.y6b{bottom:277.521867pt;}
.y140{bottom:279.743600pt;}
.y4d{bottom:279.743733pt;}
.y98{bottom:279.748267pt;}
.yb9{bottom:279.748400pt;}
.yf7{bottom:279.757600pt;}
.y1b{bottom:280.727733pt;}
.y158{bottom:281.230800pt;}
.y4c{bottom:283.143733pt;}
.y1c7{bottom:288.322533pt;}
.y6a{bottom:292.753867pt;}
.ydf{bottom:293.223600pt;}
.y4b{bottom:293.223733pt;}
.yf6{bottom:293.232933pt;}
.y177{bottom:293.252133pt;}
.y1a{bottom:295.959733pt;}
.y157{bottom:296.462800pt;}
.y4a{bottom:296.623733pt;}
.y1c6{bottom:302.521867pt;}
.y197{bottom:306.022533pt;}
.y13f{bottom:306.703600pt;}
.yb8{bottom:306.703733pt;}
.yf5{bottom:306.708267pt;}
.yb7{bottom:306.708400pt;}
.y97{bottom:306.736400pt;}
.y69{bottom:307.985867pt;}
.y176{bottom:308.468133pt;}
.y19{bottom:311.191733pt;}
.y156{bottom:311.694800pt;}
.y1c5{bottom:316.721200pt;}
.yde{bottom:320.183733pt;}
.ydd{bottom:320.188400pt;}
.y96{bottom:320.211733pt;}
.y196{bottom:320.221867pt;}
.y68{bottom:323.159333pt;}
.yf4{bottom:323.583600pt;}
.yb6{bottom:323.583733pt;}
.y175{bottom:323.700133pt;}
.y18{bottom:326.423733pt;}
.y155{bottom:326.926800pt;}
.y1c4{bottom:330.920533pt;}
.y11e{bottom:333.461200pt;}
.yb5{bottom:333.663733pt;}
.y12f{bottom:333.673067pt;}
.y95{bottom:333.687067pt;}
.y195{bottom:334.421200pt;}
.yb4{bottom:337.063733pt;}
.y67{bottom:338.391333pt;}
.y174{bottom:338.932133pt;}
.y17{bottom:341.655733pt;}
.y154{bottom:342.158800pt;}
.y1c3{bottom:345.119867pt;}
.ydc{bottom:347.148400pt;}
.y94{bottom:347.162400pt;}
.y194{bottom:348.620533pt;}
.y11d{bottom:348.693200pt;}
.y66{bottom:353.623333pt;}
.y173{bottom:354.068133pt;}
.y16{bottom:356.887733pt;}
.y153{bottom:357.300133pt;}
.y1c2{bottom:359.319200pt;}
.y12e{bottom:360.623733pt;}
.y93{bottom:360.637733pt;}
.y193{bottom:362.819867pt;}
.y11c{bottom:363.925200pt;}
.y49{bottom:364.010533pt;}
.ydb{bottom:364.023733pt;}
.y65{bottom:368.855333pt;}
.y172{bottom:369.300133pt;}
.y15{bottom:372.119733pt;}
.y152{bottom:372.532133pt;}
.y1c1{bottom:373.518533pt;}
.y92{bottom:374.113067pt;}
.yf3{bottom:376.729467pt;}
.y192{bottom:377.019200pt;}
.y11b{bottom:379.157200pt;}
.yb3{bottom:379.178533pt;}
.y48{bottom:379.242533pt;}
.y64{bottom:384.087333pt;}
.y171{bottom:384.532133pt;}
.y14{bottom:387.351733pt;}
.y91{bottom:387.588400pt;}
.y1c0{bottom:387.717867pt;}
.y151{bottom:387.764133pt;}
.y191{bottom:391.218533pt;}
.yf2{bottom:391.961467pt;}
.y11a{bottom:394.389200pt;}
.yb2{bottom:394.410533pt;}
.y47{bottom:394.463867pt;}
.y63{bottom:399.319333pt;}
.y170{bottom:399.764133pt;}
.y1bf{bottom:401.917200pt;}
.y13{bottom:402.583733pt;}
.y150{bottom:402.996133pt;}
.y90{bottom:404.463600pt;}
.y190{bottom:405.417867pt;}
.yf1{bottom:407.193467pt;}
.y119{bottom:409.621200pt;}
.yb1{bottom:409.642533pt;}
.y46{bottom:409.695867pt;}
.y62{bottom:414.551333pt;}
.y8f{bottom:414.552933pt;}
.y16f{bottom:414.996133pt;}
.y1be{bottom:416.116533pt;}
.y12{bottom:417.815733pt;}
.y14f{bottom:418.228133pt;}
.y18f{bottom:419.617200pt;}
.yf0{bottom:422.425467pt;}
.y118{bottom:424.853200pt;}
.yb0{bottom:424.874533pt;}
.yda{bottom:424.885200pt;}
.y45{bottom:424.890533pt;}
.y8e{bottom:428.028267pt;}
.y61{bottom:429.783333pt;}
.y16e{bottom:430.228133pt;}
.y1bd{bottom:430.315867pt;}
.y14e{bottom:433.460133pt;}
.y18e{bottom:433.816533pt;}
.yef{bottom:437.625467pt;}
.y117{bottom:440.085200pt;}
.yaf{bottom:440.106533pt;}
.y12d{bottom:440.111867pt;}
.yd9{bottom:440.117200pt;}
.y44{bottom:440.122533pt;}
.y1bc{bottom:444.515200pt;}
.y8d{bottom:444.903600pt;}
.y60{bottom:445.015333pt;}
.y16d{bottom:445.460133pt;}
.y18d{bottom:448.015867pt;}
.y14d{bottom:448.692133pt;}
.yee{bottom:452.857467pt;}
.y8c{bottom:454.988400pt;}
.y116{bottom:455.317200pt;}
.yae{bottom:455.338533pt;}
.y12c{bottom:455.343867pt;}
.yd8{bottom:455.349200pt;}
.y43{bottom:455.354533pt;}
.y1bb{bottom:458.714533pt;}
.y5f{bottom:460.247333pt;}
.y16c{bottom:460.692133pt;}
.y18c{bottom:462.215200pt;}
.y14c{bottom:463.924133pt;}
.yed{bottom:468.089467pt;}
.y115{bottom:470.549200pt;}
.yad{bottom:470.570533pt;}
.y12b{bottom:470.575867pt;}
.yd7{bottom:470.581200pt;}
.y42{bottom:470.586533pt;}
.y8b{bottom:471.863733pt;}
.y1ba{bottom:472.913867pt;}
.y11{bottom:473.040400pt;}
.y5e{bottom:475.479333pt;}
.y16b{bottom:475.924133pt;}
.y18b{bottom:476.414533pt;}
.y14b{bottom:479.156133pt;}
.y8a{bottom:481.943733pt;}
.yec{bottom:483.321467pt;}
.y89{bottom:485.343733pt;}
.y114{bottom:485.781200pt;}
.yac{bottom:485.802533pt;}
.y12a{bottom:485.807867pt;}
.yd6{bottom:485.813200pt;}
.y41{bottom:485.818533pt;}
.y1b9{bottom:487.113200pt;}
.y10{bottom:487.933733pt;}
.y18a{bottom:490.613867pt;}
.y5d{bottom:490.711333pt;}
.y16a{bottom:491.156133pt;}
.y14a{bottom:494.388133pt;}
.yeb{bottom:498.553467pt;}
.y113{bottom:501.013200pt;}
.yab{bottom:501.034533pt;}
.y129{bottom:501.039867pt;}
.yd5{bottom:501.045200pt;}
.y40{bottom:501.050533pt;}
.y1b8{bottom:501.312533pt;}
.yf{bottom:502.842400pt;}
.y189{bottom:504.813200pt;}
.y169{bottom:506.388133pt;}
.y149{bottom:509.620133pt;}
.yea{bottom:513.785467pt;}
.y1b7{bottom:515.511867pt;}
.y112{bottom:516.245200pt;}
.yaa{bottom:516.266533pt;}
.y128{bottom:516.271867pt;}
.yd4{bottom:516.277200pt;}
.y3f{bottom:516.282533pt;}
.ye{bottom:517.751067pt;}
.y188{bottom:519.012533pt;}
.y168{bottom:521.620133pt;}
.y148{bottom:524.852133pt;}
.ye9{bottom:529.012133pt;}
.y1b6{bottom:529.711200pt;}
.y75{bottom:531.265600pt;}
.y78{bottom:531.277600pt;}
.y111{bottom:531.477200pt;}
.y88{bottom:531.493200pt;}
.y3e{bottom:531.498533pt;}
.y127{bottom:531.503867pt;}
.yd3{bottom:531.509200pt;}
.yd{bottom:532.659733pt;}
.y187{bottom:533.211867pt;}
.y167{bottom:536.852133pt;}
.y147{bottom:540.084133pt;}
.y1b5{bottom:543.910533pt;}
.ye8{bottom:544.244133pt;}
.y74{bottom:544.741600pt;}
.y77{bottom:544.753600pt;}
.y110{bottom:546.709200pt;}
.yd2{bottom:546.719867pt;}
.y87{bottom:546.725200pt;}
.y3d{bottom:546.730533pt;}
.y126{bottom:546.735867pt;}
.y186{bottom:547.411200pt;}
.y166{bottom:552.084133pt;}
.y146{bottom:555.316133pt;}
.y1b4{bottom:558.109867pt;}
.y73{bottom:558.217600pt;}
.y76{bottom:558.229600pt;}
.y185{bottom:561.610533pt;}
.y10f{bottom:561.941200pt;}
.yd1{bottom:561.951867pt;}
.y86{bottom:561.957200pt;}
.y3c{bottom:561.962533pt;}
.y165{bottom:567.316133pt;}
.y145{bottom:570.548133pt;}
.y1b3{bottom:572.309200pt;}
.y184{bottom:575.809867pt;}
.y13e{bottom:577.141200pt;}
.y3b{bottom:577.157200pt;}
.y10e{bottom:577.173200pt;}
.ya9{bottom:577.178533pt;}
.yd0{bottom:577.183867pt;}
.y85{bottom:577.189200pt;}
.yfe{bottom:579.408267pt;}
.y164{bottom:582.548133pt;}
.y144{bottom:585.780133pt;}
.y1b2{bottom:586.508533pt;}
.yc{bottom:587.569733pt;}
.y183{bottom:590.009200pt;}
.y13d{bottom:592.373200pt;}
.y3a{bottom:592.389200pt;}
.y10d{bottom:592.405200pt;}
.y84{bottom:592.410533pt;}
.ycf{bottom:592.415867pt;}
.yfd{bottom:592.884267pt;}
.y163{bottom:597.780133pt;}
.y1b1{bottom:600.707867pt;}
.y143{bottom:601.012133pt;}
.yb{bottom:602.478400pt;}
.y182{bottom:604.208533pt;}
.y13c{bottom:607.605200pt;}
.y39{bottom:607.621200pt;}
.yce{bottom:607.631867pt;}
.y10c{bottom:607.637200pt;}
.y83{bottom:607.642533pt;}
.y162{bottom:613.012133pt;}
.y1b0{bottom:614.907200pt;}
.y142{bottom:616.244133pt;}
.ya{bottom:617.387067pt;}
.y181{bottom:618.407867pt;}
.y13b{bottom:622.837200pt;}
.y38{bottom:622.853200pt;}
.ycd{bottom:622.863867pt;}
.y10b{bottom:622.869200pt;}
.y161{bottom:628.244133pt;}
.y1af{bottom:629.106533pt;}
.y9{bottom:632.295733pt;}
.y13a{bottom:638.069200pt;}
.y37{bottom:638.085200pt;}
.y10a{bottom:638.090533pt;}
.ycc{bottom:638.095867pt;}
.y1ae{bottom:643.305867pt;}
.y180{bottom:648.607867pt;}
.ycb{bottom:653.279867pt;}
.y139{bottom:653.301200pt;}
.y36{bottom:653.317200pt;}
.y109{bottom:653.322533pt;}
.y1ad{bottom:657.505200pt;}
.y160{bottom:662.190133pt;}
.y17c{bottom:667.959200pt;}
.yca{bottom:668.511867pt;}
.y108{bottom:668.517200pt;}
.y138{bottom:668.533200pt;}
.y35{bottom:668.549200pt;}
.y1ac{bottom:671.704533pt;}
.y15f{bottom:675.666133pt;}
.y17b{bottom:681.435200pt;}
.yc9{bottom:683.743867pt;}
.y107{bottom:683.749200pt;}
.y82{bottom:683.759867pt;}
.y34{bottom:683.765200pt;}
.y1ab{bottom:685.903867pt;}
.y15e{bottom:689.142133pt;}
.y17a{bottom:694.911200pt;}
.yc8{bottom:698.975867pt;}
.y106{bottom:698.981200pt;}
.y81{bottom:698.991867pt;}
.y33{bottom:698.997200pt;}
.y1aa{bottom:700.103200pt;}
.y8{bottom:700.535733pt;}
.yc7{bottom:714.207867pt;}
.y105{bottom:714.213200pt;}
.y80{bottom:714.223867pt;}
.y32{bottom:714.229200pt;}
.y1a9{bottom:714.302533pt;}
.y7{bottom:716.535733pt;}
.y1a8{bottom:728.501867pt;}
.y31{bottom:729.434533pt;}
.yc6{bottom:729.439867pt;}
.y104{bottom:729.445200pt;}
.y137{bottom:729.450533pt;}
.y7f{bottom:729.455867pt;}
.y1a7{bottom:742.701200pt;}
.y125{bottom:744.650533pt;}
.y7e{bottom:744.655867pt;}
.y30{bottom:744.666533pt;}
.yc5{bottom:744.671867pt;}
.y103{bottom:744.677200pt;}
.y136{bottom:744.682533pt;}
.y6{bottom:751.202400pt;}
.y1a6{bottom:756.900533pt;}
.y124{bottom:759.882533pt;}
.y7d{bottom:759.887867pt;}
.y2f{bottom:759.898533pt;}
.yc4{bottom:759.903867pt;}
.y102{bottom:759.909200pt;}
.y1a5{bottom:771.099867pt;}
.y5{bottom:774.535733pt;}
.y101{bottom:775.114533pt;}
.y7c{bottom:775.119867pt;}
.y17f{bottom:775.125067pt;}
.y2e{bottom:775.130533pt;}
.yc3{bottom:775.135867pt;}
.y1a4{bottom:785.299200pt;}
.y100{bottom:790.346533pt;}
.y7b{bottom:790.351867pt;}
.y17e{bottom:790.357067pt;}
.y2d{bottom:790.362533pt;}
.y1a3{bottom:799.498533pt;}
.y2c{bottom:805.557200pt;}
.y135{bottom:805.567733pt;}
.yff{bottom:805.578533pt;}
.y7a{bottom:805.583867pt;}
.ya8{bottom:805.589067pt;}
.y1a2{bottom:813.697867pt;}
.y2b{bottom:820.789200pt;}
.y134{bottom:820.799733pt;}
.y17d{bottom:820.805067pt;}
.ya7{bottom:820.810533pt;}
.y79{bottom:820.815867pt;}
.y1a1{bottom:827.897200pt;}
.y2a{bottom:836.021200pt;}
.y133{bottom:836.031733pt;}
.yc2{bottom:836.037067pt;}
.ya6{bottom:836.042533pt;}
.y1a0{bottom:842.096533pt;}
.y29{bottom:851.253200pt;}
.ya5{bottom:851.258533pt;}
.y132{bottom:851.263733pt;}
.yc1{bottom:851.269067pt;}
.y19f{bottom:856.295867pt;}
.y28{bottom:866.485200pt;}
.ya4{bottom:866.490533pt;}
.y131{bottom:866.495733pt;}
.y19e{bottom:870.495200pt;}
.y4{bottom:880.919067pt;}
.y27{bottom:881.717200pt;}
.ya3{bottom:881.722533pt;}
.y19d{bottom:884.694533pt;}
.y3{bottom:895.119733pt;}
.y26{bottom:896.949200pt;}
.y19c{bottom:898.893867pt;}
.y2{bottom:909.319733pt;}
.y25{bottom:912.181200pt;}
.y19b{bottom:913.093200pt;}
.y1{bottom:923.519733pt;}
.y24{bottom:949.704533pt;}
.h1b{height:26.176810pt;}
.hb{height:26.177344pt;}
.h1a{height:26.177877pt;}
.h26{height:26.287488pt;}
.h2b{height:26.288021pt;}
.h25{height:26.288554pt;}
.h3{height:39.777344pt;}
.h14{height:39.888021pt;}
.h1c{height:40.264323pt;}
.hd{height:40.947266pt;}
.h17{height:42.117188pt;}
.h16{height:42.234375pt;}
.h7{height:44.457031pt;}
.h9{height:44.518365pt;}
.h2e{height:44.580729pt;}
.h8{height:45.001302pt;}
.hc{height:46.796875pt;}
.h2{height:49.136719pt;}
.h1d{height:49.158052pt;}
.h1f{height:49.158585pt;}
.h1e{height:49.178852pt;}
.h13{height:49.179385pt;}
.h21{height:49.179919pt;}
.h10{height:49.200719pt;}
.h2c{height:49.201252pt;}
.h19{height:49.222052pt;}
.hf{height:49.243385pt;}
.h18{height:49.264719pt;}
.h12{height:49.273438pt;}
.he{height:49.286052pt;}
.h24{height:49.307385pt;}
.h22{height:49.328719pt;}
.h28{height:49.350052pt;}
.h23{height:49.358771pt;}
.h15{height:49.370852pt;}
.h27{height:49.380638pt;}
.ha{height:49.414052pt;}
.h11{height:49.422771pt;}
.h29{height:49.499385pt;}
.h2a{height:49.520719pt;}
.h20{height:49.738281pt;}
.h6{height:51.476562pt;}
.h2d{height:53.816406pt;}
.h4{height:76.278906pt;}
.h5{height:1057.951467pt;}
.h1{height:1058.666667pt;}
.h0{height:1058.891467pt;}
.w2{width:755.230667pt;}
.w1{width:756.000000pt;}
.w0{width:756.170533pt;}
.x0{left:0.000000pt;}
.x7{left:0.939867pt;}
.x5d{left:104.002533pt;}
.x58{left:104.939867pt;}
.x44{left:105.829333pt;}
.xd{left:106.765867pt;}
.x22{left:111.821067pt;}
.x23{left:117.185067pt;}
.x59{left:124.945867pt;}
.xc{left:126.766533pt;}
.x24{left:131.861067pt;}
.xf{left:135.176667pt;}
.x1e{left:138.586667pt;}
.x5{left:142.481200pt;}
.x5e{left:145.711867pt;}
.x2b{left:149.413600pt;}
.x18{left:155.892133pt;}
.x52{left:157.320000pt;}
.x45{left:165.987200pt;}
.x1a{left:172.166933pt;}
.xe{left:173.253200pt;}
.x1f{left:175.576800pt;}
.x13{left:181.609067pt;}
.x19{left:192.882400pt;}
.x55{left:200.630267pt;}
.x1b{left:202.653733pt;}
.x10{left:207.837467pt;}
.x8{left:209.162267pt;}
.x61{left:211.520800pt;}
.x3c{left:213.192267pt;}
.x32{left:217.292667pt;}
.x28{left:222.230267pt;}
.x5f{left:224.338800pt;}
.x2d{left:229.475467pt;}
.x37{left:235.459067pt;}
.x2c{left:240.028933pt;}
.x20{left:245.838800pt;}
.x6{left:251.611467pt;}
.x14{left:259.177200pt;}
.x3d{left:265.267733pt;}
.x2e{left:271.455067pt;}
.x1c{left:286.058133pt;}
.x3a{left:289.068800pt;}
.x15{left:296.167333pt;}
.x4e{left:298.604533pt;}
.x33{left:301.475600pt;}
.x48{left:302.642000pt;}
.x12{left:309.359067pt;}
.xb{left:311.360667pt;}
.x38{left:313.975333pt;}
.x9{left:315.243467pt;}
.x1d{left:323.048267pt;}
.xa{left:329.627600pt;}
.x3f{left:332.123467pt;}
.x21{left:337.676133pt;}
.x49{left:339.632133pt;}
.x11{left:351.704133pt;}
.x3e{left:353.985067pt;}
.x2f{left:359.247333pt;}
.x16{left:374.683600pt;}
.x39{left:378.291200pt;}
.x46{left:385.563200pt;}
.x34{left:392.091067pt;}
.x40{left:399.577467pt;}
.x4a{left:401.148533pt;}
.x47{left:415.539200pt;}
.x3b{left:418.718667pt;}
.x25{left:421.937067pt;}
.x26{left:430.781067pt;}
.x1{left:436.404667pt;}
.x17{left:447.655733pt;}
.x57{left:450.283600pt;}
.x4f{left:452.027333pt;}
.x60{left:455.617067pt;}
.x35{left:457.787333pt;}
.x4b{left:468.625467pt;}
.x4d{left:469.673333pt;}
.x41{left:480.407600pt;}
.x53{left:484.255467pt;}
.x27{left:486.065067pt;}
.x3{left:492.417867pt;}
.x4c{left:495.341867pt;}
.x5a{left:507.342267pt;}
.x2{left:510.840800pt;}
.x4{left:523.294933pt;}
.x29{left:535.776800pt;}
.x5b{left:543.136933pt;}
.x36{left:548.704667pt;}
.x30{left:563.635733pt;}
.x42{left:568.151600pt;}
.x54{left:579.248267pt;}
.x50{left:584.903733pt;}
.x2a{left:614.074400pt;}
.x5c{left:616.470400pt;}
.x56{left:618.448133pt;}
.x31{left:619.838000pt;}
.x43{left:622.540800pt;}
.x51{left:647.244400pt;}
}




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