
    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_a6ec138e6f865f7106be5e17.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_bb1c658be65b28494a5c638a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_c8a795f194f5b23b7e3329c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_09cb922e86fd2042f5c00387.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_a1c1bb5fe79368c0a34087cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_8b34e1a1aa3215e6b1b5708e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_8d0252a925bfa3391ac45800.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_18f81634c6b058be523c0c61.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.260000px;}
.v1{vertical-align:27.360000px;}
.v4{vertical-align:79.680000px;}
.ls4{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.152400px;}
.lsf{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.091200px;}
.ls15{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.109200px;}
.lsd{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.256200px;}
.ls7{letter-spacing:0.262200px;}
.ls12{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.720000px;}
.lse{letter-spacing:14.400000px;}
.lsb{letter-spacing:23.760000px;}
.ls14{letter-spacing:193.902000px;}
.ls13{letter-spacing:193.962000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-21.060000px;}
.wsa{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.432000px;}
.wsc{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws5{word-spacing:-16.865400px;}
.ws3{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.226440px;}
.wsf{word-spacing:-14.940000px;}
.ws6{word-spacing:0.000000px;}
.wse{word-spacing:181.698000px;}
._0{margin-left:-1.258560px;}
._3{width:1.468560px;}
._9{width:2.536800px;}
._a{width:3.698160px;}
._5{width:5.034240px;}
._4{width:6.359040px;}
._6{width:8.036160px;}
._7{width:9.339840px;}
._8{width:10.950480px;}
._15{width:12.041520px;}
._b{width:13.645440px;}
._c{width:15.500160px;}
._17{width:16.963680px;}
._e{width:19.440000px;}
._f{width:20.592000px;}
._21{width:22.248000px;}
._33{width:23.400000px;}
._2b{width:24.730560px;}
._30{width:26.677440px;}
._10{width:28.440000px;}
._11{width:29.592000px;}
._16{width:31.392000px;}
._1e{width:33.312000px;}
._18{width:34.752000px;}
._19{width:36.204000px;}
._39{width:37.452000px;}
._1f{width:38.592000px;}
._20{width:40.392000px;}
._22{width:41.832000px;}
._29{width:43.776000px;}
._25{width:44.856000px;}
._d{width:45.864000px;}
._14{width:47.520000px;}
._28{width:48.672000px;}
._37{width:49.800000px;}
._35{width:51.696000px;}
._36{width:53.256000px;}
._23{width:54.432000px;}
._24{width:55.512000px;}
._2a{width:56.851440px;}
._2c{width:57.960000px;}
._2d{width:59.184000px;}
._1a{width:61.200000px;}
._3f{width:62.544000px;}
._3e{width:63.720000px;}
._44{width:65.448000px;}
._3a{width:66.960000px;}
._3b{width:68.371440px;}
._12{width:70.776000px;}
._13{width:71.856000px;}
._2f{width:73.234560px;}
._40{width:75.822000px;}
._41{width:76.824000px;}
._49{width:77.904000px;}
._3c{width:79.920000px;}
._3d{width:81.216000px;}
._38{width:82.402560px;}
._31{width:83.592000px;}
._32{width:84.672000px;}
._1d{width:86.976000px;}
._1c{width:88.560000px;}
._46{width:89.935440px;}
._2e{width:91.944000px;}
._34{width:97.752000px;}
._42{width:99.288000px;}
._43{width:100.368000px;}
._4f{width:104.184000px;}
._4a{width:109.440000px;}
._50{width:111.300000px;}
._4b{width:114.264000px;}
._45{width:123.336000px;}
._26{width:128.016000px;}
._27{width:129.456000px;}
._4e{width:133.848000px;}
._4d{width:135.576000px;}
._47{width:140.506560px;}
._1b{width:145.944000px;}
._4c{width:152.856000px;}
._48{width:225.216000px;}
._1{width:807.399840px;}
._51{width:846.156000px;}
._2{width:931.260000px;}
._52{width:2429.165760px;}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:54.144000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y111{bottom:3.960000px;}
.y146{bottom:7.020000px;}
.y149{bottom:7.200000px;}
.y137{bottom:16.455000px;}
.y114{bottom:24.660000px;}
.y11b{bottom:24.705000px;}
.y119{bottom:45.360000px;}
.y3{bottom:58.356000px;}
.y136{bottom:58.710000px;}
.y118{bottom:66.060000px;}
.y2{bottom:78.516000px;}
.y117{bottom:86.760000px;}
.y2a{bottom:115.236000px;}
.ye4{bottom:120.096000px;}
.yb3{bottom:122.616000px;}
.ybe{bottom:122.796000px;}
.y10f{bottom:131.616000px;}
.y6c{bottom:133.956000px;}
.y97{bottom:134.316000px;}
.y74{bottom:134.676000px;}
.y51{bottom:134.856000px;}
.y29{bottom:138.996000px;}
.ye3{bottom:140.796000px;}
.yb2{bottom:146.376000px;}
.ybd{bottom:146.556000px;}
.y10e{bottom:152.310000px;}
.y121{bottom:154.830000px;}
.y96{bottom:158.250000px;}
.y73{bottom:158.430000px;}
.y50{bottom:158.610000px;}
.ye2{bottom:161.490000px;}
.y28{bottom:162.750000px;}
.y6b{bottom:169.770000px;}
.yb1{bottom:170.130000px;}
.ybc{bottom:170.310000px;}
.y10d{bottom:173.010000px;}
.y16b{bottom:174.450000px;}
.y95{bottom:182.010000px;}
.y72{bottom:182.190000px;}
.y4f{bottom:182.370000px;}
.y27{bottom:186.510000px;}
.y6a{bottom:193.530000px;}
.y10c{bottom:193.710000px;}
.yb0{bottom:194.070000px;}
.ybb{bottom:194.250000px;}
.y12e{bottom:197.025000px;}
.ye1{bottom:202.890000px;}
.y120{bottom:204.150000px;}
.y122{bottom:205.560000px;}
.y94{bottom:205.770000px;}
.y71{bottom:205.950000px;}
.y4e{bottom:206.130000px;}
.y16a{bottom:208.290000px;}
.y26{bottom:210.450000px;}
.y10b{bottom:214.410000px;}
.y127{bottom:214.590000px;}
.y69{bottom:217.470000px;}
.yaf{bottom:217.830000px;}
.y123{bottom:217.905000px;}
.yba{bottom:218.010000px;}
.y12d{bottom:221.220000px;}
.ye0{bottom:223.590000px;}
.y129{bottom:227.880000px;}
.y93{bottom:229.530000px;}
.y70{bottom:229.890000px;}
.y4d{bottom:230.070000px;}
.y12f{bottom:230.190000px;}
.y126{bottom:231.195000px;}
.y25{bottom:234.210000px;}
.y10a{bottom:235.110000px;}
.y12c{bottom:241.125000px;}
.y68{bottom:241.230000px;}
.yae{bottom:241.590000px;}
.yb9{bottom:241.770000px;}
.y169{bottom:241.950000px;}
.ydf{bottom:244.290000px;}
.y128{bottom:247.755000px;}
.y92{bottom:253.470000px;}
.y6f{bottom:253.650000px;}
.y4c{bottom:253.830000px;}
.y109{bottom:255.810000px;}
.y24{bottom:257.970000px;}
.y12b{bottom:261.030000px;}
.y130{bottom:263.340000px;}
.y124{bottom:264.345000px;}
.y67{bottom:264.990000px;}
.yad{bottom:265.350000px;}
.yb8{bottom:265.530000px;}
.y135{bottom:270.510000px;}
.y108{bottom:276.510000px;}
.y91{bottom:277.230000px;}
.y6e{bottom:277.410000px;}
.y4b{bottom:277.590000px;}
.yde{bottom:285.690000px;}
.y66{bottom:288.795000px;}
.yac{bottom:289.335000px;}
.yb7{bottom:289.515000px;}
.y168{bottom:294.375000px;}
.y131{bottom:296.490000px;}
.y107{bottom:297.255000px;}
.y4a{bottom:301.395000px;}
.ydd{bottom:306.435000px;}
.y23{bottom:309.315000px;}
.y125{bottom:310.755000px;}
.y65{bottom:312.735000px;}
.y90{bottom:313.095000px;}
.y6d{bottom:313.275000px;}
.y106{bottom:317.955000px;}
.y49{bottom:325.335000px;}
.ydc{bottom:327.135000px;}
.y132{bottom:329.655000px;}
.y167{bottom:335.775000px;}
.y8f{bottom:336.855000px;}
.yb6{bottom:337.035000px;}
.y105{bottom:338.655000px;}
.y22{bottom:340.275000px;}
.ydb{bottom:347.835000px;}
.y64{bottom:348.555000px;}
.y48{bottom:349.095000px;}
.y21{bottom:359.355000px;}
.y8e{bottom:360.615000px;}
.yb5{bottom:360.795000px;}
.y133{bottom:362.805000px;}
.yda{bottom:368.535000px;}
.yab{bottom:372.675000px;}
.y47{bottom:372.855000px;}
.y166{bottom:377.175000px;}
.y20{bottom:378.435000px;}
.y104{bottom:380.055000px;}
.y12a{bottom:380.370000px;}
.y63{bottom:384.195000px;}
.y8d{bottom:384.555000px;}
.yb4{bottom:384.735000px;}
.yd9{bottom:389.235000px;}
.y165{bottom:394.635000px;}
.y134{bottom:395.970000px;}
.y46{bottom:396.615000px;}
.y1f{bottom:397.335000px;}
.y103{bottom:400.755000px;}
.y62{bottom:408.135000px;}
.y8c{bottom:408.315000px;}
.yaa{bottom:408.495000px;}
.yd8{bottom:409.935000px;}
.y1e{bottom:416.235000px;}
.y45{bottom:420.555000px;}
.y102{bottom:421.455000px;}
.yd7{bottom:430.635000px;}
.y61{bottom:431.895000px;}
.y8b{bottom:432.075000px;}
.ya9{bottom:432.255000px;}
.y1d{bottom:435.315000px;}
.y164{bottom:436.035000px;}
.y101{bottom:442.155000px;}
.y44{bottom:444.315000px;}
.yd6{bottom:451.335000px;}
.y1c{bottom:454.215000px;}
.y60{bottom:455.655000px;}
.y8a{bottom:455.835000px;}
.ya8{bottom:456.015000px;}
.y100{bottom:462.855000px;}
.y43{bottom:468.075000px;}
.yd5{bottom:472.035000px;}
.y1b{bottom:473.295000px;}
.y163{bottom:477.435000px;}
.y5f{bottom:479.415000px;}
.y89{bottom:479.775000px;}
.ya7{bottom:479.955000px;}
.yff{bottom:483.555000px;}
.y42{bottom:491.835000px;}
.y1a{bottom:492.195000px;}
.yd4{bottom:492.735000px;}
.y162{bottom:498.135000px;}
.y5e{bottom:503.355000px;}
.ya6{bottom:503.715000px;}
.yfe{bottom:504.255000px;}
.y19{bottom:511.095000px;}
.yd3{bottom:513.435000px;}
.y88{bottom:515.415000px;}
.y41{bottom:515.775000px;}
.y161{bottom:518.835000px;}
.yfd{bottom:524.955000px;}
.y5d{bottom:527.115000px;}
.ya5{bottom:527.475000px;}
.y18{bottom:530.175000px;}
.yd2{bottom:534.135000px;}
.y87{bottom:539.355000px;}
.y40{bottom:539.535000px;}
.yfc{bottom:545.655000px;}
.y17{bottom:549.105000px;}
.y155{bottom:549.645000px;}
.y5c{bottom:550.905000px;}
.ya4{bottom:551.265000px;}
.yd1{bottom:554.865000px;}
.y160{bottom:560.265000px;}
.y86{bottom:563.145000px;}
.y3f{bottom:563.325000px;}
.yfb{bottom:566.385000px;}
.y16{bottom:568.185000px;}
.y5b{bottom:574.665000px;}
.ya3{bottom:575.205000px;}
.yd0{bottom:575.565000px;}
.y15f{bottom:580.965000px;}
.y85{bottom:586.905000px;}
.y15{bottom:587.085000px;}
.y144{bottom:592.845000px;}
.ycf{bottom:596.265000px;}
.ya2{bottom:598.965000px;}
.y15e{bottom:601.665000px;}
.y154{bottom:602.925000px;}
.y14{bottom:605.985000px;}
.yfa{bottom:607.785000px;}
.y5a{bottom:610.485000px;}
.y84{bottom:610.665000px;}
.y3e{bottom:610.845000px;}
.y143{bottom:613.545000px;}
.yce{bottom:616.965000px;}
.y15d{bottom:622.365000px;}
.ya1{bottom:622.725000px;}
.y153{bottom:623.625000px;}
.y13{bottom:625.065000px;}
.yf9{bottom:628.485000px;}
.y142{bottom:634.245000px;}
.y83{bottom:634.605000px;}
.y3d{bottom:634.785000px;}
.ycd{bottom:637.665000px;}
.y15c{bottom:643.065000px;}
.y12{bottom:643.965000px;}
.y59{bottom:646.305000px;}
.ya0{bottom:646.485000px;}
.yf8{bottom:649.185000px;}
.y152{bottom:653.685000px;}
.y11f{bottom:654.945000px;}
.y82{bottom:658.365000px;}
.y3c{bottom:658.545000px;}
.y11{bottom:663.045000px;}
.yf7{bottom:669.885000px;}
.y58{bottom:670.065000px;}
.y9f{bottom:670.425000px;}
.y141{bottom:672.405000px;}
.ycc{bottom:679.065000px;}
.y10{bottom:681.945000px;}
.y81{bottom:682.125000px;}
.y3b{bottom:682.305000px;}
.y15b{bottom:684.465000px;}
.yf6{bottom:690.585000px;}
.y57{bottom:694.005000px;}
.y9e{bottom:694.185000px;}
.ycb{bottom:699.765000px;}
.yf{bottom:700.845000px;}
.y15a{bottom:705.165000px;}
.y80{bottom:705.885000px;}
.y3a{bottom:706.065000px;}
.y151{bottom:707.145000px;}
.y11e{bottom:708.225000px;}
.yf5{bottom:711.285000px;}
.y140{bottom:713.805000px;}
.y56{bottom:717.765000px;}
.y9d{bottom:717.945000px;}
.yca{bottom:720.465000px;}
.y11d{bottom:725.865000px;}
.y7f{bottom:729.825000px;}
.y39{bottom:730.005000px;}
.yf4{bottom:731.985000px;}
.ye{bottom:732.885000px;}
.yc9{bottom:741.165000px;}
.y55{bottom:741.525000px;}
.y9c{bottom:741.705000px;}
.y11c{bottom:746.565000px;}
.yf3{bottom:752.685000px;}
.y7e{bottom:753.585000px;}
.y38{bottom:753.765000px;}
.y13f{bottom:755.205000px;}
.y150{bottom:760.425000px;}
.yc8{bottom:761.865000px;}
.y54{bottom:765.285000px;}
.y9b{bottom:765.465000px;}
.yd{bottom:766.725000px;}
.y159{bottom:767.265000px;}
.yf2{bottom:773.385000px;}
.y7d{bottom:777.345000px;}
.y37{bottom:777.525000px;}
.y14f{bottom:781.125000px;}
.yc7{bottom:782.565000px;}
.y11a{bottom:787.965000px;}
.y9a{bottom:789.405000px;}
.yf1{bottom:794.085000px;}
.y53{bottom:801.105000px;}
.y36{bottom:801.285000px;}
.y14e{bottom:801.825000px;}
.yc6{bottom:803.265000px;}
.y158{bottom:808.710000px;}
.yc{bottom:809.430000px;}
.y99{bottom:813.210000px;}
.yf0{bottom:814.830000px;}
.y13e{bottom:817.350000px;}
.y14d{bottom:822.570000px;}
.yc5{bottom:824.010000px;}
.y7c{bottom:825.090000px;}
.y35{bottom:825.270000px;}
.yb{bottom:826.350000px;}
.y116{bottom:829.410000px;}
.yef{bottom:835.530000px;}
.y52{bottom:836.970000px;}
.y13d{bottom:838.050000px;}
.y14c{bottom:840.030000px;}
.yc4{bottom:844.710000px;}
.y7b{bottom:848.850000px;}
.y34{bottom:849.030000px;}
.yee{bottom:856.230000px;}
.ya{bottom:857.130000px;}
.y98{bottom:860.730000px;}
.y14b{bottom:864.690000px;}
.yc3{bottom:865.410000px;}
.y157{bottom:870.810000px;}
.y7a{bottom:872.610000px;}
.y33{bottom:872.790000px;}
.yed{bottom:876.930000px;}
.y13c{bottom:879.450000px;}
.ybf{bottom:884.670000px;}
.y14a{bottom:888.450000px;}
.y79{bottom:896.370000px;}
.y32{bottom:896.550000px;}
.yec{bottom:897.630000px;}
.y13b{bottom:900.150000px;}
.y9{bottom:903.570000px;}
.y148{bottom:912.210000px;}
.yeb{bottom:918.330000px;}
.y78{bottom:920.130000px;}
.y31{bottom:920.490000px;}
.yc2{bottom:932.190000px;}
.y115{bottom:932.910000px;}
.y147{bottom:936.150000px;}
.yea{bottom:939.030000px;}
.y8{bottom:940.470000px;}
.y13a{bottom:941.550000px;}
.y77{bottom:944.070000px;}
.y30{bottom:944.250000px;}
.y113{bottom:953.610000px;}
.yc1{bottom:955.950000px;}
.ye9{bottom:959.730000px;}
.y145{bottom:960.630000px;}
.y76{bottom:967.830000px;}
.y2f{bottom:968.010000px;}
.y7{bottom:968.190000px;}
.y156{bottom:975.030000px;}
.yc0{bottom:979.890000px;}
.ye8{bottom:980.430000px;}
.y139{bottom:983.670000px;}
.y2e{bottom:991.770000px;}
.y112{bottom:995.730000px;}
.ye7{bottom:1001.130000px;}
.y75{bottom:1003.650000px;}
.y138{bottom:1005.090000px;}
.y6{bottom:1005.990000px;}
.y2d{bottom:1015.710000px;}
.y110{bottom:1017.150000px;}
.ye6{bottom:1021.830000px;}
.y5{bottom:1038.570000px;}
.y2c{bottom:1039.470000px;}
.ye5{bottom:1042.530000px;}
.y4{bottom:1058.910000px;}
.y2b{bottom:1063.230000px;}
.y1{bottom:1118.700000px;}
.hd{height:20.700000px;}
.h1c{height:20.736000px;}
.h1a{height:23.760000px;}
.h1b{height:23.940000px;}
.he{height:41.400000px;}
.h10{height:41.436000px;}
.h7{height:47.344922px;}
.hb{height:50.273438px;}
.h18{height:52.998047px;}
.h13{height:53.709961px;}
.h15{height:53.853187px;}
.h17{height:58.651172px;}
.h19{height:62.136000px;}
.h9{height:64.978594px;}
.h1{height:65.010937px;}
.h2{height:65.884219px;}
.h4{height:66.757500px;}
.hc{height:70.628906px;}
.h8{height:70.664062px;}
.ha{height:72.562500px;}
.h6{height:74.704922px;}
.h12{height:80.349961px;}
.h5{height:84.898125px;}
.h3{height:90.703125px;}
.h16{height:93.609961px;}
.hf{height:103.500000px;}
.h14{height:133.389961px;}
.h11{height:412.740000px;}
.h0{height:1188.000000px;}
.w10{width:48.960000px;}
.w17{width:54.540000px;}
.we{width:60.840000px;}
.wf{width:61.560000px;}
.wc{width:61.740000px;}
.w18{width:64.980000px;}
.w1a{width:65.160000px;}
.w15{width:76.140000px;}
.wd{width:76.896000px;}
.w19{width:77.076000px;}
.wb{width:85.860000px;}
.w14{width:86.400000px;}
.w16{width:87.336000px;}
.w4{width:102.960000px;}
.w21{width:106.380000px;}
.w1f{width:117.360000px;}
.w1e{width:127.116000px;}
.w20{width:127.656000px;}
.w5{width:152.130000px;}
.w6{width:158.610000px;}
.wa{width:187.410000px;}
.w9{width:199.470000px;}
.w13{width:207.210000px;}
.w12{width:218.010000px;}
.w1d{width:234.030000px;}
.w11{width:239.430000px;}
.w1c{width:244.470000px;}
.w8{width:299.730000px;}
.w2{width:303.870000px;}
.w1b{width:308.415000px;}
.w3{width:310.755000px;}
.w7{width:704.160000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:8.100000px;}
.x26{left:43.095000px;}
.x3b{left:49.500000px;}
.x25{left:50.790000px;}
.x24{left:57.630000px;}
.x33{left:63.540000px;}
.x39{left:68.040000px;}
.x31{left:70.560000px;}
.x14{left:83.160000px;}
.x18{left:91.155000px;}
.x11{left:99.936000px;}
.x1{left:108.035986px;}
.xd{left:112.535986px;}
.xa{left:121.715986px;}
.x6{left:124.775986px;}
.xf{left:162.029986px;}
.x1e{left:166.605000px;}
.x3{left:174.989986px;}
.x7{left:205.409986px;}
.x1f{left:218.520000px;}
.xb{left:231.329986px;}
.x4{left:244.469986px;}
.x28{left:251.100000px;}
.x20{left:277.275000px;}
.x27{left:295.995000px;}
.x19{left:309.060000px;}
.x8{left:315.794986px;}
.x21{left:329.190000px;}
.x30{left:339.375000px;}
.x1a{left:364.395000px;}
.x3a{left:376.455000px;}
.x22{left:387.930000px;}
.x29{left:399.675000px;}
.x13{left:403.815000px;}
.x35{left:415.515000px;}
.x1b{left:423.150000px;}
.x9{left:432.074986px;}
.x23{left:443.265000px;}
.x2{left:450.614986px;}
.x5{left:459.074986px;}
.x2c{left:461.415000px;}
.x1c{left:478.470000px;}
.xc{left:486.074986px;}
.xe{left:490.574986px;}
.x36{left:502.845000px;}
.x2d{left:538.305000px;}
.x10{left:540.104986px;}
.x16{left:555.945000px;}
.x32{left:557.385000px;}
.x2a{left:599.145000px;}
.x3c{left:620.925000px;}
.x37{left:622.365000px;}
.x1d{left:644.475000px;}
.x2e{left:660.705000px;}
.x38{left:699.450000px;}
.x15{left:714.570000px;}
.x2f{left:737.610000px;}
.x3d{left:748.590000px;}
.x34{left:764.610000px;}
.x2b{left:786.570000px;}
.x17{left:812.309986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:11.786667pt;}
.v1{vertical-align:24.320000pt;}
.v4{vertical-align:70.826667pt;}
.ls4{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.135467pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.081067pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.097067pt;}
.lsd{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.227733pt;}
.ls7{letter-spacing:0.233067pt;}
.ls12{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.640000pt;}
.lse{letter-spacing:12.800000pt;}
.lsb{letter-spacing:21.120000pt;}
.ls14{letter-spacing:172.357333pt;}
.ls13{letter-spacing:172.410667pt;}
.ws2{word-spacing:-18.720000pt;}
.wsa{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.384000pt;}
.wsc{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws5{word-spacing:-14.991467pt;}
.ws3{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.534613pt;}
.wsf{word-spacing:-13.280000pt;}
.ws6{word-spacing:0.000000pt;}
.wse{word-spacing:161.509333pt;}
._0{margin-left:-1.118720pt;}
._3{width:1.305387pt;}
._9{width:2.254933pt;}
._a{width:3.287253pt;}
._5{width:4.474880pt;}
._4{width:5.652480pt;}
._6{width:7.143253pt;}
._7{width:8.302080pt;}
._8{width:9.733760pt;}
._15{width:10.703573pt;}
._b{width:12.129280pt;}
._c{width:13.777920pt;}
._17{width:15.078827pt;}
._e{width:17.280000pt;}
._f{width:18.304000pt;}
._21{width:19.776000pt;}
._33{width:20.800000pt;}
._2b{width:21.982720pt;}
._30{width:23.713280pt;}
._10{width:25.280000pt;}
._11{width:26.304000pt;}
._16{width:27.904000pt;}
._1e{width:29.610667pt;}
._18{width:30.890667pt;}
._19{width:32.181333pt;}
._39{width:33.290667pt;}
._1f{width:34.304000pt;}
._20{width:35.904000pt;}
._22{width:37.184000pt;}
._29{width:38.912000pt;}
._25{width:39.872000pt;}
._d{width:40.768000pt;}
._14{width:42.240000pt;}
._28{width:43.264000pt;}
._37{width:44.266667pt;}
._35{width:45.952000pt;}
._36{width:47.338667pt;}
._23{width:48.384000pt;}
._24{width:49.344000pt;}
._2a{width:50.534613pt;}
._2c{width:51.520000pt;}
._2d{width:52.608000pt;}
._1a{width:54.400000pt;}
._3f{width:55.594667pt;}
._3e{width:56.640000pt;}
._44{width:58.176000pt;}
._3a{width:59.520000pt;}
._3b{width:60.774613pt;}
._12{width:62.912000pt;}
._13{width:63.872000pt;}
._2f{width:65.097387pt;}
._40{width:67.397333pt;}
._41{width:68.288000pt;}
._49{width:69.248000pt;}
._3c{width:71.040000pt;}
._3d{width:72.192000pt;}
._38{width:73.246720pt;}
._31{width:74.304000pt;}
._32{width:75.264000pt;}
._1d{width:77.312000pt;}
._1c{width:78.720000pt;}
._46{width:79.942613pt;}
._2e{width:81.728000pt;}
._34{width:86.890667pt;}
._42{width:88.256000pt;}
._43{width:89.216000pt;}
._4f{width:92.608000pt;}
._4a{width:97.280000pt;}
._50{width:98.933333pt;}
._4b{width:101.568000pt;}
._45{width:109.632000pt;}
._26{width:113.792000pt;}
._27{width:115.072000pt;}
._4e{width:118.976000pt;}
._4d{width:120.512000pt;}
._47{width:124.894720pt;}
._1b{width:129.728000pt;}
._4c{width:135.872000pt;}
._48{width:200.192000pt;}
._1{width:717.688747pt;}
._51{width:752.138667pt;}
._2{width:827.786667pt;}
._52{width:2159.258453pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:48.128000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y111{bottom:3.520000pt;}
.y146{bottom:6.240000pt;}
.y149{bottom:6.400000pt;}
.y137{bottom:14.626667pt;}
.y114{bottom:21.920000pt;}
.y11b{bottom:21.960000pt;}
.y119{bottom:40.320000pt;}
.y3{bottom:51.872000pt;}
.y136{bottom:52.186667pt;}
.y118{bottom:58.720000pt;}
.y2{bottom:69.792000pt;}
.y117{bottom:77.120000pt;}
.y2a{bottom:102.432000pt;}
.ye4{bottom:106.752000pt;}
.yb3{bottom:108.992000pt;}
.ybe{bottom:109.152000pt;}
.y10f{bottom:116.992000pt;}
.y6c{bottom:119.072000pt;}
.y97{bottom:119.392000pt;}
.y74{bottom:119.712000pt;}
.y51{bottom:119.872000pt;}
.y29{bottom:123.552000pt;}
.ye3{bottom:125.152000pt;}
.yb2{bottom:130.112000pt;}
.ybd{bottom:130.272000pt;}
.y10e{bottom:135.386667pt;}
.y121{bottom:137.626667pt;}
.y96{bottom:140.666667pt;}
.y73{bottom:140.826667pt;}
.y50{bottom:140.986667pt;}
.ye2{bottom:143.546667pt;}
.y28{bottom:144.666667pt;}
.y6b{bottom:150.906667pt;}
.yb1{bottom:151.226667pt;}
.ybc{bottom:151.386667pt;}
.y10d{bottom:153.786667pt;}
.y16b{bottom:155.066667pt;}
.y95{bottom:161.786667pt;}
.y72{bottom:161.946667pt;}
.y4f{bottom:162.106667pt;}
.y27{bottom:165.786667pt;}
.y6a{bottom:172.026667pt;}
.y10c{bottom:172.186667pt;}
.yb0{bottom:172.506667pt;}
.ybb{bottom:172.666667pt;}
.y12e{bottom:175.133333pt;}
.ye1{bottom:180.346667pt;}
.y120{bottom:181.466667pt;}
.y122{bottom:182.720000pt;}
.y94{bottom:182.906667pt;}
.y71{bottom:183.066667pt;}
.y4e{bottom:183.226667pt;}
.y16a{bottom:185.146667pt;}
.y26{bottom:187.066667pt;}
.y10b{bottom:190.586667pt;}
.y127{bottom:190.746667pt;}
.y69{bottom:193.306667pt;}
.yaf{bottom:193.626667pt;}
.y123{bottom:193.693333pt;}
.yba{bottom:193.786667pt;}
.y12d{bottom:196.640000pt;}
.ye0{bottom:198.746667pt;}
.y129{bottom:202.560000pt;}
.y93{bottom:204.026667pt;}
.y70{bottom:204.346667pt;}
.y4d{bottom:204.506667pt;}
.y12f{bottom:204.613333pt;}
.y126{bottom:205.506667pt;}
.y25{bottom:208.186667pt;}
.y10a{bottom:208.986667pt;}
.y12c{bottom:214.333333pt;}
.y68{bottom:214.426667pt;}
.yae{bottom:214.746667pt;}
.yb9{bottom:214.906667pt;}
.y169{bottom:215.066667pt;}
.ydf{bottom:217.146667pt;}
.y128{bottom:220.226667pt;}
.y92{bottom:225.306667pt;}
.y6f{bottom:225.466667pt;}
.y4c{bottom:225.626667pt;}
.y109{bottom:227.386667pt;}
.y24{bottom:229.306667pt;}
.y12b{bottom:232.026667pt;}
.y130{bottom:234.080000pt;}
.y124{bottom:234.973333pt;}
.y67{bottom:235.546667pt;}
.yad{bottom:235.866667pt;}
.yb8{bottom:236.026667pt;}
.y135{bottom:240.453333pt;}
.y108{bottom:245.786667pt;}
.y91{bottom:246.426667pt;}
.y6e{bottom:246.586667pt;}
.y4b{bottom:246.746667pt;}
.yde{bottom:253.946667pt;}
.y66{bottom:256.706667pt;}
.yac{bottom:257.186667pt;}
.yb7{bottom:257.346667pt;}
.y168{bottom:261.666667pt;}
.y131{bottom:263.546667pt;}
.y107{bottom:264.226667pt;}
.y4a{bottom:267.906667pt;}
.ydd{bottom:272.386667pt;}
.y23{bottom:274.946667pt;}
.y125{bottom:276.226667pt;}
.y65{bottom:277.986667pt;}
.y90{bottom:278.306667pt;}
.y6d{bottom:278.466667pt;}
.y106{bottom:282.626667pt;}
.y49{bottom:289.186667pt;}
.ydc{bottom:290.786667pt;}
.y132{bottom:293.026667pt;}
.y167{bottom:298.466667pt;}
.y8f{bottom:299.426667pt;}
.yb6{bottom:299.586667pt;}
.y105{bottom:301.026667pt;}
.y22{bottom:302.466667pt;}
.ydb{bottom:309.186667pt;}
.y64{bottom:309.826667pt;}
.y48{bottom:310.306667pt;}
.y21{bottom:319.426667pt;}
.y8e{bottom:320.546667pt;}
.yb5{bottom:320.706667pt;}
.y133{bottom:322.493333pt;}
.yda{bottom:327.586667pt;}
.yab{bottom:331.266667pt;}
.y47{bottom:331.426667pt;}
.y166{bottom:335.266667pt;}
.y20{bottom:336.386667pt;}
.y104{bottom:337.826667pt;}
.y12a{bottom:338.106667pt;}
.y63{bottom:341.506667pt;}
.y8d{bottom:341.826667pt;}
.yb4{bottom:341.986667pt;}
.yd9{bottom:345.986667pt;}
.y165{bottom:350.786667pt;}
.y134{bottom:351.973333pt;}
.y46{bottom:352.546667pt;}
.y1f{bottom:353.186667pt;}
.y103{bottom:356.226667pt;}
.y62{bottom:362.786667pt;}
.y8c{bottom:362.946667pt;}
.yaa{bottom:363.106667pt;}
.yd8{bottom:364.386667pt;}
.y1e{bottom:369.986667pt;}
.y45{bottom:373.826667pt;}
.y102{bottom:374.626667pt;}
.yd7{bottom:382.786667pt;}
.y61{bottom:383.906667pt;}
.y8b{bottom:384.066667pt;}
.ya9{bottom:384.226667pt;}
.y1d{bottom:386.946667pt;}
.y164{bottom:387.586667pt;}
.y101{bottom:393.026667pt;}
.y44{bottom:394.946667pt;}
.yd6{bottom:401.186667pt;}
.y1c{bottom:403.746667pt;}
.y60{bottom:405.026667pt;}
.y8a{bottom:405.186667pt;}
.ya8{bottom:405.346667pt;}
.y100{bottom:411.426667pt;}
.y43{bottom:416.066667pt;}
.yd5{bottom:419.586667pt;}
.y1b{bottom:420.706667pt;}
.y163{bottom:424.386667pt;}
.y5f{bottom:426.146667pt;}
.y89{bottom:426.466667pt;}
.ya7{bottom:426.626667pt;}
.yff{bottom:429.826667pt;}
.y42{bottom:437.186667pt;}
.y1a{bottom:437.506667pt;}
.yd4{bottom:437.986667pt;}
.y162{bottom:442.786667pt;}
.y5e{bottom:447.426667pt;}
.ya6{bottom:447.746667pt;}
.yfe{bottom:448.226667pt;}
.y19{bottom:454.306667pt;}
.yd3{bottom:456.386667pt;}
.y88{bottom:458.146667pt;}
.y41{bottom:458.466667pt;}
.y161{bottom:461.186667pt;}
.yfd{bottom:466.626667pt;}
.y5d{bottom:468.546667pt;}
.ya5{bottom:468.866667pt;}
.y18{bottom:471.266667pt;}
.yd2{bottom:474.786667pt;}
.y87{bottom:479.426667pt;}
.y40{bottom:479.586667pt;}
.yfc{bottom:485.026667pt;}
.y17{bottom:488.093333pt;}
.y155{bottom:488.573333pt;}
.y5c{bottom:489.693333pt;}
.ya4{bottom:490.013333pt;}
.yd1{bottom:493.213333pt;}
.y160{bottom:498.013333pt;}
.y86{bottom:500.573333pt;}
.y3f{bottom:500.733333pt;}
.yfb{bottom:503.453333pt;}
.y16{bottom:505.053333pt;}
.y5b{bottom:510.813333pt;}
.ya3{bottom:511.293333pt;}
.yd0{bottom:511.613333pt;}
.y15f{bottom:516.413333pt;}
.y85{bottom:521.693333pt;}
.y15{bottom:521.853333pt;}
.y144{bottom:526.973333pt;}
.ycf{bottom:530.013333pt;}
.ya2{bottom:532.413333pt;}
.y15e{bottom:534.813333pt;}
.y154{bottom:535.933333pt;}
.y14{bottom:538.653333pt;}
.yfa{bottom:540.253333pt;}
.y5a{bottom:542.653333pt;}
.y84{bottom:542.813333pt;}
.y3e{bottom:542.973333pt;}
.y143{bottom:545.373333pt;}
.yce{bottom:548.413333pt;}
.y15d{bottom:553.213333pt;}
.ya1{bottom:553.533333pt;}
.y153{bottom:554.333333pt;}
.y13{bottom:555.613333pt;}
.yf9{bottom:558.653333pt;}
.y142{bottom:563.773333pt;}
.y83{bottom:564.093333pt;}
.y3d{bottom:564.253333pt;}
.ycd{bottom:566.813333pt;}
.y15c{bottom:571.613333pt;}
.y12{bottom:572.413333pt;}
.y59{bottom:574.493333pt;}
.ya0{bottom:574.653333pt;}
.yf8{bottom:577.053333pt;}
.y152{bottom:581.053333pt;}
.y11f{bottom:582.173333pt;}
.y82{bottom:585.213333pt;}
.y3c{bottom:585.373333pt;}
.y11{bottom:589.373333pt;}
.yf7{bottom:595.453333pt;}
.y58{bottom:595.613333pt;}
.y9f{bottom:595.933333pt;}
.y141{bottom:597.693333pt;}
.ycc{bottom:603.613333pt;}
.y10{bottom:606.173333pt;}
.y81{bottom:606.333333pt;}
.y3b{bottom:606.493333pt;}
.y15b{bottom:608.413333pt;}
.yf6{bottom:613.853333pt;}
.y57{bottom:616.893333pt;}
.y9e{bottom:617.053333pt;}
.ycb{bottom:622.013333pt;}
.yf{bottom:622.973333pt;}
.y15a{bottom:626.813333pt;}
.y80{bottom:627.453333pt;}
.y3a{bottom:627.613333pt;}
.y151{bottom:628.573333pt;}
.y11e{bottom:629.533333pt;}
.yf5{bottom:632.253333pt;}
.y140{bottom:634.493333pt;}
.y56{bottom:638.013333pt;}
.y9d{bottom:638.173333pt;}
.yca{bottom:640.413333pt;}
.y11d{bottom:645.213333pt;}
.y7f{bottom:648.733333pt;}
.y39{bottom:648.893333pt;}
.yf4{bottom:650.653333pt;}
.ye{bottom:651.453333pt;}
.yc9{bottom:658.813333pt;}
.y55{bottom:659.133333pt;}
.y9c{bottom:659.293333pt;}
.y11c{bottom:663.613333pt;}
.yf3{bottom:669.053333pt;}
.y7e{bottom:669.853333pt;}
.y38{bottom:670.013333pt;}
.y13f{bottom:671.293333pt;}
.y150{bottom:675.933333pt;}
.yc8{bottom:677.213333pt;}
.y54{bottom:680.253333pt;}
.y9b{bottom:680.413333pt;}
.yd{bottom:681.533333pt;}
.y159{bottom:682.013333pt;}
.yf2{bottom:687.453333pt;}
.y7d{bottom:690.973333pt;}
.y37{bottom:691.133333pt;}
.y14f{bottom:694.333333pt;}
.yc7{bottom:695.613333pt;}
.y11a{bottom:700.413333pt;}
.y9a{bottom:701.693333pt;}
.yf1{bottom:705.853333pt;}
.y53{bottom:712.093333pt;}
.y36{bottom:712.253333pt;}
.y14e{bottom:712.733333pt;}
.yc6{bottom:714.013333pt;}
.y158{bottom:718.853333pt;}
.yc{bottom:719.493333pt;}
.y99{bottom:722.853333pt;}
.yf0{bottom:724.293333pt;}
.y13e{bottom:726.533333pt;}
.y14d{bottom:731.173333pt;}
.yc5{bottom:732.453333pt;}
.y7c{bottom:733.413333pt;}
.y35{bottom:733.573333pt;}
.yb{bottom:734.533333pt;}
.y116{bottom:737.253333pt;}
.yef{bottom:742.693333pt;}
.y52{bottom:743.973333pt;}
.y13d{bottom:744.933333pt;}
.y14c{bottom:746.693333pt;}
.yc4{bottom:750.853333pt;}
.y7b{bottom:754.533333pt;}
.y34{bottom:754.693333pt;}
.yee{bottom:761.093333pt;}
.ya{bottom:761.893333pt;}
.y98{bottom:765.093333pt;}
.y14b{bottom:768.613333pt;}
.yc3{bottom:769.253333pt;}
.y157{bottom:774.053333pt;}
.y7a{bottom:775.653333pt;}
.y33{bottom:775.813333pt;}
.yed{bottom:779.493333pt;}
.y13c{bottom:781.733333pt;}
.ybf{bottom:786.373333pt;}
.y14a{bottom:789.733333pt;}
.y79{bottom:796.773333pt;}
.y32{bottom:796.933333pt;}
.yec{bottom:797.893333pt;}
.y13b{bottom:800.133333pt;}
.y9{bottom:803.173333pt;}
.y148{bottom:810.853333pt;}
.yeb{bottom:816.293333pt;}
.y78{bottom:817.893333pt;}
.y31{bottom:818.213333pt;}
.yc2{bottom:828.613333pt;}
.y115{bottom:829.253333pt;}
.y147{bottom:832.133333pt;}
.yea{bottom:834.693333pt;}
.y8{bottom:835.973333pt;}
.y13a{bottom:836.933333pt;}
.y77{bottom:839.173333pt;}
.y30{bottom:839.333333pt;}
.y113{bottom:847.653333pt;}
.yc1{bottom:849.733333pt;}
.ye9{bottom:853.093333pt;}
.y145{bottom:853.893333pt;}
.y76{bottom:860.293333pt;}
.y2f{bottom:860.453333pt;}
.y7{bottom:860.613333pt;}
.y156{bottom:866.693333pt;}
.yc0{bottom:871.013333pt;}
.ye8{bottom:871.493333pt;}
.y139{bottom:874.373333pt;}
.y2e{bottom:881.573333pt;}
.y112{bottom:885.093333pt;}
.ye7{bottom:889.893333pt;}
.y75{bottom:892.133333pt;}
.y138{bottom:893.413333pt;}
.y6{bottom:894.213333pt;}
.y2d{bottom:902.853333pt;}
.y110{bottom:904.133333pt;}
.ye6{bottom:908.293333pt;}
.y5{bottom:923.173333pt;}
.y2c{bottom:923.973333pt;}
.ye5{bottom:926.693333pt;}
.y4{bottom:941.253333pt;}
.y2b{bottom:945.093333pt;}
.y1{bottom:994.400000pt;}
.hd{height:18.400000pt;}
.h1c{height:18.432000pt;}
.h1a{height:21.120000pt;}
.h1b{height:21.280000pt;}
.he{height:36.800000pt;}
.h10{height:36.832000pt;}
.h7{height:42.084375pt;}
.hb{height:44.687500pt;}
.h18{height:47.109375pt;}
.h13{height:47.742188pt;}
.h15{height:47.869500pt;}
.h17{height:52.134375pt;}
.h19{height:55.232000pt;}
.h9{height:57.758750pt;}
.h1{height:57.787500pt;}
.h2{height:58.563750pt;}
.h4{height:59.340000pt;}
.hc{height:62.781250pt;}
.h8{height:62.812500pt;}
.ha{height:64.500000pt;}
.h6{height:66.404375pt;}
.h12{height:71.422187pt;}
.h5{height:75.465000pt;}
.h3{height:80.625000pt;}
.h16{height:83.208854pt;}
.hf{height:92.000000pt;}
.h14{height:118.568854pt;}
.h11{height:366.880000pt;}
.h0{height:1056.000000pt;}
.w10{width:43.520000pt;}
.w17{width:48.480000pt;}
.we{width:54.080000pt;}
.wf{width:54.720000pt;}
.wc{width:54.880000pt;}
.w18{width:57.760000pt;}
.w1a{width:57.920000pt;}
.w15{width:67.680000pt;}
.wd{width:68.352000pt;}
.w19{width:68.512000pt;}
.wb{width:76.320000pt;}
.w14{width:76.800000pt;}
.w16{width:77.632000pt;}
.w4{width:91.520000pt;}
.w21{width:94.560000pt;}
.w1f{width:104.320000pt;}
.w1e{width:112.992000pt;}
.w20{width:113.472000pt;}
.w5{width:135.226667pt;}
.w6{width:140.986667pt;}
.wa{width:166.586667pt;}
.w9{width:177.306667pt;}
.w13{width:184.186667pt;}
.w12{width:193.786667pt;}
.w1d{width:208.026667pt;}
.w11{width:212.826667pt;}
.w1c{width:217.306667pt;}
.w8{width:266.426667pt;}
.w2{width:270.106667pt;}
.w1b{width:274.146667pt;}
.w3{width:276.226667pt;}
.w7{width:625.920000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:7.200000pt;}
.x26{left:38.306667pt;}
.x3b{left:44.000000pt;}
.x25{left:45.146667pt;}
.x24{left:51.226667pt;}
.x33{left:56.480000pt;}
.x39{left:60.480000pt;}
.x31{left:62.720000pt;}
.x14{left:73.920000pt;}
.x18{left:81.026667pt;}
.x11{left:88.832000pt;}
.x1{left:96.031988pt;}
.xd{left:100.031988pt;}
.xa{left:108.191988pt;}
.x6{left:110.911988pt;}
.xf{left:144.026655pt;}
.x1e{left:148.093333pt;}
.x3{left:155.546655pt;}
.x7{left:182.586655pt;}
.x1f{left:194.240000pt;}
.xb{left:205.626655pt;}
.x4{left:217.306655pt;}
.x28{left:223.200000pt;}
.x20{left:246.466667pt;}
.x27{left:263.106667pt;}
.x19{left:274.720000pt;}
.x8{left:280.706655pt;}
.x21{left:292.613333pt;}
.x30{left:301.666667pt;}
.x1a{left:323.906667pt;}
.x3a{left:334.626667pt;}
.x22{left:344.826667pt;}
.x29{left:355.266667pt;}
.x13{left:358.946667pt;}
.x35{left:369.346667pt;}
.x1b{left:376.133333pt;}
.x9{left:384.066655pt;}
.x23{left:394.013333pt;}
.x2{left:400.546655pt;}
.x5{left:408.066655pt;}
.x2c{left:410.146667pt;}
.x1c{left:425.306667pt;}
.xc{left:432.066655pt;}
.xe{left:436.066655pt;}
.x36{left:446.973333pt;}
.x2d{left:478.493333pt;}
.x10{left:480.093321pt;}
.x16{left:494.173333pt;}
.x32{left:495.453333pt;}
.x2a{left:532.573333pt;}
.x3c{left:551.933333pt;}
.x37{left:553.213333pt;}
.x1d{left:572.866667pt;}
.x2e{left:587.293333pt;}
.x38{left:621.733333pt;}
.x15{left:635.173333pt;}
.x2f{left:655.653333pt;}
.x3d{left:665.413333pt;}
.x34{left:679.653333pt;}
.x2b{left:699.173333pt;}
.x17{left:722.053321pt;}
}




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