
    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_c6d88a3f686b679c744a3b27.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_ee43d4a509b5ffd2668816af.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_d6fc1f0002ab1bd1a81416e7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_2db73e7595903e49a2b9b91d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.682617;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_281857ea3d54082eaf555c35.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_c4cf70ecdd1c18a20727a5ba.woff')format("woff");}.ff6{font-family:ff6;line-height:1.067000;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_2767576d5d26429545595a98.woff')format("woff");}.ff7{font-family:ff7;line-height:1.045000;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_eb1484efa06875a9cb76a6a4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_4656f38ed4bb7fed0f0d8fc9.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-16.830000px;}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.800000px;}
.v2{vertical-align:23.760000px;}
.ls21{letter-spacing:-0.792000px;}
.ls27{letter-spacing:-0.720000px;}
.ls38{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.576000px;}
.ls28{letter-spacing:-0.504000px;}
.ls2f{letter-spacing:-0.403200px;}
.lsf{letter-spacing:-0.360000px;}
.ls2c{letter-spacing:-0.300000px;}
.ls34{letter-spacing:-0.288000px;}
.ls26{letter-spacing:-0.252000px;}
.ls12{letter-spacing:-0.240000px;}
.ls16{letter-spacing:-0.216000px;}
.ls37{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.103800px;}
.ls5{letter-spacing:0.120600px;}
.ls6{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.252000px;}
.lsa{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.384000px;}
.ls20{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.576000px;}
.ls1d{letter-spacing:0.604800px;}
.lsd{letter-spacing:0.648000px;}
.ls1a{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.792000px;}
.ls15{letter-spacing:0.864000px;}
.ls1e{letter-spacing:0.936000px;}
.ls18{letter-spacing:1.008000px;}
.ls4{letter-spacing:1.080000px;}
.ls19{letter-spacing:1.368000px;}
.ls24{letter-spacing:1.440000px;}
.ls25{letter-spacing:1.656000px;}
.ls35{letter-spacing:1.728000px;}
.ls22{letter-spacing:3.312000px;}
.ls0{letter-spacing:4.260000px;}
.ls2{letter-spacing:4.560000px;}
.ls36{letter-spacing:4.752000px;}
.ls33{letter-spacing:5.472000px;}
.ls2b{letter-spacing:5.688000px;}
.ls2e{letter-spacing:6.480000px;}
.ls3{letter-spacing:8.460000px;}
.ls2d{letter-spacing:9.360000px;}
.ls2a{letter-spacing:10.296000px;}
.ls29{letter-spacing:10.440000px;}
.ls1{letter-spacing:10.740000px;}
.ls14{letter-spacing:13.796100px;}
.ls8{letter-spacing:75.240000px;}
.ls31{letter-spacing:543.180000px;}
.ls1b{letter-spacing:651.840000px;}
.ls1c{letter-spacing:681.840000px;}
.ls30{letter-spacing:789.420000px;}
.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:-49.320000px;}
.ws28{word-spacing:-49.104000px;}
.ws13{word-spacing:-49.032000px;}
.ws11{word-spacing:-48.888000px;}
.ws15{word-spacing:-48.816000px;}
.ws30{word-spacing:-48.744000px;}
.ws26{word-spacing:-48.672000px;}
.ws12{word-spacing:-48.600000px;}
.ws4{word-spacing:-48.528000px;}
.ws2d{word-spacing:-48.456000px;}
.ws2f{word-spacing:-48.240000px;}
.ws16{word-spacing:-48.168000px;}
.ws18{word-spacing:-48.024000px;}
.ws31{word-spacing:-47.952000px;}
.ws3{word-spacing:-40.440000px;}
.ws25{word-spacing:-40.140000px;}
.ws24{word-spacing:-36.648000px;}
.ws23{word-spacing:-36.504000px;}
.ws22{word-spacing:-36.432000px;}
.ws1f{word-spacing:-35.856000px;}
.ws1e{word-spacing:-35.784000px;}
.ws1a{word-spacing:-35.712000px;}
.ws21{word-spacing:-35.424000px;}
.ws20{word-spacing:-34.704000px;}
.ws1c{word-spacing:-33.768000px;}
.ws1b{word-spacing:-33.552000px;}
.wsc{word-spacing:-32.496000px;}
.ws7{word-spacing:-32.352000px;}
.wsb{word-spacing:-32.112000px;}
.ws1d{word-spacing:-30.888000px;}
.ws5{word-spacing:-25.320000px;}
.wsd{word-spacing:-20.232000px;}
.ws2{word-spacing:-16.860000px;}
.wse{word-spacing:-14.767200px;}
.ws2e{word-spacing:-14.666400px;}
.ws14{word-spacing:-14.414400px;}
.ws6{word-spacing:-14.162400px;}
.ws17{word-spacing:-13.910400px;}
.ws27{word-spacing:-13.759200px;}
.wsa{word-spacing:-13.488000px;}
.ws32{word-spacing:-12.336000px;}
.ws9{word-spacing:-8.520000px;}
.ws8{word-spacing:0.000000px;}
.ws1{word-spacing:34.740000px;}
.ws0{word-spacing:184.560000px;}
.ws29{word-spacing:496.320000px;}
.ws2b{word-spacing:526.320000px;}
.ws2a{word-spacing:549.180000px;}
.wsf{word-spacing:601.320000px;}
.ws10{word-spacing:631.320000px;}
.ws2c{word-spacing:757.560000px;}
._e{margin-left:-948.900000px;}
._23{margin-left:-21.739800px;}
._12{margin-left:-12.240000px;}
._1b{margin-left:-10.500000px;}
._19{margin-left:-9.060000px;}
._f{margin-left:-7.668000px;}
._8{margin-left:-6.180000px;}
._9{margin-left:-5.100000px;}
._6{margin-left:-3.816000px;}
._10{margin-left:-2.808000px;}
._4{margin-left:-1.740000px;}
._0{width:1.500000px;}
._2{width:3.060000px;}
._1{width:4.200000px;}
._c{width:5.688000px;}
._7{width:6.826200px;}
._5{width:8.400000px;}
._a{width:9.456000px;}
._b{width:10.680000px;}
._11{width:11.724000px;}
._13{width:13.796100px;}
._14{width:15.879900px;}
._22{width:17.280000px;}
._1a{width:18.792000px;}
._d{width:31.646100px;}
._3{width:56.940000px;}
._1c{width:64.620000px;}
._1d{width:74.640000px;}
._15{width:123.720000px;}
._21{width:521.040000px;}
._18{width:588.180000px;}
._16{width:711.840000px;}
._1e{width:774.420000px;}
._1f{width:789.420000px;}
._17{width:850.860000px;}
._20{width:1097.340000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.700000px;}
.fs6{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y3{bottom:58.500000px;}
.y1{bottom:72.000000px;}
.y23{bottom:117.000000px;}
.y48{bottom:117.000150px;}
.y132{bottom:117.000300px;}
.y151{bottom:117.076950px;}
.y175{bottom:118.110000px;}
.y110{bottom:118.891800px;}
.yed{bottom:121.207800px;}
.y1b7{bottom:122.063850px;}
.y22{bottom:132.000000px;}
.y47{bottom:132.000150px;}
.yca{bottom:136.207500px;}
.yaa{bottom:136.207650px;}
.y131{bottom:136.207800px;}
.y1b6{bottom:136.619850px;}
.y150{bottom:139.432950px;}
.y18f{bottom:139.500000px;}
.y174{bottom:141.204000px;}
.y10f{bottom:142.741800px;}
.yec{bottom:143.707800px;}
.y21{bottom:147.000000px;}
.y46{bottom:147.000150px;}
.y1b5{bottom:151.163850px;}
.y18e{bottom:151.207650px;}
.ya9{bottom:154.500150px;}
.yc9{bottom:158.707500px;}
.y14f{bottom:161.788950px;}
.y20{bottom:162.000000px;}
.yeb{bottom:162.000300px;}
.y173{bottom:164.298000px;}
.y1b4{bottom:165.707850px;}
.y69{bottom:166.207500px;}
.y45{bottom:166.207650px;}
.y10e{bottom:166.591800px;}
.ya8{bottom:169.500150px;}
.yc8{bottom:177.000000px;}
.y1b3{bottom:180.251850px;}
.y1f{bottom:181.207500px;}
.yea{bottom:181.207800px;}
.y130{bottom:181.800300px;}
.y14e{bottom:184.144950px;}
.y84{bottom:184.500000px;}
.y44{bottom:184.500150px;}
.y172{bottom:187.392000px;}
.y10d{bottom:190.441800px;}
.y18d{bottom:194.586000px;}
.y1b2{bottom:194.807850px;}
.yc7{bottom:196.207500px;}
.y43{bottom:199.500150px;}
.y1e{bottom:203.707500px;}
.ya7{bottom:203.707650px;}
.y12f{bottom:205.200300px;}
.y14d{bottom:206.500950px;}
.y68{bottom:207.000000px;}
.y1b1{bottom:209.351850px;}
.y171{bottom:210.486000px;}
.y10c{bottom:214.291800px;}
.y18c{bottom:217.086000px;}
.y42{bottom:218.707650px;}
.y1d{bottom:222.000000px;}
.ya6{bottom:222.000150px;}
.y1b0{bottom:223.895850px;}
.ye9{bottom:224.796300px;}
.y83{bottom:226.207500px;}
.y12e{bottom:228.600300px;}
.y14c{bottom:228.856950px;}
.y67{bottom:229.500000px;}
.y170{bottom:233.580000px;}
.ya5{bottom:237.000150px;}
.y10b{bottom:238.141800px;}
.y1af{bottom:238.439850px;}
.y18b{bottom:239.280000px;}
.y1c{bottom:241.207500px;}
.y82{bottom:244.500000px;}
.ye8{bottom:247.440300px;}
.yc6{bottom:248.353650px;}
.y14b{bottom:251.212950px;}
.y66{bottom:252.000000px;}
.y12d{bottom:252.000300px;}
.y1ae{bottom:252.983850px;}
.ya4{bottom:256.207650px;}
.y16f{bottom:256.674000px;}
.y81{bottom:259.500000px;}
.y41{bottom:261.306150px;}
.y18a{bottom:261.474000px;}
.y10a{bottom:261.991800px;}
.y1ad{bottom:267.539850px;}
.ye7{bottom:270.084300px;}
.y14a{bottom:273.568950px;}
.y65{bottom:274.500000px;}
.yc5{bottom:275.338650px;}
.y12c{bottom:275.400300px;}
.ya3{bottom:278.707650px;}
.y16e{bottom:279.768000px;}
.y1b{bottom:281.468550px;}
.y1ac{bottom:282.083850px;}
.y40{bottom:283.602150px;}
.y189{bottom:283.668000px;}
.y109{bottom:285.841800px;}
.y80{bottom:289.500000px;}
.ye6{bottom:292.728300px;}
.y149{bottom:295.924950px;}
.y1ab{bottom:296.627850px;}
.y64{bottom:297.000000px;}
.y12b{bottom:298.800300px;}
.yc4{bottom:302.323650px;}
.y16d{bottom:302.862000px;}
.y1a{bottom:303.968550px;}
.y3f{bottom:305.796150px;}
.y188{bottom:305.862000px;}
.y7f{bottom:308.707500px;}
.y1aa{bottom:311.171850px;}
.ya2{bottom:315.190200px;}
.ye5{bottom:315.372300px;}
.y108{bottom:318.195750px;}
.y148{bottom:318.280950px;}
.y63{bottom:319.500000px;}
.y12a{bottom:322.200300px;}
.y16c{bottom:325.956000px;}
.y19{bottom:326.468550px;}
.y3e{bottom:327.990150px;}
.y187{bottom:328.056000px;}
.yc3{bottom:329.308650px;}
.y1a9{bottom:332.099850px;}
.ya1{bottom:337.690200px;}
.ye4{bottom:338.016300px;}
.y107{bottom:338.295750px;}
.y147{bottom:340.636950px;}
.y62{bottom:342.000000px;}
.y7e{bottom:344.746050px;}
.y129{bottom:345.600300px;}
.y18{bottom:348.968550px;}
.y16b{bottom:349.050000px;}
.y3d{bottom:350.184150px;}
.y186{bottom:350.250000px;}
.yc2{bottom:356.293650px;}
.y106{bottom:358.395750px;}
.ya0{bottom:359.140200px;}
.ye3{bottom:360.660300px;}
.y146{bottom:362.992950px;}
.y7d{bottom:363.496050px;}
.y61{bottom:364.500000px;}
.y128{bottom:369.000300px;}
.y17{bottom:371.468550px;}
.y16a{bottom:372.144000px;}
.y3c{bottom:372.378150px;}
.y185{bottom:372.444000px;}
.y1a8{bottom:376.199850px;}
.y105{bottom:378.495750px;}
.y9f{bottom:380.548200px;}
.y7c{bottom:382.246050px;}
.yc1{bottom:383.278650px;}
.ye2{bottom:383.304300px;}
.y145{bottom:385.398750px;}
.y60{bottom:387.000000px;}
.y127{bottom:392.400300px;}
.y16{bottom:393.968550px;}
.y3b{bottom:394.572150px;}
.y184{bottom:394.638000px;}
.y169{bottom:395.238000px;}
.y1a7{bottom:398.249850px;}
.y104{bottom:398.595750px;}
.y7b{bottom:400.996050px;}
.y9e{bottom:402.004200px;}
.ye1{bottom:405.948300px;}
.y5f{bottom:409.500000px;}
.yc0{bottom:410.263650px;}
.y126{bottom:415.800300px;}
.y15{bottom:416.468550px;}
.y3a{bottom:416.766150px;}
.y183{bottom:416.832000px;}
.y168{bottom:418.332000px;}
.y103{bottom:418.695750px;}
.y7a{bottom:419.746050px;}
.y1a6{bottom:420.299850px;}
.y1d0{bottom:421.872000px;}
.y9d{bottom:423.460200px;}
.ye0{bottom:428.592300px;}
.ybf{bottom:429.013650px;}
.y5e{bottom:432.000000px;}
.y79{bottom:438.496050px;}
.y102{bottom:438.795750px;}
.y39{bottom:438.960150px;}
.y14{bottom:438.968550px;}
.y182{bottom:439.026000px;}
.y125{bottom:439.200300px;}
.y1cf{bottom:440.622000px;}
.y167{bottom:441.426000px;}
.y1a5{bottom:442.349850px;}
.y144{bottom:443.478750px;}
.y9c{bottom:444.916200px;}
.ydf{bottom:451.236300px;}
.y5d{bottom:454.500000px;}
.y78{bottom:457.246050px;}
.y101{bottom:458.895750px;}
.y1ce{bottom:459.372000px;}
.y38{bottom:461.154150px;}
.y181{bottom:461.220000px;}
.y13{bottom:461.468550px;}
.y124{bottom:462.600300px;}
.y1a4{bottom:464.399850px;}
.y166{bottom:464.520000px;}
.y9b{bottom:466.372200px;}
.ybe{bottom:468.750000px;}
.y143{bottom:469.608750px;}
.yde{bottom:473.880300px;}
.y77{bottom:475.996050px;}
.y5c{bottom:477.000000px;}
.y1cd{bottom:478.122000px;}
.y100{bottom:478.995750px;}
.y37{bottom:483.348150px;}
.y180{bottom:483.414000px;}
.y12{bottom:483.968550px;}
.y123{bottom:486.000300px;}
.y1a3{bottom:486.449850px;}
.y165{bottom:487.614000px;}
.y9a{bottom:487.828200px;}
.y76{bottom:494.746050px;}
.y142{bottom:495.738750px;}
.ydd{bottom:496.524300px;}
.yff{bottom:499.095750px;}
.y5b{bottom:499.500000px;}
.y36{bottom:505.542150px;}
.y17f{bottom:505.608000px;}
.y11{bottom:506.468550px;}
.y1cc{bottom:508.122000px;}
.y1a2{bottom:508.499850px;}
.y99{bottom:509.284200px;}
.y122{bottom:509.400300px;}
.y164{bottom:510.708000px;}
.y75{bottom:513.496050px;}
.ybd{bottom:513.846000px;}
.ydc{bottom:519.168300px;}
.yfe{bottom:519.195750px;}
.y141{bottom:521.868750px;}
.y5a{bottom:522.000000px;}
.y35{bottom:527.736150px;}
.y17e{bottom:527.802000px;}
.y10{bottom:528.968550px;}
.y1a1{bottom:530.549850px;}
.y98{bottom:530.740200px;}
.y74{bottom:532.246050px;}
.y121{bottom:532.800300px;}
.y163{bottom:533.802000px;}
.ybc{bottom:535.590000px;}
.yfd{bottom:539.295750px;}
.ydb{bottom:541.812300px;}
.y59{bottom:544.500000px;}
.y1cb{bottom:545.622000px;}
.y140{bottom:547.998750px;}
.y34{bottom:549.930150px;}
.y17d{bottom:549.996000px;}
.y73{bottom:550.996050px;}
.yf{bottom:551.468550px;}
.y97{bottom:552.166200px;}
.y1a0{bottom:552.599850px;}
.y120{bottom:556.200300px;}
.y162{bottom:556.896000px;}
.ybb{bottom:557.334000px;}
.y1ca{bottom:564.372000px;}
.yda{bottom:564.456300px;}
.y58{bottom:567.000000px;}
.yfc{bottom:567.900000px;}
.y72{bottom:569.746050px;}
.y33{bottom:572.124150px;}
.y17c{bottom:572.190000px;}
.y96{bottom:573.622200px;}
.ye{bottom:573.968550px;}
.y13f{bottom:574.128750px;}
.y19f{bottom:574.649850px;}
.yba{bottom:579.078000px;}
.y11f{bottom:579.600300px;}
.y161{bottom:579.990000px;}
.y1c9{bottom:583.122000px;}
.yd9{bottom:587.136300px;}
.y71{bottom:588.496050px;}
.y57{bottom:589.500000px;}
.yfb{bottom:591.750000px;}
.y32{bottom:594.318150px;}
.y17b{bottom:594.384000px;}
.y95{bottom:595.078200px;}
.yd{bottom:596.468550px;}
.y19e{bottom:596.699850px;}
.y13e{bottom:600.258750px;}
.yb9{bottom:600.822000px;}
.y1c8{bottom:601.872000px;}
.y11e{bottom:603.000300px;}
.y160{bottom:603.084000px;}
.y70{bottom:607.246050px;}
.yd8{bottom:609.780300px;}
.y56{bottom:612.000000px;}
.yfa{bottom:615.600000px;}
.y31{bottom:616.512150px;}
.y94{bottom:616.534200px;}
.y17a{bottom:616.578000px;}
.y19d{bottom:618.749850px;}
.yc{bottom:618.968550px;}
.y1c7{bottom:620.622000px;}
.yb8{bottom:622.566000px;}
.y6f{bottom:625.996050px;}
.y15f{bottom:626.178000px;}
.y13d{bottom:626.388750px;}
.y11d{bottom:626.400300px;}
.yd7{bottom:632.424300px;}
.y55{bottom:634.500000px;}
.y93{bottom:637.990200px;}
.y30{bottom:638.706150px;}
.y179{bottom:638.772000px;}
.y1c6{bottom:639.372000px;}
.yf9{bottom:639.450000px;}
.y19c{bottom:640.799850px;}
.yb{bottom:641.468550px;}
.yb7{bottom:644.310000px;}
.y6e{bottom:644.746050px;}
.y15e{bottom:649.272000px;}
.y11c{bottom:649.800300px;}
.y13c{bottom:652.518750px;}
.yd6{bottom:655.068300px;}
.y54{bottom:657.000000px;}
.y1c5{bottom:658.122000px;}
.y92{bottom:659.398200px;}
.y2f{bottom:660.900150px;}
.y178{bottom:660.966000px;}
.y19b{bottom:662.849850px;}
.yf8{bottom:663.300000px;}
.y6d{bottom:663.496050px;}
.ya{bottom:663.968550px;}
.yb6{bottom:666.054000px;}
.y15d{bottom:672.366000px;}
.y11b{bottom:673.200300px;}
.y1c4{bottom:676.872000px;}
.yd5{bottom:677.712300px;}
.y13b{bottom:678.648750px;}
.y53{bottom:679.500000px;}
.y91{bottom:680.854200px;}
.y6c{bottom:682.246050px;}
.y2e{bottom:683.100150px;}
.y177{bottom:683.160000px;}
.y19a{bottom:684.899850px;}
.yf7{bottom:687.150000px;}
.yb5{bottom:687.798000px;}
.y15c{bottom:695.460000px;}
.y1c3{bottom:695.622000px;}
.y11a{bottom:696.600300px;}
.yd4{bottom:700.356300px;}
.y6b{bottom:700.996050px;}
.y52{bottom:702.000000px;}
.y90{bottom:702.310200px;}
.y13a{bottom:704.778750px;}
.y176{bottom:705.354000px;}
.y199{bottom:706.949850px;}
.y9{bottom:708.968550px;}
.yb4{bottom:709.542000px;}
.yf6{bottom:711.000000px;}
.y1c2{bottom:714.372000px;}
.y15b{bottom:718.554000px;}
.y6a{bottom:719.746050px;}
.y119{bottom:720.000300px;}
.yd3{bottom:723.000300px;}
.y8f{bottom:723.766200px;}
.y51{bottom:724.500000px;}
.y2d{bottom:727.548000px;}
.y8{bottom:727.718550px;}
.y198{bottom:728.999850px;}
.y139{bottom:730.908750px;}
.yb3{bottom:731.286000px;}
.y1c1{bottom:733.122000px;}
.yf5{bottom:734.850000px;}
.y15a{bottom:741.648000px;}
.y118{bottom:743.400300px;}
.y8e{bottom:745.222200px;}
.yd2{bottom:745.644300px;}
.y50{bottom:747.000000px;}
.y2c{bottom:749.742000px;}
.y197{bottom:751.050000px;}
.y1c0{bottom:751.872000px;}
.yb2{bottom:753.030000px;}
.y138{bottom:757.038750px;}
.yf4{bottom:758.700000px;}
.y159{bottom:764.742000px;}
.y8d{bottom:766.678200px;}
.y117{bottom:766.800300px;}
.y4f{bottom:769.500000px;}
.y7{bottom:769.854300px;}
.y1bf{bottom:770.622000px;}
.y2b{bottom:771.936000px;}
.yb1{bottom:774.774000px;}
.yf3{bottom:782.550000px;}
.y137{bottom:783.168750px;}
.y116{bottom:785.700300px;}
.y158{bottom:787.836000px;}
.y8c{bottom:788.134200px;}
.y1be{bottom:789.372000px;}
.yd1{bottom:790.986000px;}
.y4e{bottom:792.000000px;}
.y6{bottom:792.354300px;}
.y2a{bottom:794.130000px;}
.y196{bottom:795.150000px;}
.yb0{bottom:796.518000px;}
.yf2{bottom:806.400000px;}
.y1bd{bottom:808.122000px;}
.y136{bottom:809.298750px;}
.y8b{bottom:809.590200px;}
.y157{bottom:810.930000px;}
.yd0{bottom:813.630000px;}
.y4d{bottom:814.500000px;}
.y29{bottom:816.324000px;}
.y195{bottom:817.200000px;}
.yaf{bottom:818.262000px;}
.y1bc{bottom:826.872000px;}
.y8a{bottom:831.046200px;}
.y115{bottom:832.500000px;}
.y156{bottom:834.024000px;}
.y135{bottom:835.428750px;}
.ycf{bottom:836.274000px;}
.y4c{bottom:837.000000px;}
.y28{bottom:838.518000px;}
.y194{bottom:839.250000px;}
.yae{bottom:840.006000px;}
.y1bb{bottom:845.622000px;}
.yf1{bottom:854.100000px;}
.y114{bottom:855.900000px;}
.y155{bottom:857.118000px;}
.yce{bottom:858.918000px;}
.y5{bottom:859.500000px;}
.y27{bottom:860.712000px;}
.y89{bottom:861.000000px;}
.y193{bottom:861.300000px;}
.y134{bottom:861.558750px;}
.yad{bottom:861.762000px;}
.y1ba{bottom:864.372000px;}
.yf0{bottom:877.950000px;}
.y88{bottom:878.700000px;}
.y113{bottom:879.300000px;}
.y154{bottom:880.212000px;}
.ycd{bottom:881.562000px;}
.y4b{bottom:882.000000px;}
.y26{bottom:882.906000px;}
.y1b9{bottom:883.122000px;}
.y192{bottom:883.350000px;}
.yac{bottom:883.506000px;}
.y133{bottom:887.688750px;}
.y4{bottom:889.500000px;}
.y87{bottom:896.400000px;}
.yef{bottom:901.800000px;}
.y1b8{bottom:901.872000px;}
.y112{bottom:902.700000px;}
.y153{bottom:903.306000px;}
.ycc{bottom:904.206000px;}
.y4a{bottom:904.500000px;}
.y25{bottom:905.106000px;}
.yab{bottom:905.250000px;}
.y191{bottom:905.400000px;}
.y86{bottom:914.100000px;}
.yee{bottom:925.650000px;}
.y111{bottom:926.100000px;}
.y152{bottom:926.400000px;}
.ycb{bottom:926.850000px;}
.y49{bottom:927.000000px;}
.y24{bottom:927.300000px;}
.y190{bottom:927.450000px;}
.y85{bottom:931.800000px;}
.h6{height:24.630908px;}
.ha{height:30.313623px;}
.h13{height:39.888000px;}
.h2{height:39.990234px;}
.h7{height:40.757812px;}
.h11{height:49.860000px;}
.h4{height:50.580000px;}
.h1{height:50.947266px;}
.hc{height:55.463086px;}
.h5{height:61.136719px;}
.he{height:61.256719px;}
.hd{height:61.328719px;}
.h9{height:66.147703px;}
.h12{height:66.411703px;}
.h10{height:66.507703px;}
.h8{height:66.531703px;}
.hb{height:66.555703px;}
.hf{height:66.579703px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.xe{left:72.126900px;}
.x4{left:82.381950px;}
.xa{left:97.263750px;}
.x6{left:112.500000px;}
.xb{left:117.127050px;}
.x7{left:127.381950px;}
.x2{left:135.000000px;}
.x8{left:142.263900px;}
.x9{left:157.143900px;}
.x10{left:181.476900px;}
.xf{left:185.106900px;}
.xd{left:199.132050px;}
.x3{left:230.670000px;}
.xc{left:297.127050px;}
.x5{left:635.390550px;}
@media print{
.v3{vertical-align:-14.960000pt;}
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.600000pt;}
.v2{vertical-align:21.120000pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls27{letter-spacing:-0.640000pt;}
.ls38{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.512000pt;}
.ls28{letter-spacing:-0.448000pt;}
.ls2f{letter-spacing:-0.358400pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls2c{letter-spacing:-0.266667pt;}
.ls34{letter-spacing:-0.256000pt;}
.ls26{letter-spacing:-0.224000pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls37{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.092267pt;}
.ls5{letter-spacing:0.107200pt;}
.ls6{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.224000pt;}
.lsa{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.341333pt;}
.ls20{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.512000pt;}
.ls1d{letter-spacing:0.537600pt;}
.lsd{letter-spacing:0.576000pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.704000pt;}
.ls15{letter-spacing:0.768000pt;}
.ls1e{letter-spacing:0.832000pt;}
.ls18{letter-spacing:0.896000pt;}
.ls4{letter-spacing:0.960000pt;}
.ls19{letter-spacing:1.216000pt;}
.ls24{letter-spacing:1.280000pt;}
.ls25{letter-spacing:1.472000pt;}
.ls35{letter-spacing:1.536000pt;}
.ls22{letter-spacing:2.944000pt;}
.ls0{letter-spacing:3.786667pt;}
.ls2{letter-spacing:4.053333pt;}
.ls36{letter-spacing:4.224000pt;}
.ls33{letter-spacing:4.864000pt;}
.ls2b{letter-spacing:5.056000pt;}
.ls2e{letter-spacing:5.760000pt;}
.ls3{letter-spacing:7.520000pt;}
.ls2d{letter-spacing:8.320000pt;}
.ls2a{letter-spacing:9.152000pt;}
.ls29{letter-spacing:9.280000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls14{letter-spacing:12.263200pt;}
.ls8{letter-spacing:66.880000pt;}
.ls31{letter-spacing:482.826667pt;}
.ls1b{letter-spacing:579.413333pt;}
.ls1c{letter-spacing:606.080000pt;}
.ls30{letter-spacing:701.706667pt;}
.ws19{word-spacing:-43.840000pt;}
.ws28{word-spacing:-43.648000pt;}
.ws13{word-spacing:-43.584000pt;}
.ws11{word-spacing:-43.456000pt;}
.ws15{word-spacing:-43.392000pt;}
.ws30{word-spacing:-43.328000pt;}
.ws26{word-spacing:-43.264000pt;}
.ws12{word-spacing:-43.200000pt;}
.ws4{word-spacing:-43.136000pt;}
.ws2d{word-spacing:-43.072000pt;}
.ws2f{word-spacing:-42.880000pt;}
.ws16{word-spacing:-42.816000pt;}
.ws18{word-spacing:-42.688000pt;}
.ws31{word-spacing:-42.624000pt;}
.ws3{word-spacing:-35.946667pt;}
.ws25{word-spacing:-35.680000pt;}
.ws24{word-spacing:-32.576000pt;}
.ws23{word-spacing:-32.448000pt;}
.ws22{word-spacing:-32.384000pt;}
.ws1f{word-spacing:-31.872000pt;}
.ws1e{word-spacing:-31.808000pt;}
.ws1a{word-spacing:-31.744000pt;}
.ws21{word-spacing:-31.488000pt;}
.ws20{word-spacing:-30.848000pt;}
.ws1c{word-spacing:-30.016000pt;}
.ws1b{word-spacing:-29.824000pt;}
.wsc{word-spacing:-28.885333pt;}
.ws7{word-spacing:-28.757333pt;}
.wsb{word-spacing:-28.544000pt;}
.ws1d{word-spacing:-27.456000pt;}
.ws5{word-spacing:-22.506667pt;}
.wsd{word-spacing:-17.984000pt;}
.ws2{word-spacing:-14.986667pt;}
.wse{word-spacing:-13.126400pt;}
.ws2e{word-spacing:-13.036800pt;}
.ws14{word-spacing:-12.812800pt;}
.ws6{word-spacing:-12.588800pt;}
.ws17{word-spacing:-12.364800pt;}
.ws27{word-spacing:-12.230400pt;}
.wsa{word-spacing:-11.989333pt;}
.ws32{word-spacing:-10.965333pt;}
.ws9{word-spacing:-7.573333pt;}
.ws8{word-spacing:0.000000pt;}
.ws1{word-spacing:30.880000pt;}
.ws0{word-spacing:164.053333pt;}
.ws29{word-spacing:441.173333pt;}
.ws2b{word-spacing:467.840000pt;}
.ws2a{word-spacing:488.160000pt;}
.wsf{word-spacing:534.506667pt;}
.ws10{word-spacing:561.173333pt;}
.ws2c{word-spacing:673.386667pt;}
._e{margin-left:-843.466667pt;}
._23{margin-left:-19.324267pt;}
._12{margin-left:-10.880000pt;}
._1b{margin-left:-9.333333pt;}
._19{margin-left:-8.053333pt;}
._f{margin-left:-6.816000pt;}
._8{margin-left:-5.493333pt;}
._9{margin-left:-4.533333pt;}
._6{margin-left:-3.392000pt;}
._10{margin-left:-2.496000pt;}
._4{margin-left:-1.546667pt;}
._0{width:1.333333pt;}
._2{width:2.720000pt;}
._1{width:3.733333pt;}
._c{width:5.056000pt;}
._7{width:6.067733pt;}
._5{width:7.466667pt;}
._a{width:8.405333pt;}
._b{width:9.493333pt;}
._11{width:10.421333pt;}
._13{width:12.263200pt;}
._14{width:14.115467pt;}
._22{width:15.360000pt;}
._1a{width:16.704000pt;}
._d{width:28.129867pt;}
._3{width:50.613333pt;}
._1c{width:57.440000pt;}
._1d{width:66.346667pt;}
._15{width:109.973333pt;}
._21{width:463.146667pt;}
._18{width:522.826667pt;}
._16{width:632.746667pt;}
._1e{width:688.373333pt;}
._1f{width:701.706667pt;}
._17{width:756.320000pt;}
._20{width:975.413333pt;}
.fs5{font-size:31.733333pt;}
.fs6{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y3{bottom:52.000000pt;}
.y1{bottom:64.000000pt;}
.y23{bottom:104.000000pt;}
.y48{bottom:104.000133pt;}
.y132{bottom:104.000267pt;}
.y151{bottom:104.068400pt;}
.y175{bottom:104.986667pt;}
.y110{bottom:105.681600pt;}
.yed{bottom:107.740267pt;}
.y1b7{bottom:108.501200pt;}
.y22{bottom:117.333333pt;}
.y47{bottom:117.333467pt;}
.yca{bottom:121.073333pt;}
.yaa{bottom:121.073467pt;}
.y131{bottom:121.073600pt;}
.y1b6{bottom:121.439867pt;}
.y150{bottom:123.940400pt;}
.y18f{bottom:124.000000pt;}
.y174{bottom:125.514667pt;}
.y10f{bottom:126.881600pt;}
.yec{bottom:127.740267pt;}
.y21{bottom:130.666667pt;}
.y46{bottom:130.666800pt;}
.y1b5{bottom:134.367867pt;}
.y18e{bottom:134.406800pt;}
.ya9{bottom:137.333467pt;}
.yc9{bottom:141.073333pt;}
.y14f{bottom:143.812400pt;}
.y20{bottom:144.000000pt;}
.yeb{bottom:144.000267pt;}
.y173{bottom:146.042667pt;}
.y1b4{bottom:147.295867pt;}
.y69{bottom:147.740000pt;}
.y45{bottom:147.740133pt;}
.y10e{bottom:148.081600pt;}
.ya8{bottom:150.666800pt;}
.yc8{bottom:157.333333pt;}
.y1b3{bottom:160.223867pt;}
.y1f{bottom:161.073333pt;}
.yea{bottom:161.073600pt;}
.y130{bottom:161.600267pt;}
.y14e{bottom:163.684400pt;}
.y84{bottom:164.000000pt;}
.y44{bottom:164.000133pt;}
.y172{bottom:166.570667pt;}
.y10d{bottom:169.281600pt;}
.y18d{bottom:172.965333pt;}
.y1b2{bottom:173.162533pt;}
.yc7{bottom:174.406667pt;}
.y43{bottom:177.333467pt;}
.y1e{bottom:181.073333pt;}
.ya7{bottom:181.073467pt;}
.y12f{bottom:182.400267pt;}
.y14d{bottom:183.556400pt;}
.y68{bottom:184.000000pt;}
.y1b1{bottom:186.090533pt;}
.y171{bottom:187.098667pt;}
.y10c{bottom:190.481600pt;}
.y18c{bottom:192.965333pt;}
.y42{bottom:194.406800pt;}
.y1d{bottom:197.333333pt;}
.ya6{bottom:197.333467pt;}
.y1b0{bottom:199.018533pt;}
.ye9{bottom:199.818933pt;}
.y83{bottom:201.073333pt;}
.y12e{bottom:203.200267pt;}
.y14c{bottom:203.428400pt;}
.y67{bottom:204.000000pt;}
.y170{bottom:207.626667pt;}
.ya5{bottom:210.666800pt;}
.y10b{bottom:211.681600pt;}
.y1af{bottom:211.946533pt;}
.y18b{bottom:212.693333pt;}
.y1c{bottom:214.406667pt;}
.y82{bottom:217.333333pt;}
.ye8{bottom:219.946933pt;}
.yc6{bottom:220.758800pt;}
.y14b{bottom:223.300400pt;}
.y66{bottom:224.000000pt;}
.y12d{bottom:224.000267pt;}
.y1ae{bottom:224.874533pt;}
.ya4{bottom:227.740133pt;}
.y16f{bottom:228.154667pt;}
.y81{bottom:230.666667pt;}
.y41{bottom:232.272133pt;}
.y18a{bottom:232.421333pt;}
.y10a{bottom:232.881600pt;}
.y1ad{bottom:237.813200pt;}
.ye7{bottom:240.074933pt;}
.y14a{bottom:243.172400pt;}
.y65{bottom:244.000000pt;}
.yc5{bottom:244.745467pt;}
.y12c{bottom:244.800267pt;}
.ya3{bottom:247.740133pt;}
.y16e{bottom:248.682667pt;}
.y1b{bottom:250.194267pt;}
.y1ac{bottom:250.741200pt;}
.y40{bottom:252.090800pt;}
.y189{bottom:252.149333pt;}
.y109{bottom:254.081600pt;}
.y80{bottom:257.333333pt;}
.ye6{bottom:260.202933pt;}
.y149{bottom:263.044400pt;}
.y1ab{bottom:263.669200pt;}
.y64{bottom:264.000000pt;}
.y12b{bottom:265.600267pt;}
.yc4{bottom:268.732133pt;}
.y16d{bottom:269.210667pt;}
.y1a{bottom:270.194267pt;}
.y3f{bottom:271.818800pt;}
.y188{bottom:271.877333pt;}
.y7f{bottom:274.406667pt;}
.y1aa{bottom:276.597200pt;}
.ya2{bottom:280.169067pt;}
.ye5{bottom:280.330933pt;}
.y108{bottom:282.840667pt;}
.y148{bottom:282.916400pt;}
.y63{bottom:284.000000pt;}
.y12a{bottom:286.400267pt;}
.y16c{bottom:289.738667pt;}
.y19{bottom:290.194267pt;}
.y3e{bottom:291.546800pt;}
.y187{bottom:291.605333pt;}
.yc3{bottom:292.718800pt;}
.y1a9{bottom:295.199867pt;}
.ya1{bottom:300.169067pt;}
.ye4{bottom:300.458933pt;}
.y107{bottom:300.707333pt;}
.y147{bottom:302.788400pt;}
.y62{bottom:304.000000pt;}
.y7e{bottom:306.440933pt;}
.y129{bottom:307.200267pt;}
.y18{bottom:310.194267pt;}
.y16b{bottom:310.266667pt;}
.y3d{bottom:311.274800pt;}
.y186{bottom:311.333333pt;}
.yc2{bottom:316.705467pt;}
.y106{bottom:318.574000pt;}
.ya0{bottom:319.235733pt;}
.ye3{bottom:320.586933pt;}
.y146{bottom:322.660400pt;}
.y7d{bottom:323.107600pt;}
.y61{bottom:324.000000pt;}
.y128{bottom:328.000267pt;}
.y17{bottom:330.194267pt;}
.y16a{bottom:330.794667pt;}
.y3c{bottom:331.002800pt;}
.y185{bottom:331.061333pt;}
.y1a8{bottom:334.399867pt;}
.y105{bottom:336.440667pt;}
.y9f{bottom:338.265067pt;}
.y7c{bottom:339.774267pt;}
.yc1{bottom:340.692133pt;}
.ye2{bottom:340.714933pt;}
.y145{bottom:342.576667pt;}
.y60{bottom:344.000000pt;}
.y127{bottom:348.800267pt;}
.y16{bottom:350.194267pt;}
.y3b{bottom:350.730800pt;}
.y184{bottom:350.789333pt;}
.y169{bottom:351.322667pt;}
.y1a7{bottom:353.999867pt;}
.y104{bottom:354.307333pt;}
.y7b{bottom:356.440933pt;}
.y9e{bottom:357.337067pt;}
.ye1{bottom:360.842933pt;}
.y5f{bottom:364.000000pt;}
.yc0{bottom:364.678800pt;}
.y126{bottom:369.600267pt;}
.y15{bottom:370.194267pt;}
.y3a{bottom:370.458800pt;}
.y183{bottom:370.517333pt;}
.y168{bottom:371.850667pt;}
.y103{bottom:372.174000pt;}
.y7a{bottom:373.107600pt;}
.y1a6{bottom:373.599867pt;}
.y1d0{bottom:374.997333pt;}
.y9d{bottom:376.409067pt;}
.ye0{bottom:380.970933pt;}
.ybf{bottom:381.345467pt;}
.y5e{bottom:384.000000pt;}
.y79{bottom:389.774267pt;}
.y102{bottom:390.040667pt;}
.y39{bottom:390.186800pt;}
.y14{bottom:390.194267pt;}
.y182{bottom:390.245333pt;}
.y125{bottom:390.400267pt;}
.y1cf{bottom:391.664000pt;}
.y167{bottom:392.378667pt;}
.y1a5{bottom:393.199867pt;}
.y144{bottom:394.203333pt;}
.y9c{bottom:395.481067pt;}
.ydf{bottom:401.098933pt;}
.y5d{bottom:404.000000pt;}
.y78{bottom:406.440933pt;}
.y101{bottom:407.907333pt;}
.y1ce{bottom:408.330667pt;}
.y38{bottom:409.914800pt;}
.y181{bottom:409.973333pt;}
.y13{bottom:410.194267pt;}
.y124{bottom:411.200267pt;}
.y1a4{bottom:412.799867pt;}
.y166{bottom:412.906667pt;}
.y9b{bottom:414.553067pt;}
.ybe{bottom:416.666667pt;}
.y143{bottom:417.430000pt;}
.yde{bottom:421.226933pt;}
.y77{bottom:423.107600pt;}
.y5c{bottom:424.000000pt;}
.y1cd{bottom:424.997333pt;}
.y100{bottom:425.774000pt;}
.y37{bottom:429.642800pt;}
.y180{bottom:429.701333pt;}
.y12{bottom:430.194267pt;}
.y123{bottom:432.000267pt;}
.y1a3{bottom:432.399867pt;}
.y165{bottom:433.434667pt;}
.y9a{bottom:433.625067pt;}
.y76{bottom:439.774267pt;}
.y142{bottom:440.656667pt;}
.ydd{bottom:441.354933pt;}
.yff{bottom:443.640667pt;}
.y5b{bottom:444.000000pt;}
.y36{bottom:449.370800pt;}
.y17f{bottom:449.429333pt;}
.y11{bottom:450.194267pt;}
.y1cc{bottom:451.664000pt;}
.y1a2{bottom:451.999867pt;}
.y99{bottom:452.697067pt;}
.y122{bottom:452.800267pt;}
.y164{bottom:453.962667pt;}
.y75{bottom:456.440933pt;}
.ybd{bottom:456.752000pt;}
.ydc{bottom:461.482933pt;}
.yfe{bottom:461.507333pt;}
.y141{bottom:463.883333pt;}
.y5a{bottom:464.000000pt;}
.y35{bottom:469.098800pt;}
.y17e{bottom:469.157333pt;}
.y10{bottom:470.194267pt;}
.y1a1{bottom:471.599867pt;}
.y98{bottom:471.769067pt;}
.y74{bottom:473.107600pt;}
.y121{bottom:473.600267pt;}
.y163{bottom:474.490667pt;}
.ybc{bottom:476.080000pt;}
.yfd{bottom:479.374000pt;}
.ydb{bottom:481.610933pt;}
.y59{bottom:484.000000pt;}
.y1cb{bottom:484.997333pt;}
.y140{bottom:487.110000pt;}
.y34{bottom:488.826800pt;}
.y17d{bottom:488.885333pt;}
.y73{bottom:489.774267pt;}
.yf{bottom:490.194267pt;}
.y97{bottom:490.814400pt;}
.y1a0{bottom:491.199867pt;}
.y120{bottom:494.400267pt;}
.y162{bottom:495.018667pt;}
.ybb{bottom:495.408000pt;}
.y1ca{bottom:501.664000pt;}
.yda{bottom:501.738933pt;}
.y58{bottom:504.000000pt;}
.yfc{bottom:504.800000pt;}
.y72{bottom:506.440933pt;}
.y33{bottom:508.554800pt;}
.y17c{bottom:508.613333pt;}
.y96{bottom:509.886400pt;}
.ye{bottom:510.194267pt;}
.y13f{bottom:510.336667pt;}
.y19f{bottom:510.799867pt;}
.yba{bottom:514.736000pt;}
.y11f{bottom:515.200267pt;}
.y161{bottom:515.546667pt;}
.y1c9{bottom:518.330667pt;}
.yd9{bottom:521.898933pt;}
.y71{bottom:523.107600pt;}
.y57{bottom:524.000000pt;}
.yfb{bottom:526.000000pt;}
.y32{bottom:528.282800pt;}
.y17b{bottom:528.341333pt;}
.y95{bottom:528.958400pt;}
.yd{bottom:530.194267pt;}
.y19e{bottom:530.399867pt;}
.y13e{bottom:533.563333pt;}
.yb9{bottom:534.064000pt;}
.y1c8{bottom:534.997333pt;}
.y11e{bottom:536.000267pt;}
.y160{bottom:536.074667pt;}
.y70{bottom:539.774267pt;}
.yd8{bottom:542.026933pt;}
.y56{bottom:544.000000pt;}
.yfa{bottom:547.200000pt;}
.y31{bottom:548.010800pt;}
.y94{bottom:548.030400pt;}
.y17a{bottom:548.069333pt;}
.y19d{bottom:549.999867pt;}
.yc{bottom:550.194267pt;}
.y1c7{bottom:551.664000pt;}
.yb8{bottom:553.392000pt;}
.y6f{bottom:556.440933pt;}
.y15f{bottom:556.602667pt;}
.y13d{bottom:556.790000pt;}
.y11d{bottom:556.800267pt;}
.yd7{bottom:562.154933pt;}
.y55{bottom:564.000000pt;}
.y93{bottom:567.102400pt;}
.y30{bottom:567.738800pt;}
.y179{bottom:567.797333pt;}
.y1c6{bottom:568.330667pt;}
.yf9{bottom:568.400000pt;}
.y19c{bottom:569.599867pt;}
.yb{bottom:570.194267pt;}
.yb7{bottom:572.720000pt;}
.y6e{bottom:573.107600pt;}
.y15e{bottom:577.130667pt;}
.y11c{bottom:577.600267pt;}
.y13c{bottom:580.016667pt;}
.yd6{bottom:582.282933pt;}
.y54{bottom:584.000000pt;}
.y1c5{bottom:584.997333pt;}
.y92{bottom:586.131733pt;}
.y2f{bottom:587.466800pt;}
.y178{bottom:587.525333pt;}
.y19b{bottom:589.199867pt;}
.yf8{bottom:589.600000pt;}
.y6d{bottom:589.774267pt;}
.ya{bottom:590.194267pt;}
.yb6{bottom:592.048000pt;}
.y15d{bottom:597.658667pt;}
.y11b{bottom:598.400267pt;}
.y1c4{bottom:601.664000pt;}
.yd5{bottom:602.410933pt;}
.y13b{bottom:603.243333pt;}
.y53{bottom:604.000000pt;}
.y91{bottom:605.203733pt;}
.y6c{bottom:606.440933pt;}
.y2e{bottom:607.200133pt;}
.y177{bottom:607.253333pt;}
.y19a{bottom:608.799867pt;}
.yf7{bottom:610.800000pt;}
.yb5{bottom:611.376000pt;}
.y15c{bottom:618.186667pt;}
.y1c3{bottom:618.330667pt;}
.y11a{bottom:619.200267pt;}
.yd4{bottom:622.538933pt;}
.y6b{bottom:623.107600pt;}
.y52{bottom:624.000000pt;}
.y90{bottom:624.275733pt;}
.y13a{bottom:626.470000pt;}
.y176{bottom:626.981333pt;}
.y199{bottom:628.399867pt;}
.y9{bottom:630.194267pt;}
.yb4{bottom:630.704000pt;}
.yf6{bottom:632.000000pt;}
.y1c2{bottom:634.997333pt;}
.y15b{bottom:638.714667pt;}
.y6a{bottom:639.774267pt;}
.y119{bottom:640.000267pt;}
.yd3{bottom:642.666933pt;}
.y8f{bottom:643.347733pt;}
.y51{bottom:644.000000pt;}
.y2d{bottom:646.709333pt;}
.y8{bottom:646.860933pt;}
.y198{bottom:647.999867pt;}
.y139{bottom:649.696667pt;}
.yb3{bottom:650.032000pt;}
.y1c1{bottom:651.664000pt;}
.yf5{bottom:653.200000pt;}
.y15a{bottom:659.242667pt;}
.y118{bottom:660.800267pt;}
.y8e{bottom:662.419733pt;}
.yd2{bottom:662.794933pt;}
.y50{bottom:664.000000pt;}
.y2c{bottom:666.437333pt;}
.y197{bottom:667.600000pt;}
.y1c0{bottom:668.330667pt;}
.yb2{bottom:669.360000pt;}
.y138{bottom:672.923333pt;}
.yf4{bottom:674.400000pt;}
.y159{bottom:679.770667pt;}
.y8d{bottom:681.491733pt;}
.y117{bottom:681.600267pt;}
.y4f{bottom:684.000000pt;}
.y7{bottom:684.314933pt;}
.y1bf{bottom:684.997333pt;}
.y2b{bottom:686.165333pt;}
.yb1{bottom:688.688000pt;}
.yf3{bottom:695.600000pt;}
.y137{bottom:696.150000pt;}
.y116{bottom:698.400267pt;}
.y158{bottom:700.298667pt;}
.y8c{bottom:700.563733pt;}
.y1be{bottom:701.664000pt;}
.yd1{bottom:703.098667pt;}
.y4e{bottom:704.000000pt;}
.y6{bottom:704.314933pt;}
.y2a{bottom:705.893333pt;}
.y196{bottom:706.800000pt;}
.yb0{bottom:708.016000pt;}
.yf2{bottom:716.800000pt;}
.y1bd{bottom:718.330667pt;}
.y136{bottom:719.376667pt;}
.y8b{bottom:719.635733pt;}
.y157{bottom:720.826667pt;}
.yd0{bottom:723.226667pt;}
.y4d{bottom:724.000000pt;}
.y29{bottom:725.621333pt;}
.y195{bottom:726.400000pt;}
.yaf{bottom:727.344000pt;}
.y1bc{bottom:734.997333pt;}
.y8a{bottom:738.707733pt;}
.y115{bottom:740.000000pt;}
.y156{bottom:741.354667pt;}
.y135{bottom:742.603333pt;}
.ycf{bottom:743.354667pt;}
.y4c{bottom:744.000000pt;}
.y28{bottom:745.349333pt;}
.y194{bottom:746.000000pt;}
.yae{bottom:746.672000pt;}
.y1bb{bottom:751.664000pt;}
.yf1{bottom:759.200000pt;}
.y114{bottom:760.800000pt;}
.y155{bottom:761.882667pt;}
.yce{bottom:763.482667pt;}
.y5{bottom:764.000000pt;}
.y27{bottom:765.077333pt;}
.y89{bottom:765.333333pt;}
.y193{bottom:765.600000pt;}
.y134{bottom:765.830000pt;}
.yad{bottom:766.010667pt;}
.y1ba{bottom:768.330667pt;}
.yf0{bottom:780.400000pt;}
.y88{bottom:781.066667pt;}
.y113{bottom:781.600000pt;}
.y154{bottom:782.410667pt;}
.ycd{bottom:783.610667pt;}
.y4b{bottom:784.000000pt;}
.y26{bottom:784.805333pt;}
.y1b9{bottom:784.997333pt;}
.y192{bottom:785.200000pt;}
.yac{bottom:785.338667pt;}
.y133{bottom:789.056667pt;}
.y4{bottom:790.666667pt;}
.y87{bottom:796.800000pt;}
.yef{bottom:801.600000pt;}
.y1b8{bottom:801.664000pt;}
.y112{bottom:802.400000pt;}
.y153{bottom:802.938667pt;}
.ycc{bottom:803.738667pt;}
.y4a{bottom:804.000000pt;}
.y25{bottom:804.538667pt;}
.yab{bottom:804.666667pt;}
.y191{bottom:804.800000pt;}
.y86{bottom:812.533333pt;}
.yee{bottom:822.800000pt;}
.y111{bottom:823.200000pt;}
.y152{bottom:823.466667pt;}
.ycb{bottom:823.866667pt;}
.y49{bottom:824.000000pt;}
.y24{bottom:824.266667pt;}
.y190{bottom:824.400000pt;}
.y85{bottom:828.266667pt;}
.h6{height:21.894141pt;}
.ha{height:26.945443pt;}
.h13{height:35.456000pt;}
.h2{height:35.546875pt;}
.h7{height:36.229167pt;}
.h11{height:44.320000pt;}
.h4{height:44.960000pt;}
.h1{height:45.286458pt;}
.hc{height:49.300521pt;}
.h5{height:54.343750pt;}
.he{height:54.450417pt;}
.hd{height:54.514417pt;}
.h9{height:58.797958pt;}
.h12{height:59.032625pt;}
.h10{height:59.117958pt;}
.h8{height:59.139292pt;}
.hb{height:59.160625pt;}
.hf{height:59.181958pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.xe{left:64.112800pt;}
.x4{left:73.228400pt;}
.xa{left:86.456667pt;}
.x6{left:100.000000pt;}
.xb{left:104.112933pt;}
.x7{left:113.228400pt;}
.x2{left:120.000000pt;}
.x8{left:126.456800pt;}
.x9{left:139.683467pt;}
.x10{left:161.312800pt;}
.xf{left:164.539467pt;}
.xd{left:177.006267pt;}
.x3{left:205.040000pt;}
.xc{left:264.112933pt;}
.x5{left:564.791600pt;}
}




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