
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_3731e3f5949324751a7edbac.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_c9eec270410e2df112dbff9b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_2df7901e68bb9d8a36c6456a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_b7027a08d820014d62541449.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_49f1fc87a2279b2ae4900b53.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_13dc19035bd22fd02b56534c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_457c512c1346ee3f88a71d8b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.066406;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_55d65464f715aa70924562ff.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_b6e724c8e01138853fc079ed.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.160000px;}
.v5{vertical-align:12.240000px;}
.v2{vertical-align:15.120000px;}
.v7{vertical-align:30.240000px;}
.v6{vertical-align:35.280000px;}
.ls9{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.370200px;}
.lsb{letter-spacing:-0.326400px;}
.ls19{letter-spacing:-0.258000px;}
.ls1e{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.038880px;}
.ls26{letter-spacing:-0.036000px;}
.lsf{letter-spacing:-0.010800px;}
.ls7{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.013200px;}
.ls20{letter-spacing:0.060480px;}
.lsc{letter-spacing:0.079200px;}
.lsd{letter-spacing:0.100800px;}
.ls17{letter-spacing:0.126720px;}
.ls8{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.168480px;}
.ls5{letter-spacing:0.211680px;}
.ls13{letter-spacing:0.211800px;}
.ls23{letter-spacing:0.223200px;}
.lse{letter-spacing:0.351600px;}
.ls6{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.385800px;}
.ls1f{letter-spacing:0.480000px;}
.ls18{letter-spacing:0.598800px;}
.ls12{letter-spacing:0.666720px;}
.ls1b{letter-spacing:0.669600px;}
.ls0{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.732960px;}
.ls21{letter-spacing:0.931680px;}
.ls1{letter-spacing:4.492800px;}
.ls15{letter-spacing:16.966080px;}
.ls14{letter-spacing:19.334880px;}
.ls1a{letter-spacing:46.380960px;}
.ls25{letter-spacing:48.186720px;}
.ls1d{letter-spacing:64.026720px;}
.ls16{letter-spacing:71.580960px;}
.ls24{letter-spacing:82.026720px;}
.ls1c{letter-spacing:186.900960px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wse{word-spacing:-59.760000px;}
.ws10{word-spacing:-46.080720px;}
.ws12{word-spacing:-43.320960px;}
.wsf{word-spacing:-42.480720px;}
.ws13{word-spacing:-41.760000px;}
.ws11{word-spacing:-41.502000px;}
.ws3{word-spacing:-18.532800px;}
.wsb{word-spacing:-14.958600px;}
.ws4{word-spacing:-14.572800px;}
.wsd{word-spacing:-13.746000px;}
.ws14{word-spacing:-13.370400px;}
.wsc{word-spacing:-13.359000px;}
.ws6{word-spacing:-13.160400px;}
.wsa{word-spacing:-13.160160px;}
.ws7{word-spacing:-13.147200px;}
.ws15{word-spacing:-13.111200px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws5{word-spacing:-9.187200px;}
.ws9{word-spacing:0.000000px;}
.ws8{word-spacing:2.552040px;}
._f{margin-left:-6.811200px;}
._10{margin-left:-4.062000px;}
._b{margin-left:-2.748960px;}
._0{margin-left:-1.159200px;}
._2{width:1.104720px;}
._6{width:2.129280px;}
._8{width:3.547679px;}
._4{width:4.998124px;}
._3{width:6.386599px;}
._5{width:7.535040px;}
._7{width:8.895480px;}
._d{width:9.939844px;}
._e{width:11.265600px;}
._9{width:14.403960px;}
._a{width:15.754082px;}
._c{width:17.219278px;}
._15{width:18.286560px;}
._1{width:19.988303px;}
._14{width:21.363360px;}
._12{width:22.978560px;}
._13{width:24.262560px;}
._19{width:31.769040px;}
._11{width:39.740400px;}
._18{width:61.045680px;}
._16{width:75.639600px;}
._17{width:76.684320px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ye4{bottom:1.800000px;}
.ye1{bottom:1.980000px;}
.yd1{bottom:4.320000px;}
.yc8{bottom:4.500000px;}
.yde{bottom:6.660000px;}
.yc6{bottom:7.740000px;}
.yc5{bottom:25.380000px;}
.ycb{bottom:54.000000px;}
.ycf{bottom:54.180000px;}
.yd7{bottom:58.500000px;}
.y2{bottom:73.296000px;}
.y2a{bottom:74.196000px;}
.yca{bottom:76.140000px;}
.yce{bottom:76.320000px;}
.ydc{bottom:78.474000px;}
.yd3{bottom:78.480000px;}
.yd6{bottom:80.640000px;}
.yd9{bottom:91.485000px;}
.yc9{bottom:93.780000px;}
.ycd{bottom:93.960000px;}
.ydb{bottom:96.114000px;}
.yd2{bottom:96.120000px;}
.yd5{bottom:98.280000px;}
.y1{bottom:101.376000px;}
.y9d{bottom:111.636000px;}
.y122{bottom:119.556000px;}
.y58{bottom:123.876000px;}
.yda{bottom:125.136000px;}
.y9c{bottom:129.276000px;}
.y62{bottom:132.156000px;}
.yb8{bottom:132.336000px;}
.ya5{bottom:139.536000px;}
.y28{bottom:141.156000px;}
.y100{bottom:142.056000px;}
.yb0{bottom:143.136000px;}
.y44{bottom:144.396000px;}
.y121{bottom:146.376000px;}
.y9b{bottom:146.736000px;}
.y82{bottom:147.096000px;}
.y14f{bottom:148.176000px;}
.y57{bottom:156.090000px;}
.ya4{bottom:157.170000px;}
.y27{bottom:158.610000px;}
.yff{bottom:159.690000px;}
.y61{bottom:164.370000px;}
.yb7{bottom:164.550000px;}
.y81{bottom:164.730000px;}
.y14e{bottom:165.810000px;}
.y9a{bottom:173.370000px;}
.yaf{bottom:175.170000px;}
.y26{bottom:176.250000px;}
.y43{bottom:176.430000px;}
.yfe{bottom:177.150000px;}
.y80{bottom:182.370000px;}
.y14d{bottom:183.270000px;}
.y120{bottom:183.450000px;}
.ya3{bottom:183.630000px;}
.y25{bottom:193.890000px;}
.yfd{bottom:194.790000px;}
.y14c{bottom:207.570000px;}
.y99{bottom:208.830000px;}
.y11f{bottom:210.270000px;}
.yfc{bottom:212.430000px;}
.y7f{bottom:218.010000px;}
.ya2{bottom:219.450000px;}
.ye6{bottom:220.170000px;}
.y14b{bottom:225.210000px;}
.y24{bottom:229.350000px;}
.yfb{bottom:238.890000px;}
.yd8{bottom:240.690000px;}
.y98{bottom:244.470000px;}
.y23{bottom:246.990000px;}
.y11e{bottom:247.350000px;}
.y14a{bottom:249.510000px;}
.y7e{bottom:250.050000px;}
.y97{bottom:263.010000px;}
.y22{bottom:264.630000px;}
.y11d{bottom:264.990000px;}
.y149{bottom:267.150000px;}
.ya1{bottom:267.870000px;}
.yfa{bottom:274.530000px;}
.y96{bottom:280.470000px;}
.y21{bottom:282.090000px;}
.y11c{bottom:282.630000px;}
.y148{bottom:291.450000px;}
.yf9{bottom:292.170000px;}
.y20{bottom:299.730000px;}
.ya0{bottom:299.910000px;}
.y11b{bottom:300.270000px;}
.y147{bottom:309.135000px;}
.yf8{bottom:309.855000px;}
.y95{bottom:316.875000px;}
.y1f{bottom:317.415000px;}
.y11a{bottom:327.135000px;}
.yf7{bottom:327.315000px;}
.ye3{bottom:330.015000px;}
.ye5{bottom:330.555000px;}
.y146{bottom:333.435000px;}
.y94{bottom:334.515000px;}
.y1e{bottom:344.235000px;}
.y145{bottom:351.075000px;}
.yd4{bottom:351.795000px;}
.y93{bottom:352.155000px;}
.yf6{bottom:362.955000px;}
.y119{bottom:364.395000px;}
.y144{bottom:368.715000px;}
.y92{bottom:369.795000px;}
.yf5{bottom:380.595000px;}
.y1d{bottom:392.835000px;}
.y143{bottom:393.015000px;}
.y91{bottom:396.255000px;}
.yf4{bottom:398.055000px;}
.y7d{bottom:399.855000px;}
.y142{bottom:410.655000px;}
.y118{bottom:412.635000px;}
.yf3{bottom:415.695000px;}
.y56{bottom:427.395000px;}
.y1c{bottom:429.915000px;}
.y117{bottom:430.275000px;}
.y90{bottom:431.895000px;}
.y141{bottom:434.775000px;}
.y7c{bottom:435.315000px;}
.yf2{bottom:442.155000px;}
.ye2{bottom:447.375000px;}
.y1b{bottom:447.555000px;}
.y116{bottom:447.915000px;}
.y140{bottom:452.415000px;}
.y55{bottom:459.615000px;}
.y8f{bottom:464.115000px;}
.y1a{bottom:465.015000px;}
.y115{bottom:465.555000px;}
.y7b{bottom:467.715000px;}
.yd0{bottom:469.515000px;}
.y7a{bottom:475.275000px;}
.y13f{bottom:476.715000px;}
.yf1{bottom:477.795000px;}
.y19{bottom:482.655000px;}
.y114{bottom:483.015000px;}
.y13e{bottom:494.355000px;}
.yf0{bottom:495.435000px;}
.y18{bottom:500.295000px;}
.y113{bottom:500.655000px;}
.y60{bottom:512.175000px;}
.yef{bottom:513.075000px;}
.y79{bottom:515.055000px;}
.y17{bottom:517.755000px;}
.y112{bottom:518.295000px;}
.y13d{bottom:518.655000px;}
.yee{bottom:530.715000px;}
.y78{bottom:532.695000px;}
.y16{bottom:535.395000px;}
.y13c{bottom:536.295000px;}
.y5f{bottom:544.215000px;}
.y77{bottom:550.155000px;}
.y15{bottom:553.035000px;}
.y111{bottom:553.755000px;}
.y13b{bottom:553.935000px;}
.yed{bottom:557.175000px;}
.ye0{bottom:565.455000px;}
.y14{bottom:570.675000px;}
.y110{bottom:571.395000px;}
.yae{bottom:572.475000px;}
.y13a{bottom:578.235000px;}
.ycc{bottom:584.925000px;}
.y76{bottom:585.825000px;}
.y13{bottom:588.165000px;}
.y10f{bottom:589.065000px;}
.yad{bottom:590.145000px;}
.yec{bottom:593.025000px;}
.y139{bottom:595.905000px;}
.y75{bottom:603.465000px;}
.y12{bottom:605.805000px;}
.y10e{bottom:606.705000px;}
.yac{bottom:607.605000px;}
.y138{bottom:620.205000px;}
.y74{bottom:620.925000px;}
.y11{bottom:623.445000px;}
.y10d{bottom:624.165000px;}
.yb6{bottom:624.885000px;}
.yab{bottom:625.245000px;}
.y137{bottom:637.845000px;}
.y73{bottom:638.565000px;}
.y10{bottom:640.905000px;}
.yeb{bottom:641.445000px;}
.y10c{bottom:641.805000px;}
.yaa{bottom:642.885000px;}
.y42{bottom:654.765000px;}
.y136{bottom:655.305000px;}
.yb5{bottom:657.105000px;}
.ya9{bottom:660.525000px;}
.y72{bottom:665.205000px;}
.yf{bottom:667.725000px;}
.y41{bottom:672.405000px;}
.yea{bottom:673.485000px;}
.ydf{bottom:674.745000px;}
.y10b{bottom:677.265000px;}
.y135{bottom:679.605000px;}
.ya8{bottom:686.985000px;}
.y40{bottom:690.045000px;}
.y10a{bottom:694.905000px;}
.y134{bottom:697.245000px;}
.y71{bottom:697.605000px;}
.yc7{bottom:698.325000px;}
.y8e{bottom:706.065000px;}
.y3f{bottom:707.505000px;}
.y9f{bottom:710.745000px;}
.y109{bottom:712.545000px;}
.y133{bottom:714.885000px;}
.ye{bottom:716.145000px;}
.ya7{bottom:722.625000px;}
.y8d{bottom:723.705000px;}
.y108{bottom:730.185000px;}
.y70{bottom:733.245000px;}
.y3e{bottom:734.145000px;}
.y132{bottom:739.185000px;}
.y8c{bottom:741.165000px;}
.y9e{bottom:742.965000px;}
.y107{bottom:747.645000px;}
.y6f{bottom:750.885000px;}
.yd{bottom:751.965000px;}
.ya6{bottom:754.845000px;}
.y131{bottom:756.825000px;}
.ydd{bottom:763.125000px;}
.y106{bottom:765.285000px;}
.y6e{bottom:768.525000px;}
.y3d{bottom:769.605000px;}
.y130{bottom:774.465000px;}
.y8b{bottom:776.805000px;}
.y54{bottom:782.385000px;}
.y6d{bottom:786.165000px;}
.y3c{bottom:787.245000px;}
.yc{bottom:787.965000px;}
.y105{bottom:792.105000px;}
.y8a{bottom:794.445000px;}
.y12f{bottom:798.765000px;}
.y53{bottom:800.025000px;}
.y6c{bottom:803.625000px;}
.y3b{bottom:804.885000px;}
.yc4{bottom:811.545000px;}
.y12e{bottom:816.405000px;}
.y52{bottom:817.665000px;}
.y3a{bottom:822.525000px;}
.yb{bottom:823.605000px;}
.y89{bottom:826.485000px;}
.y12d{bottom:833.865000px;}
.y88{bottom:834.045000px;}
.y6b{bottom:839.265000px;}
.y39{bottom:840.165000px;}
.y104{bottom:840.525000px;}
.ya{bottom:845.025000px;}
.y51{bottom:853.125000px;}
.y6a{bottom:856.905000px;}
.y103{bottom:858.165000px;}
.y9{bottom:862.710000px;}
.y50{bottom:870.810000px;}
.y69{bottom:874.410000px;}
.y38{bottom:875.670000px;}
.y12c{bottom:875.850000px;}
.y8{bottom:876.570000px;}
.yc3{bottom:877.830000px;}
.y4f{bottom:888.450000px;}
.y37{bottom:893.310000px;}
.y12b{bottom:893.490000px;}
.y7{bottom:897.990000px;}
.y87{bottom:909.870000px;}
.y68{bottom:910.050000px;}
.y36{bottom:910.950000px;}
.yc2{bottom:913.470000px;}
.y4e{bottom:923.910000px;}
.y5e{bottom:928.050000px;}
.y35{bottom:928.410000px;}
.y6{bottom:930.030000px;}
.yc1{bottom:931.110000px;}
.y12a{bottom:935.250000px;}
.y4d{bottom:941.550000px;}
.y86{bottom:942.090000px;}
.y67{bottom:945.510000px;}
.y34{bottom:946.050000px;}
.yc0{bottom:948.570000px;}
.y5{bottom:949.290000px;}
.y129{bottom:952.890000px;}
.y4c{bottom:959.190000px;}
.y5d{bottom:963.510000px;}
.y102{bottom:963.690000px;}
.ybf{bottom:975.210000px;}
.y4b{bottom:976.830000px;}
.y128{bottom:977.190000px;}
.y66{bottom:978.090000px;}
.y65{bottom:981.150000px;}
.y33{bottom:981.510000px;}
.y4{bottom:987.630000px;}
.y4a{bottom:994.470000px;}
.y127{bottom:994.830000px;}
.y32{bottom:999.150000px;}
.y101{bottom:1007.790000px;}
.ybe{bottom:1010.670000px;}
.y3{bottom:1012.290000px;}
.y31{bottom:1016.790000px;}
.y126{bottom:1019.130000px;}
.ye9{bottom:1025.790000px;}
.ybd{bottom:1028.310000px;}
.y49{bottom:1029.930000px;}
.y30{bottom:1034.430000px;}
.y125{bottom:1036.770000px;}
.ye8{bottom:1043.430000px;}
.ybc{bottom:1045.950000px;}
.y48{bottom:1047.570000px;}
.y2f{bottom:1052.070000px;}
.y64{bottom:1052.430000px;}
.yb4{bottom:1060.890000px;}
.ye7{bottom:1061.070000px;}
.ybb{bottom:1063.590000px;}
.y47{bottom:1065.210000px;}
.y2e{bottom:1069.530000px;}
.y5c{bottom:1069.890000px;}
.y63{bottom:1070.070000px;}
.yb3{bottom:1078.530000px;}
.yba{bottom:1081.230000px;}
.y2d{bottom:1087.170000px;}
.y5b{bottom:1087.530000px;}
.y46{bottom:1091.670000px;}
.yb2{bottom:1096.170000px;}
.y85{bottom:1096.350000px;}
.y5a{bottom:1105.170000px;}
.yb9{bottom:1107.690000px;}
.y124{bottom:1112.010000px;}
.yb1{bottom:1113.810000px;}
.y2c{bottom:1122.630000px;}
.y59{bottom:1122.810000px;}
.y45{bottom:1127.490000px;}
.y84{bottom:1128.570000px;}
.y83{bottom:1136.160000px;}
.y123{bottom:1138.860000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h1d{height:11.700000px;}
.h1c{height:11.880000px;}
.h1a{height:16.560000px;}
.h2{height:29.717578px;}
.h1b{height:35.357344px;}
.h6{height:36.878203px;}
.h3{height:39.468516px;}
.h14{height:44.100000px;}
.hb{height:50.364141px;}
.h13{height:50.597578px;}
.h7{height:51.998203px;}
.h8{height:56.084062px;}
.h5{height:57.636562px;}
.hd{height:59.614102px;}
.h12{height:61.423863px;}
.h9{height:62.211094px;}
.hc{height:64.238203px;}
.ha{height:68.956875px;}
.he{height:70.474219px;}
.h11{height:72.634219px;}
.h4{height:73.298672px;}
.hf{height:82.238203px;}
.h10{height:82.358203px;}
.h18{height:110.196000px;}
.h15{height:112.500000px;}
.h16{height:114.696000px;}
.h19{height:114.840000px;}
.h17{height:117.000000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:143.136000px;}
.w7{width:143.316000px;}
.w5{width:166.530000px;}
.w4{width:289.290000px;}
.w3{width:360.255000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:7.740000px;}
.x2d{left:10.800000px;}
.x1{left:68.040000px;}
.x1b{left:95.075987px;}
.x1e{left:110.195987px;}
.x35{left:111.455987px;}
.x1c{left:122.075987px;}
.x1a{left:194.249987px;}
.x31{left:208.650000px;}
.x2{left:209.729987px;}
.x30{left:216.570000px;}
.x2f{left:220.530000px;}
.xc{left:222.689987px;}
.x32{left:224.490000px;}
.x2e{left:232.590000px;}
.x20{left:233.849987px;}
.x34{left:236.549987px;}
.x9{left:256.169987px;}
.x24{left:273.314987px;}
.x7{left:279.074987px;}
.x26{left:296.354987px;}
.x5{left:300.854987px;}
.xe{left:302.114987px;}
.x2a{left:309.279000px;}
.x29{left:311.439000px;}
.xa{left:315.434987px;}
.x2b{left:318.279000px;}
.x2c{left:320.439000px;}
.x17{left:333.794987px;}
.x13{left:339.194987px;}
.xf{left:342.794987px;}
.x16{left:349.274987px;}
.x10{left:373.034987px;}
.x14{left:377.714987px;}
.x18{left:407.414987px;}
.x11{left:417.674987px;}
.x28{left:482.145000px;}
.x15{left:565.844987px;}
.x12{left:578.264987px;}
.x1d{left:668.309987px;}
.xd{left:670.469987px;}
.xb{left:673.889987px;}
.x22{left:678.389987px;}
.x19{left:680.729987px;}
.x23{left:686.309987px;}
.x4{left:688.469987px;}
.x25{left:692.969987px;}
.x21{left:696.389987px;}
.x1f{left:714.389987px;}
.x6{left:723.389987px;}
.x33{left:732.389987px;}
.x8{left:786.389987px;}
.x3{left:808.739987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.920000pt;}
.v5{vertical-align:10.880000pt;}
.v2{vertical-align:13.440000pt;}
.v7{vertical-align:26.880000pt;}
.v6{vertical-align:31.360000pt;}
.ls9{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.329067pt;}
.lsb{letter-spacing:-0.290133pt;}
.ls19{letter-spacing:-0.229333pt;}
.ls1e{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.034560pt;}
.ls26{letter-spacing:-0.032000pt;}
.lsf{letter-spacing:-0.009600pt;}
.ls7{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.011733pt;}
.ls20{letter-spacing:0.053760pt;}
.lsc{letter-spacing:0.070400pt;}
.lsd{letter-spacing:0.089600pt;}
.ls17{letter-spacing:0.112640pt;}
.ls8{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.149760pt;}
.ls5{letter-spacing:0.188160pt;}
.ls13{letter-spacing:0.188267pt;}
.ls23{letter-spacing:0.198400pt;}
.lse{letter-spacing:0.312533pt;}
.ls6{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.342933pt;}
.ls1f{letter-spacing:0.426667pt;}
.ls18{letter-spacing:0.532267pt;}
.ls12{letter-spacing:0.592640pt;}
.ls1b{letter-spacing:0.595200pt;}
.ls0{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.651520pt;}
.ls21{letter-spacing:0.828160pt;}
.ls1{letter-spacing:3.993600pt;}
.ls15{letter-spacing:15.080960pt;}
.ls14{letter-spacing:17.186560pt;}
.ls1a{letter-spacing:41.227520pt;}
.ls25{letter-spacing:42.832640pt;}
.ls1d{letter-spacing:56.912640pt;}
.ls16{letter-spacing:63.627520pt;}
.ls24{letter-spacing:72.912640pt;}
.ls1c{letter-spacing:166.134187pt;}
.wse{word-spacing:-53.120000pt;}
.ws10{word-spacing:-40.960640pt;}
.ws12{word-spacing:-38.507520pt;}
.wsf{word-spacing:-37.760640pt;}
.ws13{word-spacing:-37.120000pt;}
.ws11{word-spacing:-36.890667pt;}
.ws3{word-spacing:-16.473600pt;}
.wsb{word-spacing:-13.296533pt;}
.ws4{word-spacing:-12.953600pt;}
.wsd{word-spacing:-12.218667pt;}
.ws14{word-spacing:-11.884800pt;}
.wsc{word-spacing:-11.874667pt;}
.ws6{word-spacing:-11.698133pt;}
.wsa{word-spacing:-11.697920pt;}
.ws7{word-spacing:-11.686400pt;}
.ws15{word-spacing:-11.654400pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws5{word-spacing:-8.166400pt;}
.ws9{word-spacing:0.000000pt;}
.ws8{word-spacing:2.268480pt;}
._f{margin-left:-6.054400pt;}
._10{margin-left:-3.610667pt;}
._b{margin-left:-2.443520pt;}
._0{margin-left:-1.030400pt;}
._2{width:0.981973pt;}
._6{width:1.892693pt;}
._8{width:3.153492pt;}
._4{width:4.442777pt;}
._3{width:5.676977pt;}
._5{width:6.697813pt;}
._7{width:7.907093pt;}
._d{width:8.835417pt;}
._e{width:10.013867pt;}
._9{width:12.803520pt;}
._a{width:14.003628pt;}
._c{width:15.306025pt;}
._15{width:16.254720pt;}
._1{width:17.767380pt;}
._14{width:18.989653pt;}
._12{width:20.425387pt;}
._13{width:21.566720pt;}
._19{width:28.239147pt;}
._11{width:35.324800pt;}
._18{width:54.262827pt;}
._16{width:67.235200pt;}
._17{width:68.163840pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ye4{bottom:1.600000pt;}
.ye1{bottom:1.760000pt;}
.yd1{bottom:3.840000pt;}
.yc8{bottom:4.000000pt;}
.yde{bottom:5.920000pt;}
.yc6{bottom:6.880000pt;}
.yc5{bottom:22.560000pt;}
.ycb{bottom:48.000000pt;}
.ycf{bottom:48.160000pt;}
.yd7{bottom:52.000000pt;}
.y2{bottom:65.152000pt;}
.y2a{bottom:65.952000pt;}
.yca{bottom:67.680000pt;}
.yce{bottom:67.840000pt;}
.ydc{bottom:69.754667pt;}
.yd3{bottom:69.760000pt;}
.yd6{bottom:71.680000pt;}
.yd9{bottom:81.320000pt;}
.yc9{bottom:83.360000pt;}
.ycd{bottom:83.520000pt;}
.ydb{bottom:85.434667pt;}
.yd2{bottom:85.440000pt;}
.yd5{bottom:87.360000pt;}
.y1{bottom:90.112000pt;}
.y9d{bottom:99.232000pt;}
.y122{bottom:106.272000pt;}
.y58{bottom:110.112000pt;}
.yda{bottom:111.232000pt;}
.y9c{bottom:114.912000pt;}
.y62{bottom:117.472000pt;}
.yb8{bottom:117.632000pt;}
.ya5{bottom:124.032000pt;}
.y28{bottom:125.472000pt;}
.y100{bottom:126.272000pt;}
.yb0{bottom:127.232000pt;}
.y44{bottom:128.352000pt;}
.y121{bottom:130.112000pt;}
.y9b{bottom:130.432000pt;}
.y82{bottom:130.752000pt;}
.y14f{bottom:131.712000pt;}
.y57{bottom:138.746667pt;}
.ya4{bottom:139.706667pt;}
.y27{bottom:140.986667pt;}
.yff{bottom:141.946667pt;}
.y61{bottom:146.106667pt;}
.yb7{bottom:146.266667pt;}
.y81{bottom:146.426667pt;}
.y14e{bottom:147.386667pt;}
.y9a{bottom:154.106667pt;}
.yaf{bottom:155.706667pt;}
.y26{bottom:156.666667pt;}
.y43{bottom:156.826667pt;}
.yfe{bottom:157.466667pt;}
.y80{bottom:162.106667pt;}
.y14d{bottom:162.906667pt;}
.y120{bottom:163.066667pt;}
.ya3{bottom:163.226667pt;}
.y25{bottom:172.346667pt;}
.yfd{bottom:173.146667pt;}
.y14c{bottom:184.506667pt;}
.y99{bottom:185.626667pt;}
.y11f{bottom:186.906667pt;}
.yfc{bottom:188.826667pt;}
.y7f{bottom:193.786667pt;}
.ya2{bottom:195.066667pt;}
.ye6{bottom:195.706667pt;}
.y14b{bottom:200.186667pt;}
.y24{bottom:203.866667pt;}
.yfb{bottom:212.346667pt;}
.yd8{bottom:213.946667pt;}
.y98{bottom:217.306667pt;}
.y23{bottom:219.546667pt;}
.y11e{bottom:219.866667pt;}
.y14a{bottom:221.786667pt;}
.y7e{bottom:222.266667pt;}
.y97{bottom:233.786667pt;}
.y22{bottom:235.226667pt;}
.y11d{bottom:235.546667pt;}
.y149{bottom:237.466667pt;}
.ya1{bottom:238.106667pt;}
.yfa{bottom:244.026667pt;}
.y96{bottom:249.306667pt;}
.y21{bottom:250.746667pt;}
.y11c{bottom:251.226667pt;}
.y148{bottom:259.066667pt;}
.yf9{bottom:259.706667pt;}
.y20{bottom:266.426667pt;}
.ya0{bottom:266.586667pt;}
.y11b{bottom:266.906667pt;}
.y147{bottom:274.786667pt;}
.yf8{bottom:275.426667pt;}
.y95{bottom:281.666667pt;}
.y1f{bottom:282.146667pt;}
.y11a{bottom:290.786667pt;}
.yf7{bottom:290.946667pt;}
.ye3{bottom:293.346667pt;}
.ye5{bottom:293.826667pt;}
.y146{bottom:296.386667pt;}
.y94{bottom:297.346667pt;}
.y1e{bottom:305.986667pt;}
.y145{bottom:312.066667pt;}
.yd4{bottom:312.706667pt;}
.y93{bottom:313.026667pt;}
.yf6{bottom:322.626667pt;}
.y119{bottom:323.906667pt;}
.y144{bottom:327.746667pt;}
.y92{bottom:328.706667pt;}
.yf5{bottom:338.306667pt;}
.y1d{bottom:349.186667pt;}
.y143{bottom:349.346667pt;}
.y91{bottom:352.226667pt;}
.yf4{bottom:353.826667pt;}
.y7d{bottom:355.426667pt;}
.y142{bottom:365.026667pt;}
.y118{bottom:366.786667pt;}
.yf3{bottom:369.506667pt;}
.y56{bottom:379.906667pt;}
.y1c{bottom:382.146667pt;}
.y117{bottom:382.466667pt;}
.y90{bottom:383.906667pt;}
.y141{bottom:386.466667pt;}
.y7c{bottom:386.946667pt;}
.yf2{bottom:393.026667pt;}
.ye2{bottom:397.666667pt;}
.y1b{bottom:397.826667pt;}
.y116{bottom:398.146667pt;}
.y140{bottom:402.146667pt;}
.y55{bottom:408.546667pt;}
.y8f{bottom:412.546667pt;}
.y1a{bottom:413.346667pt;}
.y115{bottom:413.826667pt;}
.y7b{bottom:415.746667pt;}
.yd0{bottom:417.346667pt;}
.y7a{bottom:422.466667pt;}
.y13f{bottom:423.746667pt;}
.yf1{bottom:424.706667pt;}
.y19{bottom:429.026667pt;}
.y114{bottom:429.346667pt;}
.y13e{bottom:439.426667pt;}
.yf0{bottom:440.386667pt;}
.y18{bottom:444.706667pt;}
.y113{bottom:445.026667pt;}
.y60{bottom:455.266667pt;}
.yef{bottom:456.066667pt;}
.y79{bottom:457.826667pt;}
.y17{bottom:460.226667pt;}
.y112{bottom:460.706667pt;}
.y13d{bottom:461.026667pt;}
.yee{bottom:471.746667pt;}
.y78{bottom:473.506667pt;}
.y16{bottom:475.906667pt;}
.y13c{bottom:476.706667pt;}
.y5f{bottom:483.746667pt;}
.y77{bottom:489.026667pt;}
.y15{bottom:491.586667pt;}
.y111{bottom:492.226667pt;}
.y13b{bottom:492.386667pt;}
.yed{bottom:495.266667pt;}
.ye0{bottom:502.626667pt;}
.y14{bottom:507.266667pt;}
.y110{bottom:507.906667pt;}
.yae{bottom:508.866667pt;}
.y13a{bottom:513.986667pt;}
.ycc{bottom:519.933333pt;}
.y76{bottom:520.733333pt;}
.y13{bottom:522.813333pt;}
.y10f{bottom:523.613333pt;}
.yad{bottom:524.573333pt;}
.yec{bottom:527.133333pt;}
.y139{bottom:529.693333pt;}
.y75{bottom:536.413333pt;}
.y12{bottom:538.493333pt;}
.y10e{bottom:539.293333pt;}
.yac{bottom:540.093333pt;}
.y138{bottom:551.293333pt;}
.y74{bottom:551.933333pt;}
.y11{bottom:554.173333pt;}
.y10d{bottom:554.813333pt;}
.yb6{bottom:555.453333pt;}
.yab{bottom:555.773333pt;}
.y137{bottom:566.973333pt;}
.y73{bottom:567.613333pt;}
.y10{bottom:569.693333pt;}
.yeb{bottom:570.173333pt;}
.y10c{bottom:570.493333pt;}
.yaa{bottom:571.453333pt;}
.y42{bottom:582.013333pt;}
.y136{bottom:582.493333pt;}
.yb5{bottom:584.093333pt;}
.ya9{bottom:587.133333pt;}
.y72{bottom:591.293333pt;}
.yf{bottom:593.533333pt;}
.y41{bottom:597.693333pt;}
.yea{bottom:598.653333pt;}
.ydf{bottom:599.773333pt;}
.y10b{bottom:602.013333pt;}
.y135{bottom:604.093333pt;}
.ya8{bottom:610.653333pt;}
.y40{bottom:613.373333pt;}
.y10a{bottom:617.693333pt;}
.y134{bottom:619.773333pt;}
.y71{bottom:620.093333pt;}
.yc7{bottom:620.733333pt;}
.y8e{bottom:627.613333pt;}
.y3f{bottom:628.893333pt;}
.y9f{bottom:631.773333pt;}
.y109{bottom:633.373333pt;}
.y133{bottom:635.453333pt;}
.ye{bottom:636.573333pt;}
.ya7{bottom:642.333333pt;}
.y8d{bottom:643.293333pt;}
.y108{bottom:649.053333pt;}
.y70{bottom:651.773333pt;}
.y3e{bottom:652.573333pt;}
.y132{bottom:657.053333pt;}
.y8c{bottom:658.813333pt;}
.y9e{bottom:660.413333pt;}
.y107{bottom:664.573333pt;}
.y6f{bottom:667.453333pt;}
.yd{bottom:668.413333pt;}
.ya6{bottom:670.973333pt;}
.y131{bottom:672.733333pt;}
.ydd{bottom:678.333333pt;}
.y106{bottom:680.253333pt;}
.y6e{bottom:683.133333pt;}
.y3d{bottom:684.093333pt;}
.y130{bottom:688.413333pt;}
.y8b{bottom:690.493333pt;}
.y54{bottom:695.453333pt;}
.y6d{bottom:698.813333pt;}
.y3c{bottom:699.773333pt;}
.yc{bottom:700.413333pt;}
.y105{bottom:704.093333pt;}
.y8a{bottom:706.173333pt;}
.y12f{bottom:710.013333pt;}
.y53{bottom:711.133333pt;}
.y6c{bottom:714.333333pt;}
.y3b{bottom:715.453333pt;}
.yc4{bottom:721.373333pt;}
.y12e{bottom:725.693333pt;}
.y52{bottom:726.813333pt;}
.y3a{bottom:731.133333pt;}
.yb{bottom:732.093333pt;}
.y89{bottom:734.653333pt;}
.y12d{bottom:741.213333pt;}
.y88{bottom:741.373333pt;}
.y6b{bottom:746.013333pt;}
.y39{bottom:746.813333pt;}
.y104{bottom:747.133333pt;}
.ya{bottom:751.133333pt;}
.y51{bottom:758.333333pt;}
.y6a{bottom:761.693333pt;}
.y103{bottom:762.813333pt;}
.y9{bottom:766.853333pt;}
.y50{bottom:774.053333pt;}
.y69{bottom:777.253333pt;}
.y38{bottom:778.373333pt;}
.y12c{bottom:778.533333pt;}
.y8{bottom:779.173333pt;}
.yc3{bottom:780.293333pt;}
.y4f{bottom:789.733333pt;}
.y37{bottom:794.053333pt;}
.y12b{bottom:794.213333pt;}
.y7{bottom:798.213333pt;}
.y87{bottom:808.773333pt;}
.y68{bottom:808.933333pt;}
.y36{bottom:809.733333pt;}
.yc2{bottom:811.973333pt;}
.y4e{bottom:821.253333pt;}
.y5e{bottom:824.933333pt;}
.y35{bottom:825.253333pt;}
.y6{bottom:826.693333pt;}
.yc1{bottom:827.653333pt;}
.y12a{bottom:831.333333pt;}
.y4d{bottom:836.933333pt;}
.y86{bottom:837.413333pt;}
.y67{bottom:840.453333pt;}
.y34{bottom:840.933333pt;}
.yc0{bottom:843.173333pt;}
.y5{bottom:843.813333pt;}
.y129{bottom:847.013333pt;}
.y4c{bottom:852.613333pt;}
.y5d{bottom:856.453333pt;}
.y102{bottom:856.613333pt;}
.ybf{bottom:866.853333pt;}
.y4b{bottom:868.293333pt;}
.y128{bottom:868.613333pt;}
.y66{bottom:869.413333pt;}
.y65{bottom:872.133333pt;}
.y33{bottom:872.453333pt;}
.y4{bottom:877.893333pt;}
.y4a{bottom:883.973333pt;}
.y127{bottom:884.293333pt;}
.y32{bottom:888.133333pt;}
.y101{bottom:895.813333pt;}
.ybe{bottom:898.373333pt;}
.y3{bottom:899.813333pt;}
.y31{bottom:903.813333pt;}
.y126{bottom:905.893333pt;}
.ye9{bottom:911.813333pt;}
.ybd{bottom:914.053333pt;}
.y49{bottom:915.493333pt;}
.y30{bottom:919.493333pt;}
.y125{bottom:921.573333pt;}
.ye8{bottom:927.493333pt;}
.ybc{bottom:929.733333pt;}
.y48{bottom:931.173333pt;}
.y2f{bottom:935.173333pt;}
.y64{bottom:935.493333pt;}
.yb4{bottom:943.013333pt;}
.ye7{bottom:943.173333pt;}
.ybb{bottom:945.413333pt;}
.y47{bottom:946.853333pt;}
.y2e{bottom:950.693333pt;}
.y5c{bottom:951.013333pt;}
.y63{bottom:951.173333pt;}
.yb3{bottom:958.693333pt;}
.yba{bottom:961.093333pt;}
.y2d{bottom:966.373333pt;}
.y5b{bottom:966.693333pt;}
.y46{bottom:970.373333pt;}
.yb2{bottom:974.373333pt;}
.y85{bottom:974.533333pt;}
.y5a{bottom:982.373333pt;}
.yb9{bottom:984.613333pt;}
.y124{bottom:988.453333pt;}
.yb1{bottom:990.053333pt;}
.y2c{bottom:997.893333pt;}
.y59{bottom:998.053333pt;}
.y45{bottom:1002.213333pt;}
.y84{bottom:1003.173333pt;}
.y83{bottom:1009.920000pt;}
.y123{bottom:1012.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h1d{height:10.400000pt;}
.h1c{height:10.560000pt;}
.h1a{height:14.720000pt;}
.h2{height:26.415625pt;}
.h1b{height:31.428750pt;}
.h6{height:32.780625pt;}
.h3{height:35.083125pt;}
.h14{height:39.200000pt;}
.hb{height:44.768125pt;}
.h13{height:44.975625pt;}
.h7{height:46.220625pt;}
.h8{height:49.852500pt;}
.h5{height:51.232500pt;}
.hd{height:52.990313pt;}
.h12{height:54.598989pt;}
.h9{height:55.298750pt;}
.hc{height:57.100625pt;}
.ha{height:61.295000pt;}
.he{height:62.643750pt;}
.h11{height:64.563750pt;}
.h4{height:65.154375pt;}
.hf{height:73.100625pt;}
.h10{height:73.207292pt;}
.h18{height:97.952000pt;}
.h15{height:100.000000pt;}
.h16{height:101.952000pt;}
.h19{height:102.080000pt;}
.h17{height:104.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:127.232000pt;}
.w7{width:127.392000pt;}
.w5{width:148.026667pt;}
.w4{width:257.146667pt;}
.w3{width:320.226667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:6.880000pt;}
.x2d{left:9.600000pt;}
.x1{left:60.480000pt;}
.x1b{left:84.511988pt;}
.x1e{left:97.951988pt;}
.x35{left:99.071988pt;}
.x1c{left:108.511988pt;}
.x1a{left:172.666655pt;}
.x31{left:185.466667pt;}
.x2{left:186.426655pt;}
.x30{left:192.506667pt;}
.x2f{left:196.026667pt;}
.xc{left:197.946655pt;}
.x32{left:199.546667pt;}
.x2e{left:206.746667pt;}
.x20{left:207.866655pt;}
.x34{left:210.266655pt;}
.x9{left:227.706655pt;}
.x24{left:242.946655pt;}
.x7{left:248.066655pt;}
.x26{left:263.426655pt;}
.x5{left:267.426655pt;}
.xe{left:268.546655pt;}
.x2a{left:274.914667pt;}
.x29{left:276.834667pt;}
.xa{left:280.386655pt;}
.x2b{left:282.914667pt;}
.x2c{left:284.834667pt;}
.x17{left:296.706655pt;}
.x13{left:301.506655pt;}
.xf{left:304.706655pt;}
.x16{left:310.466655pt;}
.x10{left:331.586655pt;}
.x14{left:335.746655pt;}
.x18{left:362.146655pt;}
.x11{left:371.266655pt;}
.x28{left:428.573333pt;}
.x15{left:502.973322pt;}
.x12{left:514.013322pt;}
.x1d{left:594.053322pt;}
.xd{left:595.973322pt;}
.xb{left:599.013322pt;}
.x22{left:603.013322pt;}
.x19{left:605.093322pt;}
.x23{left:610.053322pt;}
.x4{left:611.973322pt;}
.x25{left:615.973322pt;}
.x21{left:619.013322pt;}
.x1f{left:635.013322pt;}
.x6{left:643.013322pt;}
.x33{left:651.013322pt;}
.x8{left:699.013322pt;}
.x3{left:718.879988pt;}
}




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