
    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_d7dcc066e6cd8ef808075094.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938000;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_b0909bf0897dc3229f633d78.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914286;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_0a7ac9fb83db92fc606add89.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984000;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_fe7057ca79a6412e72230610.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.029000;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_f9a5aace11bd0f16a98937b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.122000;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_d9834687df3ac071452290d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.783333;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_e3db71d39d97b8d028ce6ca2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.716000;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_e4ef0ba223abe2ee7ae753bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951000;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_4a325da68d4074df17e520bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938000;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_c06eabd6d76f639386ea8dd8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.861000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f3e2c5b343dfe39667046e78.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_485cb27a4e92f7d7145324c9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_508c89bb2b84535ba2d8e25d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0c5ecbf0fe846adf6b9d6b9c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.731000;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);}
.v4{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:13.500000px;}
.v1{vertical-align:18.000600px;}
.v5{vertical-align:19.440000px;}
.v3{vertical-align:25.587000px;}
.v6{vertical-align:50.188800px;}
.ls15{letter-spacing:-0.855000px;}
.ls1b{letter-spacing:-0.324000px;}
.ls6{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000300px;}
.ls3{letter-spacing:0.057000px;}
.ls21{letter-spacing:0.060000px;}
.lse{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.114000px;}
.lsd{letter-spacing:0.129600px;}
.lsa{letter-spacing:0.194400px;}
.ls26{letter-spacing:0.240000px;}
.lsb{letter-spacing:0.259200px;}
.ls25{letter-spacing:0.300000px;}
.lsc{letter-spacing:0.324000px;}
.ls23{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.388800px;}
.ls4{letter-spacing:0.399000px;}
.ls8{letter-spacing:0.453600px;}
.ls2{letter-spacing:0.456000px;}
.ls1a{letter-spacing:0.583200px;}
.ls22{letter-spacing:0.600000px;}
.ls17{letter-spacing:0.648000px;}
.ls24{letter-spacing:0.660000px;}
.ls10{letter-spacing:0.712800px;}
.lsf{letter-spacing:0.714000px;}
.ls19{letter-spacing:0.777600px;}
.ls1f{letter-spacing:0.780000px;}
.ls20{letter-spacing:0.784800px;}
.ls1{letter-spacing:0.798000px;}
.ls13{letter-spacing:0.842400px;}
.ls16{letter-spacing:0.907200px;}
.ls1e{letter-spacing:2.203200px;}
.ls0{letter-spacing:10.656000px;}
.ls12{letter-spacing:13.500000px;}
.ls18{letter-spacing:80.255400px;}
.ls11{letter-spacing:87.695400px;}
.ls1c{letter-spacing:148.441800px;}
.ls1d{letter-spacing:161.536800px;}
.ls7{letter-spacing:1518.989400px;}
.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;}
}
.ws19{word-spacing:-64.800000px;}
.ws25{word-spacing:-45.000000px;}
.ws18{word-spacing:-38.111400px;}
.ws1a{word-spacing:-38.110800px;}
.ws17{word-spacing:-16.912800px;}
.ws13{word-spacing:-16.588800px;}
.ws7{word-spacing:-16.394400px;}
.ws14{word-spacing:-16.200000px;}
.ws4{word-spacing:-15.750000px;}
.ws16{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.965000px;}
.ws6{word-spacing:-13.344000px;}
.ws2b{word-spacing:-10.800000px;}
.ws2{word-spacing:-9.324000px;}
.ws15{word-spacing:-8.579850px;}
.ws1{word-spacing:-0.057000px;}
.ws5{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws2c{word-spacing:86.014800px;}
.ws2a{word-spacing:93.214800px;}
.ws28{word-spacing:95.734200px;}
.ws27{word-spacing:106.512000px;}
.ws29{word-spacing:112.294800px;}
.ws26{word-spacing:112.609800px;}
.ws2e{word-spacing:137.562000px;}
.ws2d{word-spacing:150.780000px;}
.ws8{word-spacing:153.026400px;}
.ws32{word-spacing:161.368200px;}
.ws2f{word-spacing:163.875000px;}
.ws30{word-spacing:168.711600px;}
.wsd{word-spacing:189.262200px;}
.ws24{word-spacing:192.330600px;}
.ws9{word-spacing:201.870000px;}
.ws10{word-spacing:203.868000px;}
.ws12{word-spacing:204.353400px;}
.ws11{word-spacing:206.649000px;}
.wsc{word-spacing:206.973000px;}
.wse{word-spacing:208.620000px;}
.wsb{word-spacing:209.349000px;}
.wsf{word-spacing:218.232000px;}
.ws21{word-spacing:253.078200px;}
.wsa{word-spacing:264.153600px;}
.ws37{word-spacing:277.296600px;}
.ws35{word-spacing:281.320200px;}
.ws38{word-spacing:286.341600px;}
.ws22{word-spacing:286.830600px;}
.ws23{word-spacing:291.574200px;}
.ws33{word-spacing:292.632600px;}
.ws1b{word-spacing:296.681400px;}
.ws34{word-spacing:297.708600px;}
.ws36{word-spacing:304.297200px;}
.ws1e{word-spacing:310.181400px;}
.ws31{word-spacing:362.095800px;}
.ws1f{word-spacing:435.070200px;}
.ws1d{word-spacing:465.904200px;}
.ws20{word-spacing:466.498200px;}
.ws1c{word-spacing:489.934200px;}
._8{margin-left:-14.133000px;}
._1{margin-left:-10.663200px;}
._b{margin-left:-9.324000px;}
._d{margin-left:-3.601200px;}
._11{margin-left:-2.529000px;}
._5{margin-left:-1.311000px;}
._2{width:1.877400px;}
._6{width:2.960400px;}
._3{width:3.990000px;}
._7{width:5.016000px;}
._9{width:6.094200px;}
._4{width:7.125000px;}
._10{width:9.075000px;}
._e{width:10.656000px;}
._a{width:11.676000px;}
._0{width:13.344000px;}
._f{width:16.848000px;}
._13{width:56.097000px;}
._3a{width:67.721400px;}
._35{width:69.094200px;}
._36{width:82.092600px;}
._3b{width:83.465400px;}
._37{width:96.596400px;}
._3e{width:100.175400px;}
._33{width:103.294800px;}
._3d{width:117.293400px;}
._47{width:118.608000px;}
._3f{width:127.661400px;}
._39{width:131.009400px;}
._3c{width:142.943400px;}
._34{width:147.587400px;}
._4a{width:151.062000px;}
._38{width:155.039400px;}
._44{width:168.712200px;}
._42{width:174.719400px;}
._41{width:176.722200px;}
._40{width:178.724400px;}
._45{width:182.211600px;}
._49{width:187.140600px;}
._1f{width:191.155200px;}
._48{width:193.830000px;}
._43{width:198.474000px;}
._46{width:199.824000px;}
._2a{width:206.769600px;}
._1b{width:217.368000px;}
._4c{width:218.473800px;}
._4f{width:228.150600px;}
._1e{width:235.216200px;}
._20{width:237.460800px;}
._15{width:238.642200px;}
._2d{width:241.786200px;}
._4b{width:246.890400px;}
._50{width:249.702000px;}
._17{width:252.142200px;}
._1a{width:264.153600px;}
._1d{width:266.698200px;}
._19{width:269.155200px;}
._4e{width:273.031800px;}
._30{width:274.240200px;}
._18{width:277.653600px;}
._14{width:280.630200px;}
._1c{width:282.736200px;}
._2c{width:286.830600px;}
._2f{width:291.358200px;}
._16{width:295.561200px;}
._24{width:296.681400px;}
._32{width:301.726200px;}
._31{width:305.668200px;}
._23{width:310.181400px;}
._2e{width:317.008200px;}
._4d{width:320.173800px;}
._29{width:321.652200px;}
._22{width:323.681400px;}
._2b{width:329.104200px;}
._25{width:416.116200px;}
._c{width:436.118400px;}
._27{width:465.688200px;}
._28{width:476.056200px;}
._26{width:491.338200px;}
._21{width:495.982200px;}
._12{width:660.853800px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:29.250000px;}
.fse{font-size:34.319400px;}
.fsb{font-size:38.999400px;}
.fs6{font-size:42.000000px;}
.fs10{font-size:42.119400px;}
.fs9{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fsf{font-size:52.800000px;}
.fsd{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fsa{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs8{font-size:64.800000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y16c{bottom:68.824650px;}
.y29{bottom:68.825100px;}
.y10e{bottom:68.825400px;}
.y180{bottom:72.099000px;}
.y57{bottom:72.099450px;}
.y126{bottom:72.099750px;}
.y27{bottom:107.149650px;}
.y155{bottom:107.209500px;}
.y10c{bottom:107.485500px;}
.y151{bottom:107.541300px;}
.yf1{bottom:107.984100px;}
.y1bb{bottom:108.200250px;}
.ye1{bottom:108.318450px;}
.y16a{bottom:108.337500px;}
.y125{bottom:108.390000px;}
.y56{bottom:108.581700px;}
.yd5{bottom:108.657150px;}
.y1df{bottom:109.266750px;}
.y20c{bottom:109.329300px;}
.y1a4{bottom:110.317650px;}
.ya3{bottom:111.109500px;}
.ybb{bottom:111.109650px;}
.y26{bottom:119.149650px;}
.y10b{bottom:125.082000px;}
.y150{bottom:125.137800px;}
.yf0{bottom:125.580600px;}
.y1ba{bottom:125.796750px;}
.ye0{bottom:125.914950px;}
.y169{bottom:125.934000px;}
.y124{bottom:125.986500px;}
.y55{bottom:126.178200px;}
.yd4{bottom:126.253650px;}
.y1de{bottom:126.863250px;}
.y20b{bottom:126.925800px;}
.y1a3{bottom:127.914150px;}
.y154{bottom:131.183850px;}
.y25{bottom:135.401550px;}
.y193{bottom:137.350350px;}
.y10a{bottom:142.678500px;}
.y14f{bottom:142.734300px;}
.y1b9{bottom:143.393250px;}
.ydf{bottom:143.511450px;}
.y168{bottom:143.530500px;}
.y123{bottom:143.583000px;}
.y54{bottom:143.774850px;}
.y82{bottom:143.784900px;}
.y1dd{bottom:144.459750px;}
.y20a{bottom:144.522300px;}
.yef{bottom:149.554950px;}
.y24{bottom:150.849600px;}
.y1a2{bottom:151.888650px;}
.ya2{bottom:152.428050px;}
.yd3{bottom:152.647500px;}
.y192{bottom:153.090600px;}
.yba{bottom:155.386500px;}
.y17f{bottom:155.484150px;}
.y109{bottom:160.275000px;}
.y14e{bottom:160.330800px;}
.y1b8{bottom:160.989750px;}
.yde{bottom:161.107950px;}
.y167{bottom:161.127000px;}
.y122{bottom:161.179500px;}
.y53{bottom:161.371200px;}
.y81{bottom:161.381400px;}
.y1dc{bottom:162.056250px;}
.y209{bottom:162.118800px;}
.y23{bottom:166.282500px;}
.y191{bottom:168.830700px;}
.ya1{bottom:170.024550px;}
.yb9{bottom:172.983000px;}
.y17e{bottom:173.080650px;}
.y22{bottom:177.463500px;}
.y108{bottom:177.871500px;}
.y14d{bottom:177.927300px;}
.y1b7{bottom:178.586250px;}
.ydd{bottom:178.704450px;}
.y166{bottom:178.723500px;}
.y52{bottom:178.967700px;}
.y80{bottom:178.977900px;}
.yd2{bottom:179.041350px;}
.y1db{bottom:179.652750px;}
.y208{bottom:179.715300px;}
.y190{bottom:184.570800px;}
.y121{bottom:187.573350px;}
.ya0{bottom:187.621050px;}
.yb8{bottom:190.579500px;}
.y17d{bottom:190.677150px;}
.y21{bottom:192.896400px;}
.y107{bottom:195.468000px;}
.y14c{bottom:195.523800px;}
.y1b6{bottom:196.182750px;}
.y165{bottom:196.320000px;}
.y51{bottom:196.564200px;}
.y7f{bottom:196.574400px;}
.yd1{bottom:196.637850px;}
.y1da{bottom:197.249250px;}
.y207{bottom:197.311800px;}
.y18f{bottom:200.310900px;}
.y20{bottom:204.077400px;}
.y9f{bottom:205.217550px;}
.yb7{bottom:208.176000px;}
.y17c{bottom:208.273650px;}
.y106{bottom:213.064500px;}
.y14b{bottom:213.120300px;}
.y1b5{bottom:213.779250px;}
.y164{bottom:213.916500px;}
.y50{bottom:214.160700px;}
.y7e{bottom:214.170900px;}
.yd0{bottom:214.234350px;}
.y1d9{bottom:214.845750px;}
.y206{bottom:214.908300px;}
.y18e{bottom:216.051150px;}
.ydc{bottom:222.692850px;}
.y9e{bottom:222.814050px;}
.yb6{bottom:225.772500px;}
.y17b{bottom:225.870150px;}
.y105{bottom:230.661000px;}
.y14a{bottom:230.716800px;}
.y1b4{bottom:231.375750px;}
.y163{bottom:231.513000px;}
.y120{bottom:231.561750px;}
.y4f{bottom:231.757350px;}
.y7d{bottom:231.767400px;}
.y18d{bottom:231.791250px;}
.ycf{bottom:231.830850px;}
.y1d8{bottom:232.442250px;}
.y205{bottom:232.504800px;}
.ydb{bottom:240.289350px;}
.y9d{bottom:240.410550px;}
.yb5{bottom:243.369000px;}
.y18c{bottom:247.531350px;}
.y104{bottom:248.257500px;}
.y149{bottom:248.313300px;}
.y1b3{bottom:248.972250px;}
.y162{bottom:249.109500px;}
.y4e{bottom:249.353700px;}
.y7c{bottom:249.363900px;}
.y1d7{bottom:250.038750px;}
.y204{bottom:250.101300px;}
.y11f{bottom:255.536250px;}
.y9c{bottom:258.007050px;}
.yce{bottom:258.224700px;}
.yb4{bottom:260.965500px;}
.y18b{bottom:263.271450px;}
.yda{bottom:264.263850px;}
.y103{bottom:265.854000px;}
.y148{bottom:265.909800px;}
.y1b2{bottom:266.568750px;}
.y161{bottom:266.706000px;}
.y4d{bottom:266.950200px;}
.y7b{bottom:266.960400px;}
.y1d6{bottom:267.635250px;}
.y203{bottom:267.697800px;}
.y17a{bottom:269.858700px;}
.y9b{bottom:275.603550px;}
.ycd{bottom:275.821200px;}
.yb3{bottom:278.562000px;}
.y19f{bottom:281.189550px;}
.y102{bottom:283.450500px;}
.y147{bottom:283.506300px;}
.y1b1{bottom:284.165250px;}
.y160{bottom:284.302500px;}
.y4c{bottom:284.546700px;}
.y7a{bottom:284.556900px;}
.y1d5{bottom:285.231750px;}
.y202{bottom:285.294300px;}
.y18a{bottom:288.366000px;}
.y9a{bottom:293.200050px;}
.y179{bottom:293.833050px;}
.y1f{bottom:295.309050px;}
.yb2{bottom:296.158500px;}
.y19e{bottom:298.786050px;}
.y101{bottom:301.047000px;}
.y146{bottom:301.102800px;}
.y1b0{bottom:301.761750px;}
.y15f{bottom:301.899000px;}
.y4b{bottom:302.143200px;}
.y79{bottom:302.153400px;}
.ycc{bottom:302.215050px;}
.y1d4{bottom:302.828250px;}
.y201{bottom:302.890800px;}
.y1e{bottom:311.296050px;}
.yb1{bottom:313.755000px;}
.y19d{bottom:316.382550px;}
.y189{bottom:318.544350px;}
.y100{bottom:318.643500px;}
.y145{bottom:318.699300px;}
.y1af{bottom:319.358250px;}
.y99{bottom:319.593900px;}
.y4a{bottom:319.739850px;}
.y78{bottom:319.749900px;}
.ycb{bottom:319.811550px;}
.y1d3{bottom:320.424750px;}
.y200{bottom:320.487300px;}
.y15e{bottom:328.292700px;}
.yb0{bottom:331.351500px;}
.y1d{bottom:331.534950px;}
.y19c{bottom:333.979050px;}
.y144{bottom:336.295800px;}
.y1ae{bottom:336.954750px;}
.y49{bottom:337.336200px;}
.y77{bottom:337.346400px;}
.yca{bottom:337.408050px;}
.y1ff{bottom:338.083800px;}
.y188{bottom:342.518850px;}
.yff{bottom:345.037350px;}
.y1d2{bottom:346.818450px;}
.y1c{bottom:347.521950px;}
.yaf{bottom:348.948000px;}
.y19b{bottom:351.575550px;}
.y143{bottom:353.892300px;}
.y1ad{bottom:354.551250px;}
.y48{bottom:354.932700px;}
.y76{bottom:354.942900px;}
.y1fe{bottom:355.680300px;}
.y1b{bottom:363.508950px;}
.yc9{bottom:363.801750px;}
.y98{bottom:365.610900px;}
.y19a{bottom:369.172050px;}
.y142{bottom:371.488800px;}
.y47{bottom:372.529200px;}
.y75{bottom:372.539400px;}
.y1fd{bottom:373.276800px;}
.yae{bottom:375.341850px;}
.y1a{bottom:379.495950px;}
.y15d{bottom:380.785200px;}
.y1ac{bottom:380.944950px;}
.y97{bottom:381.351000px;}
.y187{bottom:386.507250px;}
.y141{bottom:389.085300px;}
.y46{bottom:390.125850px;}
.yc8{bottom:390.195600px;}
.y1d1{bottom:390.807000px;}
.y1fc{bottom:390.873300px;}
.yfe{bottom:391.054350px;}
.yad{bottom:391.328850px;}
.y19{bottom:395.482950px;}
.y96{bottom:397.091100px;}
.y74{bottom:402.891750px;}
.y186{bottom:404.103750px;}
.y15c{bottom:404.759700px;}
.y140{bottom:406.681800px;}
.yfd{bottom:406.794450px;}
.yac{bottom:407.315850px;}
.y45{bottom:407.722200px;}
.yc7{bottom:407.792250px;}
.y1d0{bottom:408.403500px;}
.y1fb{bottom:408.469800px;}
.y18{bottom:411.470100px;}
.y95{bottom:412.831200px;}
.y199{bottom:413.160450px;}
.y73{bottom:418.878750px;}
.y185{bottom:421.700250px;}
.yfc{bottom:422.534550px;}
.yab{bottom:423.302850px;}
.y44{bottom:425.318700px;}
.yc6{bottom:425.388600px;}
.y1cf{bottom:426.000000px;}
.y1fa{bottom:426.066300px;}
.y17{bottom:427.456950px;}
.y94{bottom:428.571450px;}
.y198{bottom:430.756950px;}
.y1ab{bottom:431.311500px;}
.y72{bottom:434.865750px;}
.yfb{bottom:438.274800px;}
.yaa{bottom:439.289850px;}
.y184{bottom:439.296750px;}
.y13f{bottom:440.338350px;}
.y43{bottom:442.915350px;}
.yc5{bottom:442.985100px;}
.y16{bottom:443.443950px;}
.y1ce{bottom:443.596500px;}
.y1f9{bottom:443.662650px;}
.y93{bottom:444.311550px;}
.y1aa{bottom:448.908000px;}
.y71{bottom:450.852750px;}
.yfa{bottom:454.014900px;}
.y197{bottom:454.731450px;}
.ya9{bottom:455.276850px;}
.y13e{bottom:456.078450px;}
.y15{bottom:459.431100px;}
.y92{bottom:460.051650px;}
.yc4{bottom:460.581600px;}
.y1cd{bottom:461.193000px;}
.y1f8{bottom:461.259300px;}
.y183{bottom:465.690600px;}
.y70{bottom:466.839750px;}
.yf9{bottom:469.755000px;}
.y13d{bottom:471.818550px;}
.y1a9{bottom:472.882350px;}
.y42{bottom:473.267700px;}
.y91{bottom:475.791750px;}
.y1cc{bottom:478.789500px;}
.y1f7{bottom:478.855800px;}
.ya8{bottom:480.061200px;}
.yf8{bottom:485.495250px;}
.yc3{bottom:486.975450px;}
.y13c{bottom:487.558800px;}
.y41{bottom:489.254700px;}
.y14{bottom:491.405400px;}
.y90{bottom:491.531850px;}
.y6f{bottom:495.582750px;}
.y1cb{bottom:496.386000px;}
.y1f6{bottom:496.452300px;}
.ya7{bottom:497.657700px;}
.yf7{bottom:501.235350px;}
.y13b{bottom:503.298900px;}
.yc2{bottom:504.571950px;}
.y40{bottom:505.241700px;}
.y13{bottom:507.392400px;}
.y6e{bottom:513.179250px;}
.y1ca{bottom:513.982500px;}
.y1f5{bottom:514.048800px;}
.ya6{bottom:515.254050px;}
.y8e{bottom:516.626400px;}
.yf6{bottom:516.975450px;}
.y13a{bottom:519.039000px;}
.y3f{bottom:521.228700px;}
.yc1{bottom:522.168450px;}
.y8d{bottom:523.023150px;}
.y12{bottom:527.631300px;}
.y8f{bottom:529.419900px;}
.y6d{bottom:530.775750px;}
.y1c9{bottom:531.579000px;}
.y210{bottom:531.645150px;}
.y1f4{bottom:531.645300px;}
.y139{bottom:534.779250px;}
.y153{bottom:534.869100px;}
.y1a1{bottom:535.315950px;}
.y182{bottom:536.071050px;}
.y3e{bottom:537.215700px;}
.yc0{bottom:539.764950px;}
.yf5{bottom:542.069850px;}
.y11{bottom:543.618450px;}
.y6c{bottom:548.372250px;}
.y1f3{bottom:549.241800px;}
.y138{bottom:550.519350px;}
.y3d{bottom:553.202700px;}
.ybf{bottom:557.361450px;}
.y152{bottom:558.843600px;}
.ya5{bottom:559.242600px;}
.y1a0{bottom:559.290450px;}
.y8c{bottom:559.598250px;}
.y10{bottom:559.605450px;}
.y181{bottom:560.045400px;}
.y6b{bottom:565.968750px;}
.y137{bottom:566.259450px;}
.y1f2{bottom:566.838300px;}
.y3c{bottom:569.189700px;}
.yf4{bottom:572.248350px;}
.yee{bottom:574.480200px;}
.ybe{bottom:574.957950px;}
.yf{bottom:575.592300px;}
.y1c8{bottom:576.715800px;}
.ya4{bottom:583.217100px;}
.y6a{bottom:583.565250px;}
.y8b{bottom:583.572750px;}
.y1f1{bottom:584.434800px;}
.y3b{bottom:585.176700px;}
.y1c7{bottom:589.263000px;}
.yf3{bottom:589.844850px;}
.y136{bottom:591.472050px;}
.ye{bottom:591.579450px;}
.yed{bottom:592.076700px;}
.y69{bottom:601.161750px;}
.y1f0{bottom:602.031300px;}
.yd{bottom:607.566450px;}
.yec{bottom:609.673200px;}
.y3a{bottom:609.961050px;}
.yf2{bottom:613.819350px;}
.y68{bottom:618.758250px;}
.y20f{bottom:619.627650px;}
.y1ef{bottom:619.627800px;}
.y135{bottom:621.768450px;}
.yc{bottom:623.553300px;}
.ybd{bottom:624.869400px;}
.y1c6{bottom:626.904750px;}
.y39{bottom:627.557400px;}
.y8a{bottom:627.561150px;}
.yeb{bottom:636.067050px;}
.y67{bottom:636.354750px;}
.y1ee{bottom:637.224300px;}
.y1c5{bottom:639.452100px;}
.yb{bottom:639.540450px;}
.y38{bottom:645.154050px;}
.y89{bottom:645.157800px;}
.y134{bottom:645.742950px;}
.ybc{bottom:648.843900px;}
.y66{bottom:653.951250px;}
.y20e{bottom:654.820650px;}
.y1ed{bottom:654.820800px;}
.ya{bottom:655.527300px;}
.y11e{bottom:657.623700px;}
.y37{bottom:662.750400px;}
.y88{bottom:662.754300px;}
.y65{bottom:671.547750px;}
.y1ec{bottom:672.417300px;}
.y11d{bottom:673.363800px;}
.yea{bottom:675.803400px;}
.y1c4{bottom:677.093850px;}
.y36{bottom:680.347050px;}
.y133{bottom:680.347350px;}
.y87{bottom:680.350800px;}
.y9{bottom:687.501750px;}
.y11c{bottom:689.103900px;}
.y64{bottom:689.144250px;}
.y1eb{bottom:690.013800px;}
.ye9{bottom:693.400050px;}
.y178{bottom:696.003450px;}
.y35{bottom:697.943550px;}
.y132{bottom:697.943850px;}
.y86{bottom:697.947300px;}
.y1c2{bottom:702.188250px;}
.y11b{bottom:704.844150px;}
.y63{bottom:706.740750px;}
.y1ea{bottom:707.610300px;}
.ye8{bottom:710.996550px;}
.y177{bottom:711.743550px;}
.y34{bottom:715.540050px;}
.y131{bottom:715.540350px;}
.y85{bottom:715.543800px;}
.y11a{bottom:720.584250px;}
.y62{bottom:724.337250px;}
.y1e9{bottom:725.206800px;}
.y8{bottom:726.358050px;}
.y1c3{bottom:727.282800px;}
.y176{bottom:727.483800px;}
.ye7{bottom:728.593050px;}
.y33{bottom:733.136550px;}
.y130{bottom:733.136850px;}
.y84{bottom:733.140300px;}
.y119{bottom:736.324500px;}
.y7{bottom:740.750550px;}
.y61{bottom:741.933750px;}
.y20d{bottom:742.803150px;}
.y1e8{bottom:742.803300px;}
.y175{bottom:743.224050px;}
.y32{bottom:750.732900px;}
.y12f{bottom:750.733350px;}
.yd9{bottom:750.736800px;}
.y118{bottom:752.064600px;}
.y1c1{bottom:752.377200px;}
.ye6{bottom:754.986900px;}
.y174{bottom:758.964150px;}
.y6{bottom:759.395100px;}
.y60{bottom:759.530250px;}
.y83{bottom:759.534000px;}
.y1e7{bottom:760.399800px;}
.y117{bottom:767.804700px;}
.y31{bottom:768.329550px;}
.y12e{bottom:768.329850px;}
.yd8{bottom:768.333300px;}
.y173{bottom:774.704250px;}
.y5f{bottom:777.126750px;}
.y1e6{bottom:777.996300px;}
.y1c0{bottom:782.555550px;}
.y116{bottom:783.544800px;}
.y30{bottom:785.926050px;}
.y12d{bottom:785.926350px;}
.y172{bottom:790.444350px;}
.y5e{bottom:794.723250px;}
.ye5{bottom:794.723400px;}
.y15b{bottom:794.723550px;}
.yd7{bottom:794.727150px;}
.y1e5{bottom:795.592800px;}
.y1bf{bottom:800.152200px;}
.y5{bottom:800.377500px;}
.y2f{bottom:803.522550px;}
.y12c{bottom:803.522850px;}
.y171{bottom:806.184600px;}
.y115{bottom:808.639350px;}
.y5d{bottom:812.319750px;}
.ye4{bottom:812.319900px;}
.y15a{bottom:812.320200px;}
.y1e4{bottom:813.189300px;}
.y1be{bottom:817.748700px;}
.y2e{bottom:821.119050px;}
.y12b{bottom:821.119350px;}
.y112{bottom:821.432850px;}
.y170{bottom:821.924700px;}
.y4{bottom:825.577350px;}
.y111{bottom:827.829600px;}
.y5c{bottom:829.916250px;}
.y159{bottom:829.916550px;}
.y196{bottom:829.916700px;}
.y1e3{bottom:830.785800px;}
.y113{bottom:834.226350px;}
.y2d{bottom:838.715550px;}
.y12a{bottom:838.715850px;}
.y1bd{bottom:841.723050px;}
.y16f{bottom:847.019100px;}
.y114{bottom:847.019850px;}
.y1a8{bottom:847.512450px;}
.y5b{bottom:847.512750px;}
.y158{bottom:847.513050px;}
.y195{bottom:847.513200px;}
.y1e2{bottom:848.382450px;}
.yd6{bottom:856.311900px;}
.y2c{bottom:856.312200px;}
.y129{bottom:856.312350px;}
.y1a7{bottom:865.108950px;}
.y5a{bottom:865.109250px;}
.ye3{bottom:865.109400px;}
.y157{bottom:865.109550px;}
.y194{bottom:865.109700px;}
.y1e1{bottom:865.978950px;}
.y2b{bottom:873.908550px;}
.y128{bottom:873.908850px;}
.y16e{bottom:877.197450px;}
.y110{bottom:877.198200px;}
.y1a6{bottom:882.705450px;}
.y59{bottom:882.705750px;}
.ye2{bottom:882.705900px;}
.y156{bottom:882.706200px;}
.y1e0{bottom:883.575450px;}
.y1{bottom:892.729200px;}
.y1bc{bottom:900.301950px;}
.y1a5{bottom:900.302100px;}
.y58{bottom:900.302250px;}
.y2a{bottom:900.302400px;}
.y127{bottom:900.302700px;}
.y16d{bottom:901.171950px;}
.y10f{bottom:901.172700px;}
.y3{bottom:921.361500px;}
.y16b{bottom:936.769950px;}
.y28{bottom:936.770250px;}
.y10d{bottom:936.770700px;}
.y2{bottom:938.958000px;}
.h14{height:29.274448px;}
.ha{height:31.206000px;}
.h12{height:32.175000px;}
.he{height:34.656000px;}
.h2{height:35.664000px;}
.h3{height:37.893000px;}
.h18{height:38.385000px;}
.hf{height:42.920000px;}
.h9{height:43.320000px;}
.h7{height:43.503000px;}
.h13{height:46.062000px;}
.hc{height:46.332000px;}
.h8{height:48.621000px;}
.h17{height:49.248000px;}
.h15{height:51.180000px;}
.h10{height:51.267088px;}
.h6{height:53.739000px;}
.hd{height:55.274400px;}
.h16{height:55.367848px;}
.hb{height:56.298000px;}
.h11{height:57.762000px;}
.h5{height:63.840000px;}
.h4{height:64.350000px;}
.h19{height:96.250800px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xc{left:93.543300px;}
.x2{left:97.795350px;}
.x44{left:100.335000px;}
.x3c{left:106.942650px;}
.x5{left:114.539700px;}
.x42{left:117.337800px;}
.xe{left:119.055150px;}
.x33{left:121.064700px;}
.x9{left:123.307050px;}
.x37{left:126.254400px;}
.x3f{left:127.552200px;}
.x32{left:129.420150px;}
.x1c{left:133.937100px;}
.x36{left:135.239700px;}
.x1d{left:138.189000px;}
.x1f{left:142.724100px;}
.x3{left:151.990200px;}
.x24{left:153.070950px;}
.x10{left:155.349900px;}
.xa{left:157.951650px;}
.x17{left:159.448800px;}
.xb{left:163.201650px;}
.x22{left:166.663950px;}
.x40{left:169.341900px;}
.xd{left:172.357800px;}
.x1b{left:173.999550px;}
.x8{left:175.467150px;}
.xf{left:176.609700px;}
.x13{left:178.765500px;}
.x31{left:181.803750px;}
.x2f{left:184.011600px;}
.x38{left:185.683800px;}
.x7{left:187.156350px;}
.x35{left:192.315600px;}
.x39{left:197.833200px;}
.x20{left:203.847450px;}
.x34{left:209.721000px;}
.x4{left:211.800300px;}
.x3e{left:216.320700px;}
.x30{left:218.885550px;}
.x1e{left:250.774800px;}
.x19{left:252.260550px;}
.x3b{left:265.228050px;}
.x3d{left:269.479950px;}
.x12{left:284.787600px;}
.x43{left:287.795850px;}
.x45{left:290.057100px;}
.x25{left:291.527250px;}
.x41{left:293.033850px;}
.x23{left:304.035600px;}
.x6{left:306.398850px;}
.x3a{left:330.297000px;}
.x1a{left:334.121850px;}
.x11{left:337.174200px;}
.x18{left:338.373900px;}
.x21{left:341.426100px;}
.x27{left:380.109900px;}
.x26{left:390.274050px;}
.x14{left:411.927000px;}
.x1{left:458.055000px;}
.x2a{left:464.372700px;}
.x29{left:471.853650px;}
.x28{left:476.072400px;}
.x16{left:477.459450px;}
.x15{left:484.878600px;}
.x2c{left:544.799250px;}
.x2e{left:546.902700px;}
.x2d{left:552.955350px;}
.x2b{left:564.390600px;}
@media print{
.v4{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.000000pt;}
.v1{vertical-align:16.000533pt;}
.v5{vertical-align:17.280000pt;}
.v3{vertical-align:22.744000pt;}
.v6{vertical-align:44.612267pt;}
.ls15{letter-spacing:-0.760000pt;}
.ls1b{letter-spacing:-0.288000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000267pt;}
.ls3{letter-spacing:0.050667pt;}
.ls21{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.101333pt;}
.lsd{letter-spacing:0.115200pt;}
.lsa{letter-spacing:0.172800pt;}
.ls26{letter-spacing:0.213333pt;}
.lsb{letter-spacing:0.230400pt;}
.ls25{letter-spacing:0.266667pt;}
.lsc{letter-spacing:0.288000pt;}
.ls23{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.345600pt;}
.ls4{letter-spacing:0.354667pt;}
.ls8{letter-spacing:0.403200pt;}
.ls2{letter-spacing:0.405333pt;}
.ls1a{letter-spacing:0.518400pt;}
.ls22{letter-spacing:0.533333pt;}
.ls17{letter-spacing:0.576000pt;}
.ls24{letter-spacing:0.586667pt;}
.ls10{letter-spacing:0.633600pt;}
.lsf{letter-spacing:0.634667pt;}
.ls19{letter-spacing:0.691200pt;}
.ls1f{letter-spacing:0.693333pt;}
.ls20{letter-spacing:0.697600pt;}
.ls1{letter-spacing:0.709333pt;}
.ls13{letter-spacing:0.748800pt;}
.ls16{letter-spacing:0.806400pt;}
.ls1e{letter-spacing:1.958400pt;}
.ls0{letter-spacing:9.472000pt;}
.ls12{letter-spacing:12.000000pt;}
.ls18{letter-spacing:71.338133pt;}
.ls11{letter-spacing:77.951467pt;}
.ls1c{letter-spacing:131.948267pt;}
.ls1d{letter-spacing:143.588267pt;}
.ls7{letter-spacing:1350.212800pt;}
.ws19{word-spacing:-57.600000pt;}
.ws25{word-spacing:-40.000000pt;}
.ws18{word-spacing:-33.876800pt;}
.ws1a{word-spacing:-33.876267pt;}
.ws17{word-spacing:-15.033600pt;}
.ws13{word-spacing:-14.745600pt;}
.ws7{word-spacing:-14.572800pt;}
.ws14{word-spacing:-14.400000pt;}
.ws4{word-spacing:-14.000000pt;}
.ws16{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.413333pt;}
.ws6{word-spacing:-11.861333pt;}
.ws2b{word-spacing:-9.600000pt;}
.ws2{word-spacing:-8.288000pt;}
.ws15{word-spacing:-7.626533pt;}
.ws1{word-spacing:-0.050667pt;}
.ws5{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws2c{word-spacing:76.457600pt;}
.ws2a{word-spacing:82.857600pt;}
.ws28{word-spacing:85.097067pt;}
.ws27{word-spacing:94.677333pt;}
.ws29{word-spacing:99.817600pt;}
.ws26{word-spacing:100.097600pt;}
.ws2e{word-spacing:122.277333pt;}
.ws2d{word-spacing:134.026667pt;}
.ws8{word-spacing:136.023467pt;}
.ws32{word-spacing:143.438400pt;}
.ws2f{word-spacing:145.666667pt;}
.ws30{word-spacing:149.965867pt;}
.wsd{word-spacing:168.233067pt;}
.ws24{word-spacing:170.960533pt;}
.ws9{word-spacing:179.440000pt;}
.ws10{word-spacing:181.216000pt;}
.ws12{word-spacing:181.647467pt;}
.ws11{word-spacing:183.688000pt;}
.wsc{word-spacing:183.976000pt;}
.wse{word-spacing:185.440000pt;}
.wsb{word-spacing:186.088000pt;}
.wsf{word-spacing:193.984000pt;}
.ws21{word-spacing:224.958400pt;}
.wsa{word-spacing:234.803200pt;}
.ws37{word-spacing:246.485867pt;}
.ws35{word-spacing:250.062400pt;}
.ws38{word-spacing:254.525867pt;}
.ws22{word-spacing:254.960533pt;}
.ws23{word-spacing:259.177067pt;}
.ws33{word-spacing:260.117867pt;}
.ws1b{word-spacing:263.716800pt;}
.ws34{word-spacing:264.629867pt;}
.ws36{word-spacing:270.486400pt;}
.ws1e{word-spacing:275.716800pt;}
.ws31{word-spacing:321.862933pt;}
.ws1f{word-spacing:386.729067pt;}
.ws1d{word-spacing:414.137067pt;}
.ws20{word-spacing:414.665067pt;}
.ws1c{word-spacing:435.497067pt;}
._8{margin-left:-12.562667pt;}
._1{margin-left:-9.478400pt;}
._b{margin-left:-8.288000pt;}
._d{margin-left:-3.201067pt;}
._11{margin-left:-2.248000pt;}
._5{margin-left:-1.165333pt;}
._2{width:1.668800pt;}
._6{width:2.631467pt;}
._3{width:3.546667pt;}
._7{width:4.458667pt;}
._9{width:5.417067pt;}
._4{width:6.333333pt;}
._10{width:8.066667pt;}
._e{width:9.472000pt;}
._a{width:10.378667pt;}
._0{width:11.861333pt;}
._f{width:14.976000pt;}
._13{width:49.864000pt;}
._3a{width:60.196800pt;}
._35{width:61.417067pt;}
._36{width:72.971200pt;}
._3b{width:74.191467pt;}
._37{width:85.863467pt;}
._3e{width:89.044800pt;}
._33{width:91.817600pt;}
._3d{width:104.260800pt;}
._47{width:105.429333pt;}
._3f{width:113.476800pt;}
._39{width:116.452800pt;}
._3c{width:127.060800pt;}
._34{width:131.188800pt;}
._4a{width:134.277333pt;}
._38{width:137.812800pt;}
._44{width:149.966400pt;}
._42{width:155.306133pt;}
._41{width:157.086400pt;}
._40{width:158.866133pt;}
._45{width:161.965867pt;}
._49{width:166.347200pt;}
._1f{width:169.915733pt;}
._48{width:172.293333pt;}
._43{width:176.421333pt;}
._46{width:177.621333pt;}
._2a{width:183.795200pt;}
._1b{width:193.216000pt;}
._4c{width:194.198933pt;}
._4f{width:202.800533pt;}
._1e{width:209.081067pt;}
._20{width:211.076267pt;}
._15{width:212.126400pt;}
._2d{width:214.921067pt;}
._4b{width:219.458133pt;}
._50{width:221.957333pt;}
._17{width:224.126400pt;}
._1a{width:234.803200pt;}
._1d{width:237.065067pt;}
._19{width:239.249067pt;}
._4e{width:242.694933pt;}
._30{width:243.769067pt;}
._18{width:246.803200pt;}
._14{width:249.449067pt;}
._1c{width:251.321067pt;}
._2c{width:254.960533pt;}
._2f{width:258.985067pt;}
._16{width:262.721067pt;}
._24{width:263.716800pt;}
._32{width:268.201067pt;}
._31{width:271.705067pt;}
._23{width:275.716800pt;}
._2e{width:281.785067pt;}
._4d{width:284.598933pt;}
._29{width:285.913067pt;}
._22{width:287.716800pt;}
._2b{width:292.537067pt;}
._25{width:369.881067pt;}
._c{width:387.660800pt;}
._27{width:413.945067pt;}
._28{width:423.161067pt;}
._26{width:436.745067pt;}
._21{width:440.873067pt;}
._12{width:587.425600pt;}
.fsc{font-size:26.000000pt;}
.fse{font-size:30.506133pt;}
.fsb{font-size:34.666133pt;}
.fs6{font-size:37.333333pt;}
.fs10{font-size:37.439467pt;}
.fs9{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fsf{font-size:46.933333pt;}
.fsd{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fsa{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs8{font-size:57.600000pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y16c{bottom:61.177467pt;}
.y29{bottom:61.177867pt;}
.y10e{bottom:61.178133pt;}
.y180{bottom:64.088000pt;}
.y57{bottom:64.088400pt;}
.y126{bottom:64.088667pt;}
.y27{bottom:95.244133pt;}
.y155{bottom:95.297333pt;}
.y10c{bottom:95.542667pt;}
.y151{bottom:95.592267pt;}
.yf1{bottom:95.985867pt;}
.y1bb{bottom:96.178000pt;}
.ye1{bottom:96.283067pt;}
.y16a{bottom:96.300000pt;}
.y125{bottom:96.346667pt;}
.y56{bottom:96.517067pt;}
.yd5{bottom:96.584133pt;}
.y1df{bottom:97.126000pt;}
.y20c{bottom:97.181600pt;}
.y1a4{bottom:98.060133pt;}
.ya3{bottom:98.764000pt;}
.ybb{bottom:98.764133pt;}
.y26{bottom:105.910800pt;}
.y10b{bottom:111.184000pt;}
.y150{bottom:111.233600pt;}
.yf0{bottom:111.627200pt;}
.y1ba{bottom:111.819333pt;}
.ye0{bottom:111.924400pt;}
.y169{bottom:111.941333pt;}
.y124{bottom:111.988000pt;}
.y55{bottom:112.158400pt;}
.yd4{bottom:112.225467pt;}
.y1de{bottom:112.767333pt;}
.y20b{bottom:112.822933pt;}
.y1a3{bottom:113.701467pt;}
.y154{bottom:116.607867pt;}
.y25{bottom:120.356933pt;}
.y193{bottom:122.089200pt;}
.y10a{bottom:126.825333pt;}
.y14f{bottom:126.874933pt;}
.y1b9{bottom:127.460667pt;}
.ydf{bottom:127.565733pt;}
.y168{bottom:127.582667pt;}
.y123{bottom:127.629333pt;}
.y54{bottom:127.799867pt;}
.y82{bottom:127.808800pt;}
.y1dd{bottom:128.408667pt;}
.y20a{bottom:128.464267pt;}
.yef{bottom:132.937733pt;}
.y24{bottom:134.088533pt;}
.y1a2{bottom:135.012133pt;}
.ya2{bottom:135.491600pt;}
.yd3{bottom:135.686667pt;}
.y192{bottom:136.080533pt;}
.yba{bottom:138.121333pt;}
.y17f{bottom:138.208133pt;}
.y109{bottom:142.466667pt;}
.y14e{bottom:142.516267pt;}
.y1b8{bottom:143.102000pt;}
.yde{bottom:143.207067pt;}
.y167{bottom:143.224000pt;}
.y122{bottom:143.270667pt;}
.y53{bottom:143.441067pt;}
.y81{bottom:143.450133pt;}
.y1dc{bottom:144.050000pt;}
.y209{bottom:144.105600pt;}
.y23{bottom:147.806667pt;}
.y191{bottom:150.071733pt;}
.ya1{bottom:151.132933pt;}
.yb9{bottom:153.762667pt;}
.y17e{bottom:153.849467pt;}
.y22{bottom:157.745333pt;}
.y108{bottom:158.108000pt;}
.y14d{bottom:158.157600pt;}
.y1b7{bottom:158.743333pt;}
.ydd{bottom:158.848400pt;}
.y166{bottom:158.865333pt;}
.y52{bottom:159.082400pt;}
.y80{bottom:159.091467pt;}
.yd2{bottom:159.147867pt;}
.y1db{bottom:159.691333pt;}
.y208{bottom:159.746933pt;}
.y190{bottom:164.062933pt;}
.y121{bottom:166.731867pt;}
.ya0{bottom:166.774267pt;}
.yb8{bottom:169.404000pt;}
.y17d{bottom:169.490800pt;}
.y21{bottom:171.463467pt;}
.y107{bottom:173.749333pt;}
.y14c{bottom:173.798933pt;}
.y1b6{bottom:174.384667pt;}
.y165{bottom:174.506667pt;}
.y51{bottom:174.723733pt;}
.y7f{bottom:174.732800pt;}
.yd1{bottom:174.789200pt;}
.y1da{bottom:175.332667pt;}
.y207{bottom:175.388267pt;}
.y18f{bottom:178.054133pt;}
.y20{bottom:181.402133pt;}
.y9f{bottom:182.415600pt;}
.yb7{bottom:185.045333pt;}
.y17c{bottom:185.132133pt;}
.y106{bottom:189.390667pt;}
.y14b{bottom:189.440267pt;}
.y1b5{bottom:190.026000pt;}
.y164{bottom:190.148000pt;}
.y50{bottom:190.365067pt;}
.y7e{bottom:190.374133pt;}
.yd0{bottom:190.430533pt;}
.y1d9{bottom:190.974000pt;}
.y206{bottom:191.029600pt;}
.y18e{bottom:192.045467pt;}
.ydc{bottom:197.949200pt;}
.y9e{bottom:198.056933pt;}
.yb6{bottom:200.686667pt;}
.y17b{bottom:200.773467pt;}
.y105{bottom:205.032000pt;}
.y14a{bottom:205.081600pt;}
.y1b4{bottom:205.667333pt;}
.y163{bottom:205.789333pt;}
.y120{bottom:205.832667pt;}
.y4f{bottom:206.006533pt;}
.y7d{bottom:206.015467pt;}
.y18d{bottom:206.036667pt;}
.ycf{bottom:206.071867pt;}
.y1d8{bottom:206.615333pt;}
.y205{bottom:206.670933pt;}
.ydb{bottom:213.590533pt;}
.y9d{bottom:213.698267pt;}
.yb5{bottom:216.328000pt;}
.y18c{bottom:220.027867pt;}
.y104{bottom:220.673333pt;}
.y149{bottom:220.722933pt;}
.y1b3{bottom:221.308667pt;}
.y162{bottom:221.430667pt;}
.y4e{bottom:221.647733pt;}
.y7c{bottom:221.656800pt;}
.y1d7{bottom:222.256667pt;}
.y204{bottom:222.312267pt;}
.y11f{bottom:227.143333pt;}
.y9c{bottom:229.339600pt;}
.yce{bottom:229.533067pt;}
.yb4{bottom:231.969333pt;}
.y18b{bottom:234.019067pt;}
.yda{bottom:234.901200pt;}
.y103{bottom:236.314667pt;}
.y148{bottom:236.364267pt;}
.y1b2{bottom:236.950000pt;}
.y161{bottom:237.072000pt;}
.y4d{bottom:237.289067pt;}
.y7b{bottom:237.298133pt;}
.y1d6{bottom:237.898000pt;}
.y203{bottom:237.953600pt;}
.y17a{bottom:239.874400pt;}
.y9b{bottom:244.980933pt;}
.ycd{bottom:245.174400pt;}
.yb3{bottom:247.610667pt;}
.y19f{bottom:249.946267pt;}
.y102{bottom:251.956000pt;}
.y147{bottom:252.005600pt;}
.y1b1{bottom:252.591333pt;}
.y160{bottom:252.713333pt;}
.y4c{bottom:252.930400pt;}
.y7a{bottom:252.939467pt;}
.y1d5{bottom:253.539333pt;}
.y202{bottom:253.594933pt;}
.y18a{bottom:256.325333pt;}
.y9a{bottom:260.622267pt;}
.y179{bottom:261.184933pt;}
.y1f{bottom:262.496933pt;}
.yb2{bottom:263.252000pt;}
.y19e{bottom:265.587600pt;}
.y101{bottom:267.597333pt;}
.y146{bottom:267.646933pt;}
.y1b0{bottom:268.232667pt;}
.y15f{bottom:268.354667pt;}
.y4b{bottom:268.571733pt;}
.y79{bottom:268.580800pt;}
.ycc{bottom:268.635600pt;}
.y1d4{bottom:269.180667pt;}
.y201{bottom:269.236267pt;}
.y1e{bottom:276.707600pt;}
.yb1{bottom:278.893333pt;}
.y19d{bottom:281.228933pt;}
.y189{bottom:283.150533pt;}
.y100{bottom:283.238667pt;}
.y145{bottom:283.288267pt;}
.y1af{bottom:283.874000pt;}
.y99{bottom:284.083467pt;}
.y4a{bottom:284.213200pt;}
.y78{bottom:284.222133pt;}
.ycb{bottom:284.276933pt;}
.y1d3{bottom:284.822000pt;}
.y200{bottom:284.877600pt;}
.y15e{bottom:291.815733pt;}
.yb0{bottom:294.534667pt;}
.y1d{bottom:294.697733pt;}
.y19c{bottom:296.870267pt;}
.y144{bottom:298.929600pt;}
.y1ae{bottom:299.515333pt;}
.y49{bottom:299.854400pt;}
.y77{bottom:299.863467pt;}
.yca{bottom:299.918267pt;}
.y1ff{bottom:300.518933pt;}
.y188{bottom:304.461200pt;}
.yff{bottom:306.699867pt;}
.y1d2{bottom:308.283067pt;}
.y1c{bottom:308.908400pt;}
.yaf{bottom:310.176000pt;}
.y19b{bottom:312.511600pt;}
.y143{bottom:314.570933pt;}
.y1ad{bottom:315.156667pt;}
.y48{bottom:315.495733pt;}
.y76{bottom:315.504800pt;}
.y1fe{bottom:316.160267pt;}
.y1b{bottom:323.119067pt;}
.yc9{bottom:323.379333pt;}
.y98{bottom:324.987467pt;}
.y19a{bottom:328.152933pt;}
.y142{bottom:330.212267pt;}
.y47{bottom:331.137067pt;}
.y75{bottom:331.146133pt;}
.y1fd{bottom:331.801600pt;}
.yae{bottom:333.637200pt;}
.y1a{bottom:337.329733pt;}
.y15d{bottom:338.475733pt;}
.y1ac{bottom:338.617733pt;}
.y97{bottom:338.978667pt;}
.y187{bottom:343.562000pt;}
.y141{bottom:345.853600pt;}
.y46{bottom:346.778533pt;}
.yc8{bottom:346.840533pt;}
.y1d1{bottom:347.384000pt;}
.y1fc{bottom:347.442933pt;}
.yfe{bottom:347.603867pt;}
.yad{bottom:347.847867pt;}
.y19{bottom:351.540400pt;}
.y96{bottom:352.969867pt;}
.y74{bottom:358.126000pt;}
.y186{bottom:359.203333pt;}
.y15c{bottom:359.786400pt;}
.y140{bottom:361.494933pt;}
.yfd{bottom:361.595067pt;}
.yac{bottom:362.058533pt;}
.y45{bottom:362.419733pt;}
.yc7{bottom:362.482000pt;}
.y1d0{bottom:363.025333pt;}
.y1fb{bottom:363.084267pt;}
.y18{bottom:365.751200pt;}
.y95{bottom:366.961067pt;}
.y199{bottom:367.253733pt;}
.y73{bottom:372.336667pt;}
.y185{bottom:374.844667pt;}
.yfc{bottom:375.586267pt;}
.yab{bottom:376.269200pt;}
.y44{bottom:378.061067pt;}
.yc6{bottom:378.123200pt;}
.y1cf{bottom:378.666667pt;}
.y1fa{bottom:378.725600pt;}
.y17{bottom:379.961733pt;}
.y94{bottom:380.952400pt;}
.y198{bottom:382.895067pt;}
.y1ab{bottom:383.388000pt;}
.y72{bottom:386.547333pt;}
.yfb{bottom:389.577600pt;}
.yaa{bottom:390.479867pt;}
.y184{bottom:390.486000pt;}
.y13f{bottom:391.411867pt;}
.y43{bottom:393.702533pt;}
.yc5{bottom:393.764533pt;}
.y16{bottom:394.172400pt;}
.y1ce{bottom:394.308000pt;}
.y1f9{bottom:394.366800pt;}
.y93{bottom:394.943600pt;}
.y1aa{bottom:399.029333pt;}
.y71{bottom:400.758000pt;}
.yfa{bottom:403.568800pt;}
.y197{bottom:404.205733pt;}
.ya9{bottom:404.690533pt;}
.y13e{bottom:405.403067pt;}
.y15{bottom:408.383200pt;}
.y92{bottom:408.934800pt;}
.yc4{bottom:409.405867pt;}
.y1cd{bottom:409.949333pt;}
.y1f8{bottom:410.008267pt;}
.y183{bottom:413.947200pt;}
.y70{bottom:414.968667pt;}
.yf9{bottom:417.560000pt;}
.y13d{bottom:419.394267pt;}
.y1a9{bottom:420.339867pt;}
.y42{bottom:420.682400pt;}
.y91{bottom:422.926000pt;}
.y1cc{bottom:425.590667pt;}
.y1f7{bottom:425.649600pt;}
.ya8{bottom:426.721067pt;}
.yf8{bottom:431.551333pt;}
.yc3{bottom:432.867067pt;}
.y13c{bottom:433.385600pt;}
.y41{bottom:434.893067pt;}
.y14{bottom:436.804800pt;}
.y90{bottom:436.917200pt;}
.y6f{bottom:440.518000pt;}
.y1cb{bottom:441.232000pt;}
.y1f6{bottom:441.290933pt;}
.ya7{bottom:442.362400pt;}
.yf7{bottom:445.542533pt;}
.y13b{bottom:447.376800pt;}
.yc2{bottom:448.508400pt;}
.y40{bottom:449.103733pt;}
.y13{bottom:451.015467pt;}
.y6e{bottom:456.159333pt;}
.y1ca{bottom:456.873333pt;}
.y1f5{bottom:456.932267pt;}
.ya6{bottom:458.003600pt;}
.y8e{bottom:459.223467pt;}
.yf6{bottom:459.533733pt;}
.y13a{bottom:461.368000pt;}
.y3f{bottom:463.314400pt;}
.yc1{bottom:464.149733pt;}
.y8d{bottom:464.909467pt;}
.y12{bottom:469.005600pt;}
.y8f{bottom:470.595467pt;}
.y6d{bottom:471.800667pt;}
.y1c9{bottom:472.514667pt;}
.y210{bottom:472.573467pt;}
.y1f4{bottom:472.573600pt;}
.y139{bottom:475.359333pt;}
.y153{bottom:475.439200pt;}
.y1a1{bottom:475.836400pt;}
.y182{bottom:476.507600pt;}
.y3e{bottom:477.525067pt;}
.yc0{bottom:479.791067pt;}
.yf5{bottom:481.839867pt;}
.y11{bottom:483.216400pt;}
.y6c{bottom:487.442000pt;}
.y1f3{bottom:488.214933pt;}
.y138{bottom:489.350533pt;}
.y3d{bottom:491.735733pt;}
.ybf{bottom:495.432400pt;}
.y152{bottom:496.749867pt;}
.ya5{bottom:497.104533pt;}
.y1a0{bottom:497.147067pt;}
.y8c{bottom:497.420667pt;}
.y10{bottom:497.427067pt;}
.y181{bottom:497.818133pt;}
.y6b{bottom:503.083333pt;}
.y137{bottom:503.341733pt;}
.y1f2{bottom:503.856267pt;}
.y3c{bottom:505.946400pt;}
.yf4{bottom:508.665200pt;}
.yee{bottom:510.649067pt;}
.ybe{bottom:511.073733pt;}
.yf{bottom:511.637600pt;}
.y1c8{bottom:512.636267pt;}
.ya4{bottom:518.415200pt;}
.y6a{bottom:518.724667pt;}
.y8b{bottom:518.731333pt;}
.y1f1{bottom:519.497600pt;}
.y3b{bottom:520.157067pt;}
.y1c7{bottom:523.789333pt;}
.yf3{bottom:524.306533pt;}
.y136{bottom:525.752933pt;}
.ye{bottom:525.848400pt;}
.yed{bottom:526.290400pt;}
.y69{bottom:534.366000pt;}
.y1f0{bottom:535.138933pt;}
.yd{bottom:540.059067pt;}
.yec{bottom:541.931733pt;}
.y3a{bottom:542.187600pt;}
.yf2{bottom:545.617200pt;}
.y68{bottom:550.007333pt;}
.y20f{bottom:550.780133pt;}
.y1ef{bottom:550.780267pt;}
.y135{bottom:552.683067pt;}
.yc{bottom:554.269600pt;}
.ybd{bottom:555.439467pt;}
.y1c6{bottom:557.248667pt;}
.y39{bottom:557.828800pt;}
.y8a{bottom:557.832133pt;}
.yeb{bottom:565.392933pt;}
.y67{bottom:565.648667pt;}
.y1ee{bottom:566.421600pt;}
.y1c5{bottom:568.401867pt;}
.yb{bottom:568.480400pt;}
.y38{bottom:573.470267pt;}
.y89{bottom:573.473600pt;}
.y134{bottom:573.993733pt;}
.ybc{bottom:576.750133pt;}
.y66{bottom:581.290000pt;}
.y20e{bottom:582.062800pt;}
.y1ed{bottom:582.062933pt;}
.ya{bottom:582.690933pt;}
.y11e{bottom:584.554400pt;}
.y37{bottom:589.111467pt;}
.y88{bottom:589.114933pt;}
.y65{bottom:596.931333pt;}
.y1ec{bottom:597.704267pt;}
.y11d{bottom:598.545600pt;}
.yea{bottom:600.714133pt;}
.y1c4{bottom:601.861200pt;}
.y36{bottom:604.752933pt;}
.y133{bottom:604.753200pt;}
.y87{bottom:604.756267pt;}
.y9{bottom:611.112667pt;}
.y11c{bottom:612.536800pt;}
.y64{bottom:612.572667pt;}
.y1eb{bottom:613.345600pt;}
.ye9{bottom:616.355600pt;}
.y178{bottom:618.669733pt;}
.y35{bottom:620.394267pt;}
.y132{bottom:620.394533pt;}
.y86{bottom:620.397600pt;}
.y1c2{bottom:624.167333pt;}
.y11b{bottom:626.528133pt;}
.y63{bottom:628.214000pt;}
.y1ea{bottom:628.986933pt;}
.ye8{bottom:631.996933pt;}
.y177{bottom:632.660933pt;}
.y34{bottom:636.035600pt;}
.y131{bottom:636.035867pt;}
.y85{bottom:636.038933pt;}
.y11a{bottom:640.519333pt;}
.y62{bottom:643.855333pt;}
.y1e9{bottom:644.628267pt;}
.y8{bottom:645.651600pt;}
.y1c3{bottom:646.473600pt;}
.y176{bottom:646.652267pt;}
.ye7{bottom:647.638267pt;}
.y33{bottom:651.676933pt;}
.y130{bottom:651.677200pt;}
.y84{bottom:651.680267pt;}
.y119{bottom:654.510667pt;}
.y7{bottom:658.444933pt;}
.y61{bottom:659.496667pt;}
.y20d{bottom:660.269467pt;}
.y1e8{bottom:660.269600pt;}
.y175{bottom:660.643600pt;}
.y32{bottom:667.318133pt;}
.y12f{bottom:667.318533pt;}
.yd9{bottom:667.321600pt;}
.y118{bottom:668.501867pt;}
.y1c1{bottom:668.779733pt;}
.ye6{bottom:671.099467pt;}
.y174{bottom:674.634800pt;}
.y6{bottom:675.017867pt;}
.y60{bottom:675.138000pt;}
.y83{bottom:675.141333pt;}
.y1e7{bottom:675.910933pt;}
.y117{bottom:682.493067pt;}
.y31{bottom:682.959600pt;}
.y12e{bottom:682.959867pt;}
.yd8{bottom:682.962933pt;}
.y173{bottom:688.626000pt;}
.y5f{bottom:690.779333pt;}
.y1e6{bottom:691.552267pt;}
.y1c0{bottom:695.604933pt;}
.y116{bottom:696.484267pt;}
.y30{bottom:698.600933pt;}
.y12d{bottom:698.601200pt;}
.y172{bottom:702.617200pt;}
.y5e{bottom:706.420667pt;}
.ye5{bottom:706.420800pt;}
.y15b{bottom:706.420933pt;}
.yd7{bottom:706.424133pt;}
.y1e5{bottom:707.193600pt;}
.y1bf{bottom:711.246400pt;}
.y5{bottom:711.446667pt;}
.y2f{bottom:714.242267pt;}
.y12c{bottom:714.242533pt;}
.y171{bottom:716.608533pt;}
.y115{bottom:718.790533pt;}
.y5d{bottom:722.062000pt;}
.ye4{bottom:722.062133pt;}
.y15a{bottom:722.062400pt;}
.y1e4{bottom:722.834933pt;}
.y1be{bottom:726.887733pt;}
.y2e{bottom:729.883600pt;}
.y12b{bottom:729.883867pt;}
.y112{bottom:730.162533pt;}
.y170{bottom:730.599733pt;}
.y4{bottom:733.846533pt;}
.y111{bottom:735.848533pt;}
.y5c{bottom:737.703333pt;}
.y159{bottom:737.703600pt;}
.y196{bottom:737.703733pt;}
.y1e3{bottom:738.476267pt;}
.y113{bottom:741.534533pt;}
.y2d{bottom:745.524933pt;}
.y12a{bottom:745.525200pt;}
.y1bd{bottom:748.198267pt;}
.y16f{bottom:752.905867pt;}
.y114{bottom:752.906533pt;}
.y1a8{bottom:753.344400pt;}
.y5b{bottom:753.344667pt;}
.y158{bottom:753.344933pt;}
.y195{bottom:753.345067pt;}
.y1e2{bottom:754.117733pt;}
.yd6{bottom:761.166133pt;}
.y2c{bottom:761.166400pt;}
.y129{bottom:761.166533pt;}
.y1a7{bottom:768.985733pt;}
.y5a{bottom:768.986000pt;}
.ye3{bottom:768.986133pt;}
.y157{bottom:768.986267pt;}
.y194{bottom:768.986400pt;}
.y1e1{bottom:769.759067pt;}
.y2b{bottom:776.807600pt;}
.y128{bottom:776.807867pt;}
.y16e{bottom:779.731067pt;}
.y110{bottom:779.731733pt;}
.y1a6{bottom:784.627067pt;}
.y59{bottom:784.627333pt;}
.ye2{bottom:784.627467pt;}
.y156{bottom:784.627733pt;}
.y1e0{bottom:785.400400pt;}
.y1{bottom:793.537067pt;}
.y1bc{bottom:800.268400pt;}
.y1a5{bottom:800.268533pt;}
.y58{bottom:800.268667pt;}
.y2a{bottom:800.268800pt;}
.y127{bottom:800.269067pt;}
.y16d{bottom:801.041733pt;}
.y10f{bottom:801.042400pt;}
.y3{bottom:818.988000pt;}
.y16b{bottom:832.684400pt;}
.y28{bottom:832.684667pt;}
.y10d{bottom:832.685067pt;}
.y2{bottom:834.629333pt;}
.h14{height:26.021732pt;}
.ha{height:27.738667pt;}
.h12{height:28.600000pt;}
.he{height:30.805333pt;}
.h2{height:31.701333pt;}
.h3{height:33.682667pt;}
.h18{height:34.120000pt;}
.hf{height:38.151111pt;}
.h9{height:38.506667pt;}
.h7{height:38.669333pt;}
.h13{height:40.944000pt;}
.hc{height:41.184000pt;}
.h8{height:43.218667pt;}
.h17{height:43.776000pt;}
.h15{height:45.493333pt;}
.h10{height:45.570745pt;}
.h6{height:47.768000pt;}
.hd{height:49.132800pt;}
.h16{height:49.215865pt;}
.hb{height:50.042667pt;}
.h11{height:51.344000pt;}
.h5{height:56.746667pt;}
.h4{height:57.200000pt;}
.h19{height:85.556267pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xc{left:83.149600pt;}
.x2{left:86.929200pt;}
.x44{left:89.186667pt;}
.x3c{left:95.060133pt;}
.x5{left:101.813067pt;}
.x42{left:104.300267pt;}
.xe{left:105.826800pt;}
.x33{left:107.613067pt;}
.x9{left:109.606267pt;}
.x37{left:112.226133pt;}
.x3f{left:113.379733pt;}
.x32{left:115.040133pt;}
.x1c{left:119.055200pt;}
.x36{left:120.213067pt;}
.x1d{left:122.834667pt;}
.x1f{left:126.865867pt;}
.x3{left:135.102400pt;}
.x24{left:136.063067pt;}
.x10{left:138.088800pt;}
.xa{left:140.401467pt;}
.x17{left:141.732267pt;}
.xb{left:145.068133pt;}
.x22{left:148.145733pt;}
.x40{left:150.526133pt;}
.xd{left:153.206933pt;}
.x1b{left:154.666267pt;}
.x8{left:155.970800pt;}
.xf{left:156.986400pt;}
.x13{left:158.902667pt;}
.x31{left:161.603333pt;}
.x2f{left:163.565867pt;}
.x38{left:165.052267pt;}
.x7{left:166.361200pt;}
.x35{left:170.947200pt;}
.x39{left:175.851733pt;}
.x20{left:181.197733pt;}
.x34{left:186.418667pt;}
.x4{left:188.266933pt;}
.x3e{left:192.285067pt;}
.x30{left:194.564933pt;}
.x1e{left:222.910933pt;}
.x19{left:224.231600pt;}
.x3b{left:235.758267pt;}
.x3d{left:239.537733pt;}
.x12{left:253.144533pt;}
.x43{left:255.818533pt;}
.x45{left:257.828533pt;}
.x25{left:259.135333pt;}
.x41{left:260.474533pt;}
.x23{left:270.253867pt;}
.x6{left:272.354533pt;}
.x3a{left:293.597333pt;}
.x1a{left:296.997200pt;}
.x11{left:299.710400pt;}
.x18{left:300.776800pt;}
.x21{left:303.489867pt;}
.x27{left:337.875467pt;}
.x26{left:346.910267pt;}
.x14{left:366.157333pt;}
.x1{left:407.160000pt;}
.x2a{left:412.775733pt;}
.x29{left:419.425467pt;}
.x28{left:423.175467pt;}
.x16{left:424.408400pt;}
.x15{left:431.003200pt;}
.x2c{left:484.266000pt;}
.x2e{left:486.135733pt;}
.x2d{left:491.515867pt;}
.x2b{left:501.680533pt;}
}




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