
    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_1f96c4b5719cb2a86d02e37e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.016000;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_0f86dabadb68ca105f2fc904.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_d7a33dbb73c543645e0610ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1fd5b12c83666e344700a1f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.184000;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_f66cc9ff46f41c124ae47ee5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.817871;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_f6251d2a25bb73a17aee533f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0d4063f5052fc689d87e972a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d33707c4581cb7784df7eebf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933105;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_4962a6a839657fdfc6c045c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.499000;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_cec59f4c70970db48a055f5d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.817871;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;}
.m7{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000226,-0.250000,0.250000,0.000226,0,0);-ms-transform:matrix(0.000226,-0.250000,0.250000,0.000226,0,0);-webkit-transform:matrix(0.000226,-0.250000,0.250000,0.000226,0,0);}
.m2{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);}
.m1{transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);}
.m6{transform:matrix(0.244537,0.000000,-0.051976,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051976,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051976,0.244537,0,0);}
.m4{transform:matrix(0.250000,0.000201,-0.000201,0.250000,0,0);-ms-transform:matrix(0.250000,0.000201,-0.000201,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000201,-0.000201,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.vc{vertical-align:-55.632000px;}
.va{vertical-align:-51.792000px;}
.vb{vertical-align:-42.816000px;}
.v3{vertical-align:-31.800000px;}
.v4{vertical-align:-19.830000px;}
.v1{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:1.296000px;}
.v9{vertical-align:11.880000px;}
.v2{vertical-align:15.840000px;}
.v8{vertical-align:19.800000px;}
.v7{vertical-align:25.394958px;}
.v6{vertical-align:35.930400px;}
.v5{vertical-align:39.379800px;}
.lsa{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000600px;}
.ls1f{letter-spacing:0.009600px;}
.ls8{letter-spacing:0.055206px;}
.ls3{letter-spacing:0.060000px;}
.ls24{letter-spacing:0.061340px;}
.ls6{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.122681px;}
.ls26{letter-spacing:0.138600px;}
.lsd{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.184021px;}
.ls14{letter-spacing:0.240000px;}
.ls7{letter-spacing:0.270000px;}
.ls5{letter-spacing:0.300000px;}
.ls29{letter-spacing:0.306702px;}
.ls27{letter-spacing:0.336600px;}
.ls2{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.420000px;}
.lsc{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.552064px;}
.ls0{letter-spacing:0.600000px;}
.ls25{letter-spacing:0.613405px;}
.ls18{letter-spacing:1.656140px;}
.ls1b{letter-spacing:1.656623px;}
.ls17{letter-spacing:1.656753px;}
.ls16{letter-spacing:2.205200px;}
.ls1d{letter-spacing:3.072000px;}
.ls15{letter-spacing:4.072404px;}
.ls1e{letter-spacing:4.109147px;}
.ls20{letter-spacing:5.950459px;}
.lse{letter-spacing:6.327600px;}
.lsb{letter-spacing:11.504400px;}
.ls1a{letter-spacing:13.680000px;}
.ls12{letter-spacing:23.520000px;}
.ls19{letter-spacing:170.667000px;}
.ls22{letter-spacing:239.544000px;}
.ls21{letter-spacing:245.430000px;}
.ls1c{letter-spacing:334.560000px;}
.lsf{letter-spacing:604.390200px;}
.ls10{letter-spacing:758.627400px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(228,172,18),0 0.015em rgb(228,172,18),0.015em 0 rgb(228,172,18),0 -0.015em  rgb(228,172,18);}
.sc1{text-shadow:-0.015em 0 rgb(0,173,239),0 0.015em rgb(0,173,239),0.015em 0 rgb(0,173,239),0 -0.015em  rgb(0,173,239);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(228,172,18);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,173,239);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-345.840000px;}
.ws1b{word-spacing:-258.120000px;}
.wse{word-spacing:-170.694000px;}
.ws0{word-spacing:-16.920000px;}
.ws1c{word-spacing:-14.599034px;}
.ws1e{word-spacing:-14.537693px;}
.ws5{word-spacing:-14.415012px;}
.ws1d{word-spacing:-14.280000px;}
.ws1{word-spacing:-14.100000px;}
.ws14{word-spacing:-12.690000px;}
.ws3{word-spacing:-11.280000px;}
.ws8{word-spacing:-10.152003px;}
.ws4{word-spacing:-8.460000px;}
.ws19{word-spacing:-6.768000px;}
.wsa{word-spacing:-0.048000px;}
.ws9{word-spacing:-0.036000px;}
.ws2{word-spacing:0.000000px;}
.wsb{word-spacing:2.820000px;}
.ws1a{word-spacing:2.820600px;}
.ws7{word-spacing:114.436800px;}
.ws6{word-spacing:117.676800px;}
.ws18{word-spacing:125.712000px;}
.ws16{word-spacing:137.616000px;}
.ws11{word-spacing:166.848000px;}
.wsd{word-spacing:217.895568px;}
.wsc{word-spacing:243.269928px;}
.ws10{word-spacing:248.778000px;}
.wsf{word-spacing:252.288000px;}
.ws13{word-spacing:380.106000px;}
.ws15{word-spacing:1323.432000px;}
.ws12{word-spacing:1632.528000px;}
._1e{margin-left:-297.172896px;}
._1d{margin-left:-294.019295px;}
._1c{margin-left:-291.945695px;}
._1f{margin-left:-286.459293px;}
._2a{margin-left:-165.828000px;}
._18{margin-left:-45.792000px;}
._9{margin-left:-15.420000px;}
._3{margin-left:-14.100000px;}
._14{margin-left:-7.867181px;}
._21{margin-left:-5.649600px;}
._d{margin-left:-4.140000px;}
._2{margin-left:-3.120000px;}
._1{margin-left:-1.440000px;}
._7{width:1.200000px;}
._4{width:2.700000px;}
._6{width:3.960000px;}
._0{width:5.100000px;}
._b{width:6.372000px;}
._c{width:7.380000px;}
._8{width:8.580000px;}
._5{width:10.260000px;}
._f{width:11.460000px;}
._a{width:13.020000px;}
._13{width:16.500000px;}
._e{width:17.640000px;}
._15{width:18.960000px;}
._2e{width:24.420000px;}
._2f{width:36.000000px;}
._16{width:131.068800px;}
._1b{width:133.012800px;}
._17{width:134.222400px;}
._1a{width:136.123200px;}
._2b{width:144.864000px;}
._28{width:150.144000px;}
._29{width:155.184000px;}
._2d{width:160.380000px;}
._2c{width:161.664000px;}
._27{width:168.180000px;}
._24{width:180.672000px;}
._25{width:190.464000px;}
._23{width:199.248000px;}
._20{width:266.589000px;}
._22{width:286.362000px;}
._26{width:398.628000px;}
._12{width:416.520000px;}
._11{width:503.520000px;}
._19{width:1393.545600px;}
._10{width:2027.801400px;}
.fc8{color:rgb(0,173,239);}
.fc7{color:rgb(130,101,82);}
.fc4{color:rgb(85,111,144);}
.fc3{color:rgb(228,172,18);}
.fc6{color:rgb(122,124,69);}
.fc2{color:rgb(103,129,172);}
.fc5{color:rgb(57,53,54);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs15{font-size:27.000000px;}
.fs16{font-size:28.800000px;}
.fsc{font-size:29.443445px;}
.fsd{font-size:30.670239px;}
.fs9{font-size:36.000000px;}
.fs12{font-size:36.804212px;}
.fs1{font-size:42.000000px;}
.fse{font-size:43.200000px;}
.fsf{font-size:43.200014px;}
.fs10{font-size:43.200018px;}
.fs8{font-size:48.000000px;}
.fs13{font-size:48.588000px;}
.fs11{font-size:49.072408px;}
.fs14{font-size:53.988000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:55.206381px;}
.fsb{font-size:57.600000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:61.340479px;}
.fsa{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs17{font-size:84.000000px;}
.fs7{font-size:96.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y11a{bottom:90.106950px;}
.y61{bottom:90.301200px;}
.y114{bottom:90.856950px;}
.y195{bottom:90.890100px;}
.y14f{bottom:90.932400px;}
.yb5{bottom:91.322850px;}
.y83{bottom:91.637700px;}
.y1bd{bottom:100.976550px;}
.y36{bottom:102.629850px;}
.y119{bottom:109.606950px;}
.y60{bottom:109.801200px;}
.y113{bottom:110.356950px;}
.y194{bottom:110.390100px;}
.y14e{bottom:110.432400px;}
.yb4{bottom:110.822850px;}
.y82{bottom:111.137700px;}
.y1bc{bottom:120.476550px;}
.y10e{bottom:122.977950px;}
.y10c{bottom:124.056000px;}
.y10d{bottom:127.432950px;}
.y10b{bottom:128.511000px;}
.y118{bottom:129.106950px;}
.y5f{bottom:129.301200px;}
.y112{bottom:129.856950px;}
.y193{bottom:129.890100px;}
.y14d{bottom:129.932400px;}
.yb3{bottom:130.322850px;}
.y81{bottom:130.637700px;}
.y35{bottom:132.629850px;}
.y1bb{bottom:139.976550px;}
.y117{bottom:148.606950px;}
.y5e{bottom:148.801200px;}
.y111{bottom:149.356950px;}
.y192{bottom:149.390100px;}
.y14c{bottom:149.432400px;}
.yb2{bottom:149.822850px;}
.y80{bottom:150.137700px;}
.y10a{bottom:157.569450px;}
.y105{bottom:157.577250px;}
.y1ba{bottom:159.476550px;}
.y116{bottom:168.106950px;}
.y5d{bottom:168.301200px;}
.y110{bottom:168.856950px;}
.y191{bottom:168.890100px;}
.y14b{bottom:168.932400px;}
.yb1{bottom:169.322850px;}
.y7f{bottom:169.637700px;}
.y1b9{bottom:178.976550px;}
.yc4{bottom:186.662700px;}
.y115{bottom:187.606950px;}
.y5c{bottom:187.801200px;}
.y190{bottom:188.390100px;}
.y14a{bottom:188.432400px;}
.yb0{bottom:188.822850px;}
.y7e{bottom:189.137700px;}
.y1b8{bottom:198.476550px;}
.yc8{bottom:205.667700px;}
.y10f{bottom:207.106950px;}
.y12{bottom:207.176550px;}
.y5b{bottom:207.301200px;}
.y21{bottom:207.626250px;}
.y1f{bottom:207.626550px;}
.y18f{bottom:207.890100px;}
.y149{bottom:207.932400px;}
.y7d{bottom:208.637700px;}
.y104{bottom:210.485250px;}
.y11{bottom:226.676550px;}
.y5a{bottom:226.801200px;}
.y20{bottom:227.126250px;}
.y1e{bottom:227.126550px;}
.y18e{bottom:227.390100px;}
.y148{bottom:227.432400px;}
.yaf{bottom:227.822850px;}
.y7c{bottom:228.137700px;}
.y109{bottom:229.701450px;}
.y1b7{bottom:237.476550px;}
.y1c9{bottom:242.456550px;}
.y10{bottom:246.176550px;}
.y59{bottom:246.301200px;}
.y1d{bottom:246.626550px;}
.y18d{bottom:246.890100px;}
.y7b{bottom:247.637700px;}
.y1b6{bottom:256.976550px;}
.y1c8{bottom:261.956550px;}
.yf{bottom:265.676550px;}
.y58{bottom:265.801200px;}
.y1c{bottom:266.126550px;}
.y18c{bottom:266.390100px;}
.yae{bottom:266.822850px;}
.y7a{bottom:267.137700px;}
.y1b5{bottom:276.476550px;}
.ye{bottom:285.176550px;}
.y57{bottom:285.301200px;}
.y1b{bottom:285.626550px;}
.y18b{bottom:285.890100px;}
.yad{bottom:286.322850px;}
.y79{bottom:286.637700px;}
.y1c7{bottom:289.961550px;}
.y1b4{bottom:295.976550px;}
.yc3{bottom:303.662700px;}
.yd{bottom:304.676550px;}
.y56{bottom:304.801200px;}
.y1a{bottom:305.126550px;}
.y18a{bottom:305.390100px;}
.yac{bottom:305.822850px;}
.y78{bottom:306.137700px;}
.y86{bottom:308.387700px;}
.y1c6{bottom:309.461550px;}
.y135{bottom:312.299400px;}
.y1b3{bottom:315.476550px;}
.y134{bottom:316.754550px;}
.y16b{bottom:317.888550px;}
.yc{bottom:324.176550px;}
.y55{bottom:324.301200px;}
.y19{bottom:324.626550px;}
.y189{bottom:324.890100px;}
.yab{bottom:325.322850px;}
.y77{bottom:325.637700px;}
.y1c5{bottom:328.961550px;}
.y1b2{bottom:334.976550px;}
.y136{bottom:339.119400px;}
.y133{bottom:339.139200px;}
.yb{bottom:343.676550px;}
.y54{bottom:343.801200px;}
.y16d{bottom:343.983000px;}
.y16a{bottom:343.984050px;}
.y18{bottom:344.126550px;}
.y188{bottom:344.390100px;}
.yaa{bottom:344.822850px;}
.y76{bottom:345.137700px;}
.y1c4{bottom:348.461550px;}
.y130{bottom:352.582500px;}
.y1b1{bottom:354.476550px;}
.y169{bottom:362.560050px;}
.ya{bottom:363.176550px;}
.y53{bottom:363.301200px;}
.y17{bottom:363.626550px;}
.y187{bottom:363.890100px;}
.ya9{bottom:364.322850px;}
.y75{bottom:364.637700px;}
.y1b0{bottom:373.976550px;}
.y1c3{bottom:376.466550px;}
.y63{bottom:378.477450px;}
.y9{bottom:382.676550px;}
.y52{bottom:382.801200px;}
.y16{bottom:383.126550px;}
.y186{bottom:383.390100px;}
.ya8{bottom:383.822850px;}
.y74{bottom:384.137700px;}
.y1af{bottom:393.476550px;}
.y1c2{bottom:395.966550px;}
.y137{bottom:398.711400px;}
.y8{bottom:402.176550px;}
.y51{bottom:402.301200px;}
.y15{bottom:402.626550px;}
.y185{bottom:402.890100px;}
.ya7{bottom:403.322850px;}
.y73{bottom:403.637700px;}
.y168{bottom:410.822550px;}
.y1ae{bottom:412.976550px;}
.y132{bottom:414.427200px;}
.y1c1{bottom:415.466550px;}
.y50{bottom:421.801200px;}
.y14{bottom:422.126550px;}
.y184{bottom:422.390100px;}
.ya6{bottom:422.822850px;}
.y85{bottom:423.137700px;}
.yc5{bottom:425.387700px;}
.y1ad{bottom:432.476550px;}
.y1c0{bottom:434.966550px;}
.y4f{bottom:441.301200px;}
.y7{bottom:441.626250px;}
.y13{bottom:441.626550px;}
.y183{bottom:441.890100px;}
.ya5{bottom:442.322850px;}
.y72{bottom:442.637700px;}
.y1ac{bottom:451.976550px;}
.y107{bottom:452.013450px;}
.y167{bottom:460.300050px;}
.y4e{bottom:460.801200px;}
.y182{bottom:461.390100px;}
.ya4{bottom:461.822850px;}
.y84{bottom:462.137700px;}
.y1bf{bottom:462.971550px;}
.y1ab{bottom:471.476550px;}
.y16c{bottom:471.602100px;}
.y103{bottom:472.709250px;}
.y4d{bottom:480.301200px;}
.y181{bottom:480.890100px;}
.ya3{bottom:481.322850px;}
.y71{bottom:481.637700px;}
.y1be{bottom:482.471550px;}
.y1aa{bottom:490.976550px;}
.y4c{bottom:499.801200px;}
.y17f{bottom:500.386350px;}
.y180{bottom:500.390100px;}
.ya2{bottom:500.822850px;}
.y70{bottom:501.137700px;}
.y106{bottom:503.168250px;}
.y102{bottom:503.761050px;}
.y166{bottom:508.616550px;}
.y1a9{bottom:510.476550px;}
.yc2{bottom:518.162700px;}
.y4b{bottom:519.301200px;}
.y34{bottom:519.435750px;}
.y17e{bottom:519.886350px;}
.y198{bottom:519.890100px;}
.y6f{bottom:520.637700px;}
.yc1{bottom:520.637850px;}
.y108{bottom:523.857450px;}
.y101{bottom:524.798550px;}
.y15d{bottom:538.350150px;}
.y4a{bottom:538.801200px;}
.y33{bottom:538.929750px;}
.y17d{bottom:539.386350px;}
.y197{bottom:539.390100px;}
.ya1{bottom:539.822850px;}
.y6e{bottom:540.137700px;}
.yc0{bottom:540.137850px;}
.y15c{bottom:554.850150px;}
.y165{bottom:558.094050px;}
.y49{bottom:558.301200px;}
.y32{bottom:558.423750px;}
.y17c{bottom:558.886350px;}
.y196{bottom:558.890100px;}
.ya0{bottom:559.322850px;}
.y1ca{bottom:559.472700px;}
.y6d{bottom:559.637700px;}
.ybf{bottom:559.637850px;}
.y12f{bottom:565.317750px;}
.y15b{bottom:571.350150px;}
.y48{bottom:577.801200px;}
.y31{bottom:577.917750px;}
.ye1{bottom:578.756100px;}
.y9f{bottom:578.822850px;}
.y6c{bottom:579.137700px;}
.ybe{bottom:579.137850px;}
.y138{bottom:580.679400px;}
.ye0{bottom:581.231100px;}
.y15a{bottom:585.375150px;}
.y159{bottom:587.850150px;}
.y199{bottom:597.283650px;}
.y47{bottom:597.301200px;}
.y30{bottom:597.411750px;}
.ydf{bottom:597.731100px;}
.y9e{bottom:598.322850px;}
.y6b{bottom:598.637700px;}
.ybd{bottom:598.637850px;}
.y164{bottom:606.410550px;}
.y46{bottom:616.801200px;}
.y2f{bottom:616.905750px;}
.y9d{bottom:617.822850px;}
.y6a{bottom:618.137700px;}
.ybc{bottom:618.137850px;}
.y87{bottom:626.087700px;}
.y45{bottom:636.301200px;}
.y2e{bottom:636.399750px;}
.y9c{bottom:637.322850px;}
.y69{bottom:637.637700px;}
.ybb{bottom:637.637850px;}
.y139{bottom:641.015400px;}
.y131{bottom:641.551200px;}
.y44{bottom:655.801200px;}
.y17b{bottom:655.801350px;}
.y2d{bottom:655.893750px;}
.y9b{bottom:656.822850px;}
.y68{bottom:657.137700px;}
.yba{bottom:657.137850px;}
.yfb{bottom:660.058050px;}
.yfa{bottom:664.513200px;}
.y156{bottom:669.464850px;}
.y155{bottom:673.919850px;}
.y43{bottom:675.301200px;}
.y17a{bottom:675.301350px;}
.y2c{bottom:675.387750px;}
.y9a{bottom:676.322850px;}
.y67{bottom:676.637700px;}
.yb9{bottom:676.637850px;}
.y147{bottom:681.830550px;}
.yf9{bottom:682.272450px;}
.yfc{bottom:682.279050px;}
.y1a5{bottom:694.800150px;}
.y42{bottom:694.801200px;}
.y179{bottom:694.801350px;}
.y2b{bottom:694.881750px;}
.y99{bottom:695.822850px;}
.y66{bottom:696.137700px;}
.yb8{bottom:696.137850px;}
.y146{bottom:698.330550px;}
.y154{bottom:699.496500px;}
.ye5{bottom:711.045300px;}
.y145{bottom:711.860550px;}
.y144{bottom:712.355550px;}
.y1a4{bottom:714.300150px;}
.y41{bottom:714.301200px;}
.y178{bottom:714.301350px;}
.y2a{bottom:714.375750px;}
.y142{bottom:714.826800px;}
.y143{bottom:714.830550px;}
.y98{bottom:715.322850px;}
.y65{bottom:715.637700px;}
.yb7{bottom:715.637850px;}
.yff{bottom:725.124750px;}
.ye4{bottom:727.575300px;}
.ye3{bottom:730.545300px;}
.y1a3{bottom:733.800150px;}
.y40{bottom:733.801200px;}
.y177{bottom:733.801350px;}
.y29{bottom:733.869750px;}
.y97{bottom:734.822850px;}
.y64{bottom:735.137700px;}
.yb6{bottom:735.137850px;}
.y158{bottom:739.408500px;}
.y12d{bottom:747.489300px;}
.y153{bottom:748.036500px;}
.y1a2{bottom:753.300150px;}
.y3f{bottom:753.301200px;}
.y176{bottom:753.301350px;}
.y28{bottom:753.363750px;}
.y1a1{bottom:772.800150px;}
.y3e{bottom:772.801200px;}
.y175{bottom:772.801350px;}
.y27{bottom:772.857750px;}
.y12b{bottom:779.805450px;}
.ye2{bottom:789.041700px;}
.y1a0{bottom:792.300150px;}
.y3d{bottom:792.301200px;}
.y174{bottom:792.301350px;}
.y26{bottom:792.351750px;}
.y122{bottom:804.159450px;}
.ydb{bottom:806.272350px;}
.y100{bottom:807.502650px;}
.y95{bottom:810.646050px;}
.y19f{bottom:811.800150px;}
.y3c{bottom:811.801200px;}
.y173{bottom:811.801350px;}
.y25{bottom:811.845750px;}
.yf0{bottom:822.616500px;}
.y94{bottom:830.146050px;}
.y19e{bottom:831.300150px;}
.y3b{bottom:831.301200px;}
.y172{bottom:831.301350px;}
.y24{bottom:831.339750px;}
.ycf{bottom:831.834600px;}
.y121{bottom:839.029950px;}
.y123{bottom:839.326950px;}
.yef{bottom:844.253850px;}
.y93{bottom:849.646050px;}
.y19d{bottom:850.800150px;}
.y3a{bottom:850.801200px;}
.y171{bottom:850.801350px;}
.y23{bottom:850.833750px;}
.yd8{bottom:852.227246px;}
.yce{bottom:852.970200px;}
.yed{bottom:862.039473px;}
.ycd{bottom:868.565400px;}
.yd7{bottom:869.255217px;}
.y1a8{bottom:870.300150px;}
.y19c{bottom:870.300300px;}
.y39{bottom:870.301200px;}
.y170{bottom:870.301350px;}
.y22{bottom:870.327750px;}
.y120{bottom:874.845450px;}
.y124{bottom:875.047950px;}
.yf2{bottom:875.917200px;}
.y8a{bottom:881.164650px;}
.yfe{bottom:887.314200px;}
.yec{bottom:887.475291px;}
.y1a7{bottom:889.800150px;}
.y19b{bottom:889.800300px;}
.y38{bottom:889.801200px;}
.y16f{bottom:889.801350px;}
.yfd{bottom:891.769350px;}
.yd5{bottom:903.090039px;}
.yf8{bottom:905.544450px;}
.y1a6{bottom:909.300150px;}
.y19a{bottom:909.300300px;}
.y37{bottom:909.301200px;}
.y16e{bottom:909.301350px;}
.y6{bottom:909.419250px;}
.y11f{bottom:909.702450px;}
.y125{bottom:911.335950px;}
.yf7{bottom:913.016700px;}
.yeb{bottom:913.603488px;}
.ycc{bottom:916.269000px;}
.y89{bottom:926.114100px;}
.y8e{bottom:931.139100px;}
.yd6{bottom:937.736439px;}
.yf6{bottom:938.200950px;}
.yea{bottom:939.039306px;}
.y5{bottom:939.395250px;}
.y12e{bottom:941.567100px;}
.y11e{bottom:945.706950px;}
.y126{bottom:947.056950px;}
.y150{bottom:948.438300px;}
.yd0{bottom:954.165000px;}
.y157{bottom:954.911700px;}
.yd9{bottom:959.856450px;}
.ycb{bottom:963.367800px;}
.yf1{bottom:963.924750px;}
.ye9{bottom:965.301120px;}
.yd4{bottom:972.242439px;}
.y151{bottom:978.763800px;}
.y91{bottom:980.274300px;}
.y8c{bottom:981.136650px;}
.y11d{bottom:981.144450px;}
.y4{bottom:981.407250px;}
.y127{bottom:981.670950px;}
.yf5{bottom:986.998950px;}
.y92{bottom:988.186650px;}
.y8d{bottom:989.049150px;}
.ye8{bottom:991.149936px;}
.y152{bottom:998.716500px;}
.y88{bottom:998.894100px;}
.y8f{bottom:1000.971750px;}
.yd2{bottom:1007.774439px;}
.yca{bottom:1011.363000px;}
.y141{bottom:1017.250800px;}
.y11c{bottom:1017.499950px;}
.ye7{bottom:1017.666837px;}
.y128{bottom:1017.918450px;}
.y3{bottom:1023.419250px;}
.y140{bottom:1033.750800px;}
.yd3{bottom:1041.799050px;}
.yf4{bottom:1043.050200px;}
.yee{bottom:1043.369889px;}
.y13f{bottom:1050.250800px;}
.y163{bottom:1050.589800px;}
.y90{bottom:1052.004300px;}
.y12c{bottom:1052.761950px;}
.y8b{bottom:1052.866650px;}
.y129{bottom:1054.057950px;}
.yc9{bottom:1059.585000px;}
.y13e{bottom:1064.275800px;}
.y13d{bottom:1066.750800px;}
.y162{bottom:1067.089800px;}
.yf3{bottom:1068.565200px;}
.ye6{bottom:1069.643850px;}
.yd1{bottom:1075.365450px;}
.y161{bottom:1080.619950px;}
.y13c{bottom:1080.775800px;}
.y160{bottom:1081.114950px;}
.y13b{bottom:1083.250800px;}
.y13a{bottom:1083.251400px;}
.y15f{bottom:1083.589800px;}
.y15e{bottom:1083.594150px;}
.yc7{bottom:1084.265400px;}
.y11b{bottom:1088.752950px;}
.y12a{bottom:1090.197450px;}
.y96{bottom:1100.764200px;}
.yc6{bottom:1100.765400px;}
.yda{bottom:1107.196350px;}
.yde{bottom:1108.931700px;}
.ydd{bottom:1111.901700px;}
.ydc{bottom:1128.401700px;}
.y2{bottom:1180.550400px;}
.y1{bottom:1194.078600px;}
.y62{bottom:1194.180300px;}
.h22{height:19.683105px;}
.h13{height:28.952706px;}
.h3{height:29.400000px;}
.h16{height:33.048000px;}
.hd{height:33.984000px;}
.h1b{height:34.743176px;}
.h21{height:36.720000px;}
.h15{height:40.780800px;}
.h17{height:40.780813px;}
.h18{height:40.780817px;}
.hc{height:45.312000px;}
.h19{height:45.325200px;}
.h1d{height:45.326400px;}
.h1f{height:45.867072px;}
.h5{height:45.900000px;}
.h1a{height:46.324353px;}
.h2{height:46.560000px;}
.he{height:50.490000px;}
.h20{height:50.964672px;}
.h8{height:50.976000px;}
.h9{height:52.114824px;}
.h1c{height:53.189583px;}
.h25{height:53.190196px;}
.h24{height:53.784000px;}
.h12{height:54.374400px;}
.h6{height:55.872000px;}
.h7{height:56.640000px;}
.h26{height:57.191400px;}
.h1e{height:57.192000px;}
.ha{height:57.905412px;}
.h27{height:65.184000px;}
.hf{height:67.968000px;}
.h14{height:68.520000px;}
.h23{height:69.375000px;}
.hb{height:73.440000px;}
.h11{height:92.570400px;}
.h10{height:96.019800px;}
.h4{height:111.744000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:39.213450px;}
.x6{left:71.539350px;}
.x2d{left:81.170400px;}
.x3{left:85.039350px;}
.x39{left:87.139350px;}
.x75{left:91.588500px;}
.x56{left:94.872000px;}
.x36{left:96.223200px;}
.x1d{left:97.794600px;}
.xb{left:100.039350px;}
.x4f{left:102.340200px;}
.x3e{left:103.806000px;}
.x58{left:107.172000px;}
.x1e{left:110.544600px;}
.x5e{left:113.440650px;}
.x70{left:115.159650px;}
.x37{left:117.736800px;}
.x3d{left:121.414050px;}
.x3c{left:124.228800px;}
.x57{left:129.306300px;}
.x76{left:130.991700px;}
.xf{left:142.585650px;}
.x7e{left:144.935100px;}
.x2{left:152.626350px;}
.x97{left:155.355150px;}
.x82{left:164.934300px;}
.xe{left:171.410850px;}
.x8f{left:177.364500px;}
.x80{left:179.979300px;}
.x2f{left:188.712450px;}
.xd{left:196.160850px;}
.x60{left:198.990150px;}
.x3f{left:220.999650px;}
.x81{left:224.994300px;}
.x86{left:226.630050px;}
.x40{left:227.683800px;}
.x63{left:239.596500px;}
.x77{left:246.384150px;}
.x64{left:247.440000px;}
.x91{left:249.252450px;}
.x5a{left:253.979250px;}
.x10{left:255.160350px;}
.x11{left:258.958350px;}
.x5b{left:261.822750px;}
.x50{left:265.215150px;}
.x51{left:273.058650px;}
.x8{left:277.543800px;}
.x12{left:281.898600px;}
.x4d{left:286.748550px;}
.x38{left:293.992800px;}
.x92{left:304.849200px;}
.x90{left:306.873300px;}
.x4e{left:316.152450px;}
.x61{left:331.192050px;}
.x4{left:334.954200px;}
.x13{left:337.752150px;}
.x41{left:346.248000px;}
.x52{left:347.875650px;}
.x9{left:349.975650px;}
.x2e{left:351.991500px;}
.x42{left:353.171400px;}
.x62{left:355.959150px;}
.x53{left:357.322500px;}
.x43{left:362.929200px;}
.x54{left:364.977000px;}
.x85{left:376.386450px;}
.x83{left:379.845900px;}
.x22{left:382.374000px;}
.x14{left:385.756950px;}
.x23{left:392.952600px;}
.x30{left:395.816700px;}
.x24{left:399.867750px;}
.x2b{left:406.143750px;}
.x7f{left:419.808900px;}
.x84{left:426.674700px;}
.x31{left:433.454550px;}
.x67{left:435.136050px;}
.x32{left:437.192700px;}
.x44{left:440.291250px;}
.x7{left:441.956700px;}
.x33{left:445.432500px;}
.x45{left:448.210650px;}
.x34{left:457.722900px;}
.x68{left:459.496050px;}
.x25{left:462.886200px;}
.x1f{left:469.101450px;}
.x26{left:471.731850px;}
.x3a{left:475.297655px;}
.x20{left:478.523550px;}
.x87{left:481.210800px;}
.x27{left:482.657850px;}
.x59{left:483.825450px;}
.x21{left:485.721900px;}
.x35{left:490.722900px;}
.x28{left:493.996950px;}
.x4b{left:497.068200px;}
.x15{left:498.331650px;}
.x16{left:502.129650px;}
.x29{left:506.337450px;}
.x48{left:511.505250px;}
.x55{left:515.989050px;}
.x2a{left:517.263450px;}
.x71{left:523.095150px;}
.x17{left:525.069900px;}
.x46{left:526.662900px;}
.x72{left:530.018700px;}
.x47{left:532.770900px;}
.x7b{left:534.752400px;}
.x73{left:543.301200px;}
.x8a{left:545.041500px;}
.x5f{left:546.210150px;}
.x96{left:550.125900px;}
.x2c{left:552.708600px;}
.x18{left:557.562750px;}
.x74{left:563.317200px;}
.x7c{left:571.488450px;}
.x7d{left:577.020450px;}
.x5{left:584.884200px;}
.x49{left:587.009700px;}
.x65{left:595.100400px;}
.xa{left:599.875650px;}
.x66{left:602.943900px;}
.x69{left:605.344050px;}
.x4a{left:607.025700px;}
.x8d{left:610.250700px;}
.x19{left:635.689950px;}
.x8c{left:642.707700px;}
.x5c{left:648.039000px;}
.x8b{left:649.921500px;}
.x4c{left:654.505800px;}
.x5d{left:655.882500px;}
.x95{left:657.240900px;}
.xc{left:669.125550px;}
.x78{left:696.312450px;}
.x79{left:704.831700px;}
.x7a{left:717.409200px;}
.x8e{left:723.537300px;}
.x6d{left:725.325300px;}
.x88{left:728.757750px;}
.x93{left:731.677200px;}
.x6e{left:733.244700px;}
.x6f{left:745.702500px;}
.x6a{left:758.063400px;}
.x6b{left:764.986950px;}
.x6c{left:777.444600px;}
.x1a{left:780.062100px;}
.x1b{left:783.860100px;}
.x89{left:799.413150px;}
.x3b{left:803.881367px;}
.x94{left:805.321800px;}
.x1c{left:806.800350px;}
@media print{
.vc{vertical-align:-49.450667pt;}
.va{vertical-align:-46.037333pt;}
.vb{vertical-align:-38.058667pt;}
.v3{vertical-align:-28.266667pt;}
.v4{vertical-align:-17.626667pt;}
.v1{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:1.152000pt;}
.v9{vertical-align:10.560000pt;}
.v2{vertical-align:14.080000pt;}
.v8{vertical-align:17.600000pt;}
.v7{vertical-align:22.573296pt;}
.v6{vertical-align:31.938133pt;}
.v5{vertical-align:35.004267pt;}
.lsa{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000533pt;}
.ls1f{letter-spacing:0.008533pt;}
.ls8{letter-spacing:0.049072pt;}
.ls3{letter-spacing:0.053333pt;}
.ls24{letter-spacing:0.054525pt;}
.ls6{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.109050pt;}
.ls26{letter-spacing:0.123200pt;}
.lsd{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.163575pt;}
.ls14{letter-spacing:0.213333pt;}
.ls7{letter-spacing:0.240000pt;}
.ls5{letter-spacing:0.266667pt;}
.ls29{letter-spacing:0.272624pt;}
.ls27{letter-spacing:0.299200pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.373333pt;}
.lsc{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.490723pt;}
.ls0{letter-spacing:0.533333pt;}
.ls25{letter-spacing:0.545249pt;}
.ls18{letter-spacing:1.472125pt;}
.ls1b{letter-spacing:1.472554pt;}
.ls17{letter-spacing:1.472670pt;}
.ls16{letter-spacing:1.960178pt;}
.ls1d{letter-spacing:2.730667pt;}
.ls15{letter-spacing:3.619915pt;}
.ls1e{letter-spacing:3.652575pt;}
.ls20{letter-spacing:5.289297pt;}
.lse{letter-spacing:5.624533pt;}
.lsb{letter-spacing:10.226133pt;}
.ls1a{letter-spacing:12.160000pt;}
.ls12{letter-spacing:20.906667pt;}
.ls19{letter-spacing:151.704000pt;}
.ls22{letter-spacing:212.928000pt;}
.ls21{letter-spacing:218.160000pt;}
.ls1c{letter-spacing:297.386667pt;}
.lsf{letter-spacing:537.235733pt;}
.ls10{letter-spacing:674.335467pt;}
.ws17{word-spacing:-307.413333pt;}
.ws1b{word-spacing:-229.440000pt;}
.wse{word-spacing:-151.728000pt;}
.ws0{word-spacing:-15.040000pt;}
.ws1c{word-spacing:-12.976919pt;}
.ws1e{word-spacing:-12.922394pt;}
.ws5{word-spacing:-12.813344pt;}
.ws1d{word-spacing:-12.693333pt;}
.ws1{word-spacing:-12.533333pt;}
.ws14{word-spacing:-11.280000pt;}
.ws3{word-spacing:-10.026667pt;}
.ws8{word-spacing:-9.024003pt;}
.ws4{word-spacing:-7.520000pt;}
.ws19{word-spacing:-6.016000pt;}
.wsa{word-spacing:-0.042667pt;}
.ws9{word-spacing:-0.032000pt;}
.ws2{word-spacing:0.000000pt;}
.wsb{word-spacing:2.506667pt;}
.ws1a{word-spacing:2.507200pt;}
.ws7{word-spacing:101.721600pt;}
.ws6{word-spacing:104.601600pt;}
.ws18{word-spacing:111.744000pt;}
.ws16{word-spacing:122.325333pt;}
.ws11{word-spacing:148.309333pt;}
.wsd{word-spacing:193.684949pt;}
.wsc{word-spacing:216.239936pt;}
.ws10{word-spacing:221.136000pt;}
.wsf{word-spacing:224.256000pt;}
.ws13{word-spacing:337.872000pt;}
.ws15{word-spacing:1176.384000pt;}
.ws12{word-spacing:1451.136000pt;}
._1e{margin-left:-264.153686pt;}
._1d{margin-left:-261.350485pt;}
._1c{margin-left:-259.507284pt;}
._1f{margin-left:-254.630483pt;}
._2a{margin-left:-147.402667pt;}
._18{margin-left:-40.704000pt;}
._9{margin-left:-13.706667pt;}
._3{margin-left:-12.533333pt;}
._14{margin-left:-6.993050pt;}
._21{margin-left:-5.021867pt;}
._d{margin-left:-3.680000pt;}
._2{margin-left:-2.773333pt;}
._1{margin-left:-1.280000pt;}
._7{width:1.066667pt;}
._4{width:2.400000pt;}
._6{width:3.520000pt;}
._0{width:4.533333pt;}
._b{width:5.664000pt;}
._c{width:6.560000pt;}
._8{width:7.626667pt;}
._5{width:9.120000pt;}
._f{width:10.186667pt;}
._a{width:11.573333pt;}
._13{width:14.666667pt;}
._e{width:15.680000pt;}
._15{width:16.853333pt;}
._2e{width:21.706667pt;}
._2f{width:32.000000pt;}
._16{width:116.505600pt;}
._1b{width:118.233600pt;}
._17{width:119.308800pt;}
._1a{width:120.998400pt;}
._2b{width:128.768000pt;}
._28{width:133.461333pt;}
._29{width:137.941333pt;}
._2d{width:142.560000pt;}
._2c{width:143.701333pt;}
._27{width:149.493333pt;}
._24{width:160.597333pt;}
._25{width:169.301333pt;}
._23{width:177.109333pt;}
._20{width:236.968000pt;}
._22{width:254.544000pt;}
._26{width:354.336000pt;}
._12{width:370.240000pt;}
._11{width:447.573333pt;}
._19{width:1238.707200pt;}
._10{width:1802.490133pt;}
.fs15{font-size:24.000000pt;}
.fs16{font-size:25.600000pt;}
.fsc{font-size:26.171951pt;}
.fsd{font-size:27.262435pt;}
.fs9{font-size:32.000000pt;}
.fs12{font-size:32.714855pt;}
.fs1{font-size:37.333333pt;}
.fse{font-size:38.400000pt;}
.fsf{font-size:38.400012pt;}
.fs10{font-size:38.400016pt;}
.fs8{font-size:42.666667pt;}
.fs13{font-size:43.189333pt;}
.fs11{font-size:43.619918pt;}
.fs14{font-size:47.989333pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:49.072339pt;}
.fsb{font-size:51.200000pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:54.524870pt;}
.fsa{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs17{font-size:74.666667pt;}
.fs7{font-size:85.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y11a{bottom:80.095067pt;}
.y61{bottom:80.267733pt;}
.y114{bottom:80.761733pt;}
.y195{bottom:80.791200pt;}
.y14f{bottom:80.828800pt;}
.yb5{bottom:81.175867pt;}
.y83{bottom:81.455733pt;}
.y1bd{bottom:89.756933pt;}
.y36{bottom:91.226533pt;}
.y119{bottom:97.428400pt;}
.y60{bottom:97.601067pt;}
.y113{bottom:98.095067pt;}
.y194{bottom:98.124533pt;}
.y14e{bottom:98.162133pt;}
.yb4{bottom:98.509200pt;}
.y82{bottom:98.789067pt;}
.y1bc{bottom:107.090267pt;}
.y10e{bottom:109.313733pt;}
.y10c{bottom:110.272000pt;}
.y10d{bottom:113.273733pt;}
.y10b{bottom:114.232000pt;}
.y118{bottom:114.761733pt;}
.y5f{bottom:114.934400pt;}
.y112{bottom:115.428400pt;}
.y193{bottom:115.457867pt;}
.y14d{bottom:115.495467pt;}
.yb3{bottom:115.842533pt;}
.y81{bottom:116.122400pt;}
.y35{bottom:117.893200pt;}
.y1bb{bottom:124.423600pt;}
.y117{bottom:132.095067pt;}
.y5e{bottom:132.267733pt;}
.y111{bottom:132.761733pt;}
.y192{bottom:132.791200pt;}
.y14c{bottom:132.828800pt;}
.yb2{bottom:133.175867pt;}
.y80{bottom:133.455733pt;}
.y10a{bottom:140.061733pt;}
.y105{bottom:140.068667pt;}
.y1ba{bottom:141.756933pt;}
.y116{bottom:149.428400pt;}
.y5d{bottom:149.601067pt;}
.y110{bottom:150.095067pt;}
.y191{bottom:150.124533pt;}
.y14b{bottom:150.162133pt;}
.yb1{bottom:150.509200pt;}
.y7f{bottom:150.789067pt;}
.y1b9{bottom:159.090267pt;}
.yc4{bottom:165.922400pt;}
.y115{bottom:166.761733pt;}
.y5c{bottom:166.934400pt;}
.y190{bottom:167.457867pt;}
.y14a{bottom:167.495467pt;}
.yb0{bottom:167.842533pt;}
.y7e{bottom:168.122400pt;}
.y1b8{bottom:176.423600pt;}
.yc8{bottom:182.815733pt;}
.y10f{bottom:184.095067pt;}
.y12{bottom:184.156933pt;}
.y5b{bottom:184.267733pt;}
.y21{bottom:184.556667pt;}
.y1f{bottom:184.556933pt;}
.y18f{bottom:184.791200pt;}
.y149{bottom:184.828800pt;}
.y7d{bottom:185.455733pt;}
.y104{bottom:187.098000pt;}
.y11{bottom:201.490267pt;}
.y5a{bottom:201.601067pt;}
.y20{bottom:201.890000pt;}
.y1e{bottom:201.890267pt;}
.y18e{bottom:202.124533pt;}
.y148{bottom:202.162133pt;}
.yaf{bottom:202.509200pt;}
.y7c{bottom:202.789067pt;}
.y109{bottom:204.179067pt;}
.y1b7{bottom:211.090267pt;}
.y1c9{bottom:215.516933pt;}
.y10{bottom:218.823600pt;}
.y59{bottom:218.934400pt;}
.y1d{bottom:219.223600pt;}
.y18d{bottom:219.457867pt;}
.y7b{bottom:220.122400pt;}
.y1b6{bottom:228.423600pt;}
.y1c8{bottom:232.850267pt;}
.yf{bottom:236.156933pt;}
.y58{bottom:236.267733pt;}
.y1c{bottom:236.556933pt;}
.y18c{bottom:236.791200pt;}
.yae{bottom:237.175867pt;}
.y7a{bottom:237.455733pt;}
.y1b5{bottom:245.756933pt;}
.ye{bottom:253.490267pt;}
.y57{bottom:253.601067pt;}
.y1b{bottom:253.890267pt;}
.y18b{bottom:254.124533pt;}
.yad{bottom:254.509200pt;}
.y79{bottom:254.789067pt;}
.y1c7{bottom:257.743600pt;}
.y1b4{bottom:263.090267pt;}
.yc3{bottom:269.922400pt;}
.yd{bottom:270.823600pt;}
.y56{bottom:270.934400pt;}
.y1a{bottom:271.223600pt;}
.y18a{bottom:271.457867pt;}
.yac{bottom:271.842533pt;}
.y78{bottom:272.122400pt;}
.y86{bottom:274.122400pt;}
.y1c6{bottom:275.076933pt;}
.y135{bottom:277.599467pt;}
.y1b3{bottom:280.423600pt;}
.y134{bottom:281.559600pt;}
.y16b{bottom:282.567600pt;}
.yc{bottom:288.156933pt;}
.y55{bottom:288.267733pt;}
.y19{bottom:288.556933pt;}
.y189{bottom:288.791200pt;}
.yab{bottom:289.175867pt;}
.y77{bottom:289.455733pt;}
.y1c5{bottom:292.410267pt;}
.y1b2{bottom:297.756933pt;}
.y136{bottom:301.439467pt;}
.y133{bottom:301.457067pt;}
.yb{bottom:305.490267pt;}
.y54{bottom:305.601067pt;}
.y16d{bottom:305.762667pt;}
.y16a{bottom:305.763600pt;}
.y18{bottom:305.890267pt;}
.y188{bottom:306.124533pt;}
.yaa{bottom:306.509200pt;}
.y76{bottom:306.789067pt;}
.y1c4{bottom:309.743600pt;}
.y130{bottom:313.406667pt;}
.y1b1{bottom:315.090267pt;}
.y169{bottom:322.275600pt;}
.ya{bottom:322.823600pt;}
.y53{bottom:322.934400pt;}
.y17{bottom:323.223600pt;}
.y187{bottom:323.457867pt;}
.ya9{bottom:323.842533pt;}
.y75{bottom:324.122400pt;}
.y1b0{bottom:332.423600pt;}
.y1c3{bottom:334.636933pt;}
.y63{bottom:336.424400pt;}
.y9{bottom:340.156933pt;}
.y52{bottom:340.267733pt;}
.y16{bottom:340.556933pt;}
.y186{bottom:340.791200pt;}
.ya8{bottom:341.175867pt;}
.y74{bottom:341.455733pt;}
.y1af{bottom:349.756933pt;}
.y1c2{bottom:351.970267pt;}
.y137{bottom:354.410133pt;}
.y8{bottom:357.490267pt;}
.y51{bottom:357.601067pt;}
.y15{bottom:357.890267pt;}
.y185{bottom:358.124533pt;}
.ya7{bottom:358.509200pt;}
.y73{bottom:358.789067pt;}
.y168{bottom:365.175600pt;}
.y1ae{bottom:367.090267pt;}
.y132{bottom:368.379733pt;}
.y1c1{bottom:369.303600pt;}
.y50{bottom:374.934400pt;}
.y14{bottom:375.223600pt;}
.y184{bottom:375.457867pt;}
.ya6{bottom:375.842533pt;}
.y85{bottom:376.122400pt;}
.yc5{bottom:378.122400pt;}
.y1ad{bottom:384.423600pt;}
.y1c0{bottom:386.636933pt;}
.y4f{bottom:392.267733pt;}
.y7{bottom:392.556667pt;}
.y13{bottom:392.556933pt;}
.y183{bottom:392.791200pt;}
.ya5{bottom:393.175867pt;}
.y72{bottom:393.455733pt;}
.y1ac{bottom:401.756933pt;}
.y107{bottom:401.789733pt;}
.y167{bottom:409.155600pt;}
.y4e{bottom:409.601067pt;}
.y182{bottom:410.124533pt;}
.ya4{bottom:410.509200pt;}
.y84{bottom:410.789067pt;}
.y1bf{bottom:411.530267pt;}
.y1ab{bottom:419.090267pt;}
.y16c{bottom:419.201867pt;}
.y103{bottom:420.186000pt;}
.y4d{bottom:426.934400pt;}
.y181{bottom:427.457867pt;}
.ya3{bottom:427.842533pt;}
.y71{bottom:428.122400pt;}
.y1be{bottom:428.863600pt;}
.y1aa{bottom:436.423600pt;}
.y4c{bottom:444.267733pt;}
.y17f{bottom:444.787867pt;}
.y180{bottom:444.791200pt;}
.ya2{bottom:445.175867pt;}
.y70{bottom:445.455733pt;}
.y106{bottom:447.260667pt;}
.y102{bottom:447.787600pt;}
.y166{bottom:452.103600pt;}
.y1a9{bottom:453.756933pt;}
.yc2{bottom:460.589067pt;}
.y4b{bottom:461.601067pt;}
.y34{bottom:461.720667pt;}
.y17e{bottom:462.121200pt;}
.y198{bottom:462.124533pt;}
.y6f{bottom:462.789067pt;}
.yc1{bottom:462.789200pt;}
.y108{bottom:465.651067pt;}
.y101{bottom:466.487600pt;}
.y15d{bottom:478.533467pt;}
.y4a{bottom:478.934400pt;}
.y33{bottom:479.048667pt;}
.y17d{bottom:479.454533pt;}
.y197{bottom:479.457867pt;}
.ya1{bottom:479.842533pt;}
.y6e{bottom:480.122400pt;}
.yc0{bottom:480.122533pt;}
.y15c{bottom:493.200133pt;}
.y165{bottom:496.083600pt;}
.y49{bottom:496.267733pt;}
.y32{bottom:496.376667pt;}
.y17c{bottom:496.787867pt;}
.y196{bottom:496.791200pt;}
.ya0{bottom:497.175867pt;}
.y1ca{bottom:497.309067pt;}
.y6d{bottom:497.455733pt;}
.ybf{bottom:497.455867pt;}
.y12f{bottom:502.504667pt;}
.y15b{bottom:507.866800pt;}
.y48{bottom:513.601067pt;}
.y31{bottom:513.704667pt;}
.ye1{bottom:514.449867pt;}
.y9f{bottom:514.509200pt;}
.y6c{bottom:514.789067pt;}
.ybe{bottom:514.789200pt;}
.y138{bottom:516.159467pt;}
.ye0{bottom:516.649867pt;}
.y15a{bottom:520.333467pt;}
.y159{bottom:522.533467pt;}
.y199{bottom:530.918800pt;}
.y47{bottom:530.934400pt;}
.y30{bottom:531.032667pt;}
.ydf{bottom:531.316533pt;}
.y9e{bottom:531.842533pt;}
.y6b{bottom:532.122400pt;}
.ybd{bottom:532.122533pt;}
.y164{bottom:539.031600pt;}
.y46{bottom:548.267733pt;}
.y2f{bottom:548.360667pt;}
.y9d{bottom:549.175867pt;}
.y6a{bottom:549.455733pt;}
.ybc{bottom:549.455867pt;}
.y87{bottom:556.522400pt;}
.y45{bottom:565.601067pt;}
.y2e{bottom:565.688667pt;}
.y9c{bottom:566.509200pt;}
.y69{bottom:566.789067pt;}
.ybb{bottom:566.789200pt;}
.y139{bottom:569.791467pt;}
.y131{bottom:570.267733pt;}
.y44{bottom:582.934400pt;}
.y17b{bottom:582.934533pt;}
.y2d{bottom:583.016667pt;}
.y9b{bottom:583.842533pt;}
.y68{bottom:584.122400pt;}
.yba{bottom:584.122533pt;}
.yfb{bottom:586.718267pt;}
.yfa{bottom:590.678400pt;}
.y156{bottom:595.079867pt;}
.y155{bottom:599.039867pt;}
.y43{bottom:600.267733pt;}
.y17a{bottom:600.267867pt;}
.y2c{bottom:600.344667pt;}
.y9a{bottom:601.175867pt;}
.y67{bottom:601.455733pt;}
.yb9{bottom:601.455867pt;}
.y147{bottom:606.071600pt;}
.yf9{bottom:606.464400pt;}
.yfc{bottom:606.470267pt;}
.y1a5{bottom:617.600133pt;}
.y42{bottom:617.601067pt;}
.y179{bottom:617.601200pt;}
.y2b{bottom:617.672667pt;}
.y99{bottom:618.509200pt;}
.y66{bottom:618.789067pt;}
.yb8{bottom:618.789200pt;}
.y146{bottom:620.738267pt;}
.y154{bottom:621.774667pt;}
.ye5{bottom:632.040267pt;}
.y145{bottom:632.764933pt;}
.y144{bottom:633.204933pt;}
.y1a4{bottom:634.933467pt;}
.y41{bottom:634.934400pt;}
.y178{bottom:634.934533pt;}
.y2a{bottom:635.000667pt;}
.y142{bottom:635.401600pt;}
.y143{bottom:635.404933pt;}
.y98{bottom:635.842533pt;}
.y65{bottom:636.122400pt;}
.yb7{bottom:636.122533pt;}
.yff{bottom:644.555333pt;}
.ye4{bottom:646.733600pt;}
.ye3{bottom:649.373600pt;}
.y1a3{bottom:652.266800pt;}
.y40{bottom:652.267733pt;}
.y177{bottom:652.267867pt;}
.y29{bottom:652.328667pt;}
.y97{bottom:653.175867pt;}
.y64{bottom:653.455733pt;}
.yb6{bottom:653.455867pt;}
.y158{bottom:657.252000pt;}
.y12d{bottom:664.434933pt;}
.y153{bottom:664.921333pt;}
.y1a2{bottom:669.600133pt;}
.y3f{bottom:669.601067pt;}
.y176{bottom:669.601200pt;}
.y28{bottom:669.656667pt;}
.y1a1{bottom:686.933467pt;}
.y3e{bottom:686.934400pt;}
.y175{bottom:686.934533pt;}
.y27{bottom:686.984667pt;}
.y12b{bottom:693.160400pt;}
.ye2{bottom:701.370400pt;}
.y1a0{bottom:704.266800pt;}
.y3d{bottom:704.267733pt;}
.y174{bottom:704.267867pt;}
.y26{bottom:704.312667pt;}
.y122{bottom:714.808400pt;}
.ydb{bottom:716.686533pt;}
.y100{bottom:717.780133pt;}
.y95{bottom:720.574267pt;}
.y19f{bottom:721.600133pt;}
.y3c{bottom:721.601067pt;}
.y173{bottom:721.601200pt;}
.y25{bottom:721.640667pt;}
.yf0{bottom:731.214667pt;}
.y94{bottom:737.907600pt;}
.y19e{bottom:738.933467pt;}
.y3b{bottom:738.934400pt;}
.y172{bottom:738.934533pt;}
.y24{bottom:738.968667pt;}
.ycf{bottom:739.408533pt;}
.y121{bottom:745.804400pt;}
.y123{bottom:746.068400pt;}
.yef{bottom:750.447867pt;}
.y93{bottom:755.240933pt;}
.y19d{bottom:756.266800pt;}
.y3a{bottom:756.267733pt;}
.y171{bottom:756.267867pt;}
.y23{bottom:756.296667pt;}
.yd8{bottom:757.535330pt;}
.yce{bottom:758.195733pt;}
.yed{bottom:766.257309pt;}
.ycd{bottom:772.058133pt;}
.yd7{bottom:772.671304pt;}
.y1a8{bottom:773.600133pt;}
.y19c{bottom:773.600267pt;}
.y39{bottom:773.601067pt;}
.y170{bottom:773.601200pt;}
.y22{bottom:773.624667pt;}
.y120{bottom:777.640400pt;}
.y124{bottom:777.820400pt;}
.yf2{bottom:778.593067pt;}
.y8a{bottom:783.257467pt;}
.yfe{bottom:788.723733pt;}
.yec{bottom:788.866925pt;}
.y1a7{bottom:790.933467pt;}
.y19b{bottom:790.933600pt;}
.y38{bottom:790.934400pt;}
.y16f{bottom:790.934533pt;}
.yfd{bottom:792.683867pt;}
.yd5{bottom:802.746701pt;}
.yf8{bottom:804.928400pt;}
.y1a6{bottom:808.266800pt;}
.y19a{bottom:808.266933pt;}
.y37{bottom:808.267733pt;}
.y16e{bottom:808.267867pt;}
.y6{bottom:808.372667pt;}
.y11f{bottom:808.624400pt;}
.y125{bottom:810.076400pt;}
.yf7{bottom:811.570400pt;}
.yeb{bottom:812.091989pt;}
.ycc{bottom:814.461333pt;}
.y89{bottom:823.212533pt;}
.y8e{bottom:827.679200pt;}
.yd6{bottom:833.543501pt;}
.yf6{bottom:833.956400pt;}
.yea{bottom:834.701605pt;}
.y5{bottom:835.018000pt;}
.y12e{bottom:836.948533pt;}
.y11e{bottom:840.628400pt;}
.y126{bottom:841.828400pt;}
.y150{bottom:843.056267pt;}
.yd0{bottom:848.146667pt;}
.y157{bottom:848.810400pt;}
.yd9{bottom:853.205733pt;}
.ycb{bottom:856.326933pt;}
.yf1{bottom:856.822000pt;}
.ye9{bottom:858.045440pt;}
.yd4{bottom:864.215501pt;}
.y151{bottom:870.012267pt;}
.y91{bottom:871.354933pt;}
.y8c{bottom:872.121467pt;}
.y11d{bottom:872.128400pt;}
.y4{bottom:872.362000pt;}
.y127{bottom:872.596400pt;}
.yf5{bottom:877.332400pt;}
.y92{bottom:878.388133pt;}
.y8d{bottom:879.154800pt;}
.ye8{bottom:881.022165pt;}
.y152{bottom:887.748000pt;}
.y88{bottom:887.905867pt;}
.y8f{bottom:889.752667pt;}
.yd2{bottom:895.799501pt;}
.yca{bottom:898.989333pt;}
.y141{bottom:904.222933pt;}
.y11c{bottom:904.444400pt;}
.ye7{bottom:904.592744pt;}
.y128{bottom:904.816400pt;}
.y3{bottom:909.706000pt;}
.y140{bottom:918.889600pt;}
.yd3{bottom:926.043600pt;}
.yf4{bottom:927.155733pt;}
.yee{bottom:927.439901pt;}
.y13f{bottom:933.556267pt;}
.y163{bottom:933.857600pt;}
.y90{bottom:935.114933pt;}
.y12c{bottom:935.788400pt;}
.y8b{bottom:935.881467pt;}
.y129{bottom:936.940400pt;}
.yc9{bottom:941.853333pt;}
.y13e{bottom:946.022933pt;}
.y13d{bottom:948.222933pt;}
.y162{bottom:948.524267pt;}
.yf3{bottom:949.835733pt;}
.ye6{bottom:950.794533pt;}
.yd1{bottom:955.880400pt;}
.y161{bottom:960.551067pt;}
.y13c{bottom:960.689600pt;}
.y160{bottom:960.991067pt;}
.y13b{bottom:962.889600pt;}
.y13a{bottom:962.890133pt;}
.y15f{bottom:963.190933pt;}
.y15e{bottom:963.194800pt;}
.yc7{bottom:963.791467pt;}
.y11b{bottom:967.780400pt;}
.y12a{bottom:969.064400pt;}
.y96{bottom:978.457067pt;}
.yc6{bottom:978.458133pt;}
.yda{bottom:984.174533pt;}
.yde{bottom:985.717067pt;}
.ydd{bottom:988.357067pt;}
.ydc{bottom:1003.023733pt;}
.y2{bottom:1049.378133pt;}
.y1{bottom:1061.403200pt;}
.y62{bottom:1061.493600pt;}
.h22{height:17.496094pt;}
.h13{height:25.735739pt;}
.h3{height:26.133333pt;}
.h16{height:29.376000pt;}
.hd{height:30.208000pt;}
.h1b{height:30.882823pt;}
.h21{height:32.640000pt;}
.h15{height:36.249600pt;}
.h17{height:36.249612pt;}
.h18{height:36.249615pt;}
.hc{height:40.277333pt;}
.h19{height:40.289067pt;}
.h1d{height:40.290133pt;}
.h1f{height:40.770731pt;}
.h5{height:40.800000pt;}
.h1a{height:41.177203pt;}
.h2{height:41.386667pt;}
.he{height:44.880000pt;}
.h20{height:45.301931pt;}
.h8{height:45.312000pt;}
.h9{height:46.324288pt;}
.h1c{height:47.279629pt;}
.h25{height:47.280174pt;}
.h24{height:47.808000pt;}
.h12{height:48.332800pt;}
.h6{height:49.664000pt;}
.h7{height:50.346667pt;}
.h26{height:50.836800pt;}
.h1e{height:50.837333pt;}
.ha{height:51.471477pt;}
.h27{height:57.941333pt;}
.hf{height:60.416000pt;}
.h14{height:60.906667pt;}
.h23{height:61.666667pt;}
.hb{height:65.280000pt;}
.h11{height:82.284800pt;}
.h10{height:85.350933pt;}
.h4{height:99.328000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:34.856400pt;}
.x6{left:63.590533pt;}
.x2d{left:72.151467pt;}
.x3{left:75.590533pt;}
.x39{left:77.457200pt;}
.x75{left:81.412000pt;}
.x56{left:84.330667pt;}
.x36{left:85.531733pt;}
.x1d{left:86.928533pt;}
.xb{left:88.923867pt;}
.x4f{left:90.969067pt;}
.x3e{left:92.272000pt;}
.x58{left:95.264000pt;}
.x1e{left:98.261867pt;}
.x5e{left:100.836133pt;}
.x70{left:102.364133pt;}
.x37{left:104.654933pt;}
.x3d{left:107.923600pt;}
.x3c{left:110.425600pt;}
.x57{left:114.938933pt;}
.x76{left:116.437067pt;}
.xf{left:126.742800pt;}
.x7e{left:128.831200pt;}
.x2{left:135.667867pt;}
.x97{left:138.093467pt;}
.x82{left:146.608267pt;}
.xe{left:152.365200pt;}
.x8f{left:157.657333pt;}
.x80{left:159.981600pt;}
.x2f{left:167.744400pt;}
.xd{left:174.365200pt;}
.x60{left:176.880133pt;}
.x3f{left:196.444133pt;}
.x81{left:199.994933pt;}
.x86{left:201.448933pt;}
.x40{left:202.385600pt;}
.x63{left:212.974667pt;}
.x77{left:219.008133pt;}
.x64{left:219.946667pt;}
.x91{left:221.557733pt;}
.x5a{left:225.759333pt;}
.x10{left:226.809200pt;}
.x11{left:230.185200pt;}
.x5b{left:232.731333pt;}
.x50{left:235.746800pt;}
.x51{left:242.718800pt;}
.x8{left:246.705600pt;}
.x12{left:250.576533pt;}
.x4d{left:254.887600pt;}
.x38{left:261.326933pt;}
.x92{left:270.977067pt;}
.x90{left:272.776267pt;}
.x4e{left:281.024400pt;}
.x61{left:294.392933pt;}
.x4{left:297.737067pt;}
.x13{left:300.224133pt;}
.x41{left:307.776000pt;}
.x52{left:309.222800pt;}
.x9{left:311.089467pt;}
.x2e{left:312.881333pt;}
.x42{left:313.930133pt;}
.x62{left:316.408133pt;}
.x53{left:317.620000pt;}
.x43{left:322.603733pt;}
.x54{left:324.424000pt;}
.x85{left:334.565733pt;}
.x83{left:337.640800pt;}
.x22{left:339.888000pt;}
.x14{left:342.895067pt;}
.x23{left:349.291200pt;}
.x30{left:351.837067pt;}
.x24{left:355.438000pt;}
.x2b{left:361.016667pt;}
.x7f{left:373.163467pt;}
.x84{left:379.266400pt;}
.x31{left:385.292933pt;}
.x67{left:386.787600pt;}
.x32{left:388.615733pt;}
.x44{left:391.370000pt;}
.x7{left:392.850400pt;}
.x33{left:395.940000pt;}
.x45{left:398.409467pt;}
.x34{left:406.864800pt;}
.x68{left:408.440933pt;}
.x25{left:411.454400pt;}
.x1f{left:416.979067pt;}
.x26{left:419.317200pt;}
.x3a{left:422.486805pt;}
.x20{left:425.354267pt;}
.x87{left:427.742933pt;}
.x27{left:429.029200pt;}
.x59{left:430.067067pt;}
.x21{left:431.752800pt;}
.x35{left:436.198133pt;}
.x28{left:439.108400pt;}
.x4b{left:441.838400pt;}
.x15{left:442.961467pt;}
.x16{left:446.337467pt;}
.x29{left:450.077733pt;}
.x48{left:454.671333pt;}
.x55{left:458.656933pt;}
.x2a{left:459.789733pt;}
.x71{left:464.973467pt;}
.x17{left:466.728800pt;}
.x46{left:468.144800pt;}
.x72{left:471.127733pt;}
.x47{left:473.574133pt;}
.x7b{left:475.335467pt;}
.x73{left:482.934400pt;}
.x8a{left:484.481333pt;}
.x5f{left:485.520133pt;}
.x96{left:489.000800pt;}
.x2c{left:491.296533pt;}
.x18{left:495.611333pt;}
.x74{left:500.726400pt;}
.x7c{left:507.989733pt;}
.x7d{left:512.907067pt;}
.x5{left:519.897067pt;}
.x49{left:521.786400pt;}
.x65{left:528.978133pt;}
.xa{left:533.222800pt;}
.x66{left:535.950133pt;}
.x69{left:538.083600pt;}
.x4a{left:539.578400pt;}
.x8d{left:542.445067pt;}
.x19{left:565.057733pt;}
.x8c{left:571.295733pt;}
.x5c{left:576.034667pt;}
.x8b{left:577.708000pt;}
.x4c{left:581.782933pt;}
.x5d{left:583.006667pt;}
.x95{left:584.214133pt;}
.xc{left:594.778267pt;}
.x78{left:618.944400pt;}
.x79{left:626.517067pt;}
.x7a{left:637.697067pt;}
.x8e{left:643.144267pt;}
.x6d{left:644.733600pt;}
.x88{left:647.784667pt;}
.x93{left:650.379733pt;}
.x6e{left:651.773067pt;}
.x6f{left:662.846667pt;}
.x6a{left:673.834133pt;}
.x6b{left:679.988400pt;}
.x6c{left:691.061867pt;}
.x1a{left:693.388533pt;}
.x1b{left:696.764533pt;}
.x89{left:710.589467pt;}
.x3b{left:714.561215pt;}
.x94{left:715.841600pt;}
.x1c{left:717.155867pt;}
}




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