
    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_3123382eddb707e49b403d79.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_aac2a912037f6d9bf27d8ec1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976074;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_475cca8f7bd6187b5190e4e1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_9c5e06665877550ab358cf03.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923340;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_a888769e8afe49dab8e57dcf.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.172800px;}
.lsb{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.109200px;}
.lsc{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.360000px;}
.ls1{letter-spacing:20.880000px;}
.ls8{letter-spacing:167.321280px;}
.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;}
}
.ws7{word-spacing:-66.240000px;}
.ws4{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws6{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.669200px;}
.ws0{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.254600px;}
.ws3{word-spacing:-15.300000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._13{margin-left:-4.877760px;}
._11{margin-left:-3.772800px;}
._d{margin-left:-2.450880px;}
._0{margin-left:-1.258560px;}
._1{width:1.314720px;}
._3{width:2.925120px;}
._16{width:3.926400px;}
._9{width:4.972800px;}
._8{width:6.425280px;}
._7{width:7.485120px;}
._12{width:8.544960px;}
._15{width:9.548640px;}
._5{width:10.598400px;}
._6{width:11.789760px;}
._f{width:13.314240px;}
._4{width:15.265920px;}
._a{width:18.282240px;}
._e{width:19.945920px;}
._10{width:21.067200px;}
._b{width:22.256640px;}
._c{width:23.465760px;}
._18{width:58.222080px;}
._17{width:118.660800px;}
._14{width:253.331760px;}
._2{width:286.451760px;}
.fc8{color:rgb(238,0,0);}
.fc3{color:rgb(47,84,150);}
.fc5{color:rgb(0,112,192);}
.fc2{color:rgb(192,0,0);}
.fc7{color:transparent;}
.fc1{color:rgb(56,86,35);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y101{bottom:3.600000px;}
.y136{bottom:3.645000px;}
.y30{bottom:3.780000px;}
.y35{bottom:3.960000px;}
.y18{bottom:5.040000px;}
.yc1{bottom:9.720000px;}
.y182{bottom:9.765000px;}
.y1b{bottom:9.900000px;}
.y12e{bottom:13.140000px;}
.y137{bottom:13.185000px;}
.y14b{bottom:13.320000px;}
.y14e{bottom:22.500000px;}
.y135{bottom:22.545000px;}
.y3a{bottom:22.674000px;}
.y12f{bottom:22.680000px;}
.y2f{bottom:22.725000px;}
.y34{bottom:24.300000px;}
.y39{bottom:41.574000px;}
.y2e{bottom:41.625000px;}
.y33{bottom:43.560000px;}
.y9{bottom:56.340000px;}
.y38{bottom:60.654000px;}
.y2d{bottom:60.705000px;}
.y32{bottom:64.260000px;}
.y8{bottom:71.316000px;}
.y2c{bottom:79.605000px;}
.y37{bottom:79.914000px;}
.y2b{bottom:98.685000px;}
.y64{bottom:112.536000px;}
.y2a{bottom:117.585000px;}
.y8e{bottom:118.476000px;}
.y165{bottom:119.196000px;}
.y3b{bottom:119.556000px;}
.y18d{bottom:122.796000px;}
.ybf{bottom:123.156000px;}
.y193{bottom:123.696000px;}
.yfd{bottom:128.556000px;}
.y36{bottom:136.296000px;}
.y29{bottom:136.665000px;}
.y8d{bottom:137.376000px;}
.y164{bottom:138.276000px;}
.yc9{bottom:139.716000px;}
.yf3{bottom:140.076000px;}
.y18c{bottom:141.876000px;}
.ybe{bottom:142.056000px;}
.y192{bottom:144.216000px;}
.yfc{bottom:147.636000px;}
.y63{bottom:152.490000px;}
.y28{bottom:155.565000px;}
.y8c{bottom:156.450000px;}
.y163{bottom:157.170000px;}
.yc8{bottom:158.790000px;}
.yf2{bottom:158.970000px;}
.y18b{bottom:160.770000px;}
.ybd{bottom:160.950000px;}
.y191{bottom:163.110000px;}
.yfb{bottom:166.530000px;}
.y27{bottom:174.465000px;}
.y8b{bottom:175.350000px;}
.y162{bottom:176.250000px;}
.yf1{bottom:177.870000px;}
.y18a{bottom:179.850000px;}
.ybc{bottom:180.030000px;}
.y190{bottom:182.010000px;}
.y150{bottom:183.450000px;}
.y1b6{bottom:184.710000px;}
.yfa{bottom:185.610000px;}
.y62{bottom:192.450000px;}
.y26{bottom:193.545000px;}
.y8a{bottom:194.430000px;}
.y161{bottom:195.150000px;}
.yf0{bottom:196.950000px;}
.yc7{bottom:198.570000px;}
.y189{bottom:198.750000px;}
.ybb{bottom:198.930000px;}
.y18f{bottom:201.270000px;}
.y1b5{bottom:203.790000px;}
.yf9{bottom:204.510000px;}
.y14f{bottom:208.290000px;}
.y61{bottom:211.530000px;}
.y25{bottom:212.445000px;}
.y89{bottom:213.330000px;}
.y160{bottom:214.230000px;}
.yef{bottom:215.850000px;}
.y188{bottom:217.650000px;}
.yba{bottom:218.010000px;}
.yf8{bottom:223.410000px;}
.y60{bottom:230.610000px;}
.y24{bottom:231.525000px;}
.y1b4{bottom:231.690000px;}
.y88{bottom:232.230000px;}
.y31{bottom:232.950000px;}
.y15f{bottom:233.130000px;}
.yee{bottom:234.930000px;}
.y146{bottom:235.290000px;}
.y187{bottom:236.730000px;}
.yb9{bottom:236.910000px;}
.yc6{bottom:238.530000px;}
.y10f{bottom:239.970000px;}
.yf7{bottom:242.490000px;}
.y5f{bottom:249.510000px;}
.y125{bottom:250.230000px;}
.y23{bottom:250.425000px;}
.y1b3{bottom:250.770000px;}
.y87{bottom:251.310000px;}
.y15e{bottom:252.030000px;}
.y14d{bottom:252.390000px;}
.yed{bottom:253.830000px;}
.y18e{bottom:254.370000px;}
.y145{bottom:255.450000px;}
.y186{bottom:255.630000px;}
.yb8{bottom:255.810000px;}
.yc5{bottom:257.610000px;}
.y10e{bottom:259.050000px;}
.yf6{bottom:261.390000px;}
.y5e{bottom:268.590000px;}
.y124{bottom:269.310000px;}
.y22{bottom:269.325000px;}
.y86{bottom:270.210000px;}
.y15d{bottom:271.110000px;}
.yec{bottom:272.910000px;}
.y10d{bottom:274.350000px;}
.y185{bottom:274.710000px;}
.yb7{bottom:274.890000px;}
.y13a{bottom:276.150000px;}
.yc4{bottom:276.510000px;}
.y1b2{bottom:278.490000px;}
.yf5{bottom:280.470000px;}
.y5d{bottom:287.490000px;}
.y123{bottom:288.210000px;}
.y21{bottom:288.405000px;}
.y85{bottom:289.290000px;}
.y15c{bottom:290.010000px;}
.yeb{bottom:291.810000px;}
.y184{bottom:293.610000px;}
.yb6{bottom:293.790000px;}
.y139{bottom:295.050000px;}
.yf4{bottom:295.770000px;}
.y14c{bottom:296.310000px;}
.y1b1{bottom:297.750000px;}
.y112{bottom:301.530000px;}
.y144{bottom:305.490000px;}
.y122{bottom:307.290000px;}
.y20{bottom:307.335000px;}
.y84{bottom:308.190000px;}
.y15b{bottom:309.090000px;}
.y138{bottom:310.530000px;}
.yea{bottom:310.710000px;}
.yb5{bottom:312.870000px;}
.y183{bottom:313.410000px;}
.y1c{bottom:313.950000px;}
.yc3{bottom:316.650000px;}
.y111{bottom:320.610000px;}
.y14a{bottom:321.150000px;}
.y1b0{bottom:325.470000px;}
.y121{bottom:326.190000px;}
.y1f{bottom:326.415000px;}
.y5c{bottom:327.270000px;}
.y15a{bottom:327.990000px;}
.y181{bottom:329.070000px;}
.ye9{bottom:329.790000px;}
.y143{bottom:330.510000px;}
.yb4{bottom:331.770000px;}
.y134{bottom:334.290000px;}
.yc2{bottom:335.910000px;}
.y1af{bottom:344.775000px;}
.y1e{bottom:345.315000px;}
.y83{bottom:346.215000px;}
.y120{bottom:346.395000px;}
.y5b{bottom:346.575000px;}
.y159{bottom:346.935000px;}
.ye8{bottom:348.735000px;}
.yb3{bottom:350.715000px;}
.yc0{bottom:352.695000px;}
.y142{bottom:355.395000px;}
.y1d{bottom:364.215000px;}
.y82{bottom:365.115000px;}
.y5a{bottom:365.475000px;}
.y158{bottom:366.015000px;}
.ye7{bottom:367.815000px;}
.yb2{bottom:369.795000px;}
.y11f{bottom:371.415000px;}
.y1ae{bottom:372.495000px;}
.y133{bottom:378.255000px;}
.y81{bottom:380.415000px;}
.y180{bottom:384.195000px;}
.y59{bottom:384.375000px;}
.y157{bottom:384.915000px;}
.ye6{bottom:386.715000px;}
.yb1{bottom:388.695000px;}
.y1ad{bottom:391.575000px;}
.y11e{bottom:396.435000px;}
.y17f{bottom:403.095000px;}
.y58{bottom:403.455000px;}
.y156{bottom:403.995000px;}
.ye5{bottom:405.615000px;}
.y149{bottom:405.795000px;}
.yb0{bottom:407.775000px;}
.y141{bottom:407.955000px;}
.y80{bottom:416.595000px;}
.y1ac{bottom:419.475000px;}
.y11d{bottom:421.275000px;}
.y132{bottom:422.175000px;}
.y57{bottom:422.355000px;}
.y155{bottom:422.895000px;}
.ye4{bottom:424.695000px;}
.yaf{bottom:426.675000px;}
.y140{bottom:426.855000px;}
.y7f{bottom:435.495000px;}
.y1ab{bottom:438.555000px;}
.y56{bottom:441.435000px;}
.y154{bottom:441.795000px;}
.ye3{bottom:443.595000px;}
.yae{bottom:445.575000px;}
.y13f{bottom:445.935000px;}
.y11c{bottom:446.295000px;}
.y7e{bottom:454.575000px;}
.y55{bottom:460.335000px;}
.y153{bottom:460.875000px;}
.y17e{bottom:461.955000px;}
.ye2{bottom:462.675000px;}
.yad{bottom:464.655000px;}
.y13e{bottom:464.835000px;}
.y131{bottom:466.095000px;}
.y1aa{bottom:466.455000px;}
.y11b{bottom:471.315000px;}
.y7d{bottom:473.475000px;}
.y54{bottom:479.235000px;}
.y152{bottom:479.775000px;}
.y17d{bottom:481.035000px;}
.ye1{bottom:481.575000px;}
.yac{bottom:483.555000px;}
.y13d{bottom:483.915000px;}
.y1a9{bottom:485.535000px;}
.y7c{bottom:492.375000px;}
.y11a{bottom:498.855000px;}
.y17c{bottom:499.935000px;}
.ye0{bottom:500.475000px;}
.y148{bottom:500.655000px;}
.yab{bottom:502.635000px;}
.y13c{bottom:502.815000px;}
.y130{bottom:510.015000px;}
.y7b{bottom:511.455000px;}
.y1a8{bottom:513.255000px;}
.y147{bottom:515.955000px;}
.y119{bottom:517.755000px;}
.y13b{bottom:518.115000px;}
.y17b{bottom:519.015000px;}
.y53{bottom:519.195000px;}
.ydf{bottom:519.555000px;}
.yaa{bottom:521.535000px;}
.y7a{bottom:530.355000px;}
.y1a7{bottom:532.515000px;}
.y118{bottom:536.655000px;}
.y17a{bottom:537.915000px;}
.y52{bottom:538.275000px;}
.yde{bottom:538.455000px;}
.ya9{bottom:540.435000px;}
.y79{bottom:549.435000px;}
.y12d{bottom:553.935000px;}
.y117{bottom:555.735000px;}
.y51{bottom:557.175000px;}
.ydd{bottom:557.535000px;}
.ya8{bottom:559.515000px;}
.y1a6{bottom:560.235000px;}
.y78{bottom:568.335000px;}
.y116{bottom:574.635000px;}
.y50{bottom:576.255000px;}
.ydc{bottom:576.435000px;}
.y179{bottom:577.695000px;}
.ya7{bottom:578.415000px;}
.y1a5{bottom:579.495000px;}
.y10c{bottom:591.555000px;}
.y115{bottom:593.715000px;}
.y4f{bottom:595.155000px;}
.ydb{bottom:595.335000px;}
.y178{bottom:596.955000px;}
.ya6{bottom:597.495000px;}
.y12c{bottom:600.555000px;}
.y1a4{bottom:607.245000px;}
.y77{bottom:608.145000px;}
.y151{bottom:609.045000px;}
.y10b{bottom:611.745000px;}
.y114{bottom:612.645000px;}
.y4e{bottom:614.265000px;}
.yda{bottom:614.445000px;}
.y177{bottom:615.885000px;}
.ya5{bottom:616.425000px;}
.y12b{bottom:619.485000px;}
.y1a3{bottom:626.325000px;}
.y76{bottom:627.225000px;}
.y113{bottom:627.945000px;}
.y4d{bottom:633.165000px;}
.yd9{bottom:633.345000px;}
.y176{bottom:634.965000px;}
.ya4{bottom:635.505000px;}
.y10a{bottom:636.765000px;}
.y12a{bottom:638.385000px;}
.y75{bottom:646.305000px;}
.y4c{bottom:652.065000px;}
.yd8{bottom:652.425000px;}
.y175{bottom:653.865000px;}
.y1a2{bottom:654.225000px;}
.ya3{bottom:654.405000px;}
.y129{bottom:657.465000px;}
.y109{bottom:661.785000px;}
.y74{bottom:665.205000px;}
.y4b{bottom:671.145000px;}
.yd7{bottom:671.325000px;}
.y174{bottom:672.765000px;}
.ya2{bottom:673.305000px;}
.y128{bottom:676.365000px;}
.y73{bottom:684.285000px;}
.y108{bottom:686.625000px;}
.yd6{bottom:690.225000px;}
.ya1{bottom:692.385000px;}
.y1a{bottom:693.465000px;}
.y127{bottom:695.445000px;}
.y1a1{bottom:701.205000px;}
.y72{bottom:703.185000px;}
.y110{bottom:707.145000px;}
.yd5{bottom:709.305000px;}
.y4a{bottom:710.925000px;}
.ya0{bottom:711.285000px;}
.y107{bottom:711.645000px;}
.y173{bottom:712.545000px;}
.y126{bottom:714.345000px;}
.y1a0{bottom:720.285000px;}
.y71{bottom:722.085000px;}
.yd4{bottom:728.205000px;}
.y19{bottom:729.645000px;}
.y49{bottom:730.005000px;}
.y9f{bottom:730.365000px;}
.y172{bottom:731.805000px;}
.y106{bottom:736.665000px;}
.y17{bottom:745.665000px;}
.yd3{bottom:747.285000px;}
.y19f{bottom:748.185000px;}
.y48{bottom:749.085000px;}
.y9e{bottom:749.265000px;}
.y171{bottom:750.705000px;}
.y105{bottom:761.685000px;}
.y70{bottom:762.225000px;}
.yd2{bottom:766.185000px;}
.y47{bottom:767.985000px;}
.y9d{bottom:768.165000px;}
.y170{bottom:769.785000px;}
.y16{bottom:771.225000px;}
.y19e{bottom:772.665000px;}
.yd1{bottom:785.265000px;}
.y104{bottom:786.525000px;}
.y46{bottom:787.065000px;}
.y9c{bottom:787.245000px;}
.y15{bottom:788.505000px;}
.y16f{bottom:788.685000px;}
.y6f{bottom:802.005000px;}
.yd0{bottom:804.165000px;}
.y14{bottom:805.785000px;}
.y45{bottom:805.965000px;}
.y9b{bottom:806.145000px;}
.y16e{bottom:807.585000px;}
.y19d{bottom:809.025000px;}
.y103{bottom:811.545000px;}
.y6e{bottom:821.085000px;}
.ycf{bottom:823.065000px;}
.y9a{bottom:825.225000px;}
.y16d{bottom:826.665000px;}
.y13{bottom:828.285000px;}
.y19c{bottom:829.545000px;}
.y102{bottom:836.565000px;}
.y6d{bottom:839.985000px;}
.yce{bottom:842.145000px;}
.y99{bottom:844.125000px;}
.y12{bottom:845.385000px;}
.y44{bottom:845.745000px;}
.y19b{bottom:850.065000px;}
.y6c{bottom:859.065000px;}
.ycd{bottom:861.045000px;}
.y100{bottom:861.585000px;}
.y11{bottom:862.665000px;}
.y98{bottom:863.025000px;}
.y43{bottom:864.825000px;}
.y16c{bottom:866.445000px;}
.y19a{bottom:869.325000px;}
.y10{bottom:879.990000px;}
.ycc{bottom:880.170000px;}
.y97{bottom:882.150000px;}
.y42{bottom:883.950000px;}
.y16b{bottom:885.570000px;}
.y199{bottom:886.110000px;}
.yff{bottom:886.470000px;}
.yf{bottom:892.410000px;}
.y6b{bottom:898.890000px;}
.ycb{bottom:899.070000px;}
.y96{bottom:901.050000px;}
.y41{bottom:902.850000px;}
.y16a{bottom:904.650000px;}
.ye{bottom:910.950000px;}
.yfe{bottom:911.490000px;}
.y6a{bottom:917.970000px;}
.y95{bottom:920.130000px;}
.y40{bottom:921.930000px;}
.y198{bottom:922.470000px;}
.y169{bottom:923.550000px;}
.yd{bottom:930.930000px;}
.y69{bottom:937.050000px;}
.y94{bottom:939.030000px;}
.y3f{bottom:940.830000px;}
.y168{bottom:942.450000px;}
.y197{bottom:942.810000px;}
.y68{bottom:955.950000px;}
.y93{bottom:957.930000px;}
.y3e{bottom:959.730000px;}
.yc{bottom:961.890000px;}
.y67{bottom:975.030000px;}
.y92{bottom:977.010000px;}
.y196{bottom:980.790000px;}
.y167{bottom:982.590000px;}
.yb{bottom:993.030000px;}
.y66{bottom:993.930000px;}
.y91{bottom:995.910000px;}
.y3d{bottom:996.090000px;}
.y166{bottom:997.890000px;}
.y195{bottom:1000.050000px;}
.yca{bottom:1014.810000px;}
.y90{bottom:1014.990000px;}
.y194{bottom:1016.790000px;}
.ya{bottom:1023.990000px;}
.y3c{bottom:1032.450000px;}
.y65{bottom:1033.710000px;}
.y8f{bottom:1033.890000px;}
.y7{bottom:1053.690000px;}
.y6{bottom:1072.950000px;}
.y5{bottom:1092.030000px;}
.y4{bottom:1111.290000px;}
.y3{bottom:1136.850000px;}
.y2{bottom:1167.840000px;}
.y1{bottom:1193.580000px;}
.h14{height:18.900000px;}
.h13{height:18.936000px;}
.h12{height:19.080000px;}
.hb{height:21.600000px;}
.ha{height:27.147656px;}
.hc{height:32.400000px;}
.h19{height:32.436000px;}
.h18{height:37.800000px;}
.h16{height:37.836000px;}
.h15{height:37.980000px;}
.h17{height:38.016000px;}
.h8{height:41.726953px;}
.h6{height:46.251562px;}
.h2{height:46.736719px;}
.h10{height:46.866094px;}
.h11{height:49.065469px;}
.he{height:50.273438px;}
.h4{height:50.800781px;}
.h9{height:53.224453px;}
.h1a{height:65.884219px;}
.h5{height:67.824844px;}
.h7{height:76.201172px;}
.h3{height:81.000000px;}
.hf{height:96.660000px;}
.hd{height:379.515000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:57.960000px;}
.wf{width:59.940000px;}
.wc{width:69.120000px;}
.we{width:93.816000px;}
.w7{width:101.736000px;}
.w12{width:111.780000px;}
.w8{width:111.816000px;}
.w16{width:113.400000px;}
.w14{width:117.180000px;}
.w6{width:125.460000px;}
.w17{width:128.376000px;}
.w15{width:132.156000px;}
.wa{width:158.070000px;}
.w13{width:160.200000px;}
.w10{width:170.130000px;}
.w5{width:194.250000px;}
.wb{width:196.590000px;}
.w9{width:279.030000px;}
.w11{width:307.830000px;}
.w3{width:675.645000px;}
.w4{width:676.365000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:1.080000px;}
.x39{left:3.285000px;}
.x14{left:7.740000px;}
.x17{left:16.560000px;}
.x28{left:18.900000px;}
.x26{left:24.300000px;}
.x2c{left:27.180000px;}
.x19{left:30.240000px;}
.x35{left:35.280000px;}
.x2a{left:36.750000px;}
.x33{left:39.960000px;}
.x32{left:43.374000px;}
.x37{left:46.620000px;}
.x24{left:49.854000px;}
.x2f{left:77.754000px;}
.x20{left:80.634000px;}
.x13{left:108.756000px;}
.x9{left:111.635987px;}
.x16{left:115.416000px;}
.xd{left:134.315987px;}
.xb{left:153.929987px;}
.xa{left:159.149987px;}
.x11{left:164.549987px;}
.x2{left:179.129987px;}
.x8{left:184.529987px;}
.x15{left:189.029987px;}
.xe{left:194.069987px;}
.x12{left:222.689987px;}
.x3{left:232.769987px;}
.x5{left:265.349987px;}
.xf{left:267.689987px;}
.xc{left:276.149987px;}
.x1{left:279.254987px;}
.x10{left:286.274987px;}
.x6{left:310.034987px;}
.x18{left:313.455000px;}
.x25{left:315.795000px;}
.x4{left:373.214987px;}
.x27{left:388.695000px;}
.x21{left:398.235000px;}
.x34{left:400.215000px;}
.x30{left:427.035000px;}
.x1a{left:442.695000px;}
.x7{left:446.474987px;}
.x29{left:450.435000px;}
.x31{left:532.545000px;}
.x36{left:536.145000px;}
.x1c{left:548.205000px;}
.x22{left:560.085000px;}
.x2b{left:611.565000px;}
.x38{left:653.325000px;}
.x1d{left:744.809987px;}
.x2d{left:785.129987px;}
.x1f{left:810.149987px;}
.x1e{left:859.679987px;}
.x23{left:873.179987px;}
.x2e{left:886.679987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.153600pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.097067pt;}
.lsc{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1{letter-spacing:18.560000pt;}
.ls8{letter-spacing:148.730027pt;}
.ws7{word-spacing:-58.880000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws6{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.817067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.448533pt;}
.ws3{word-spacing:-13.600000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._13{margin-left:-4.335787pt;}
._11{margin-left:-3.353600pt;}
._d{margin-left:-2.178560pt;}
._0{margin-left:-1.118720pt;}
._1{width:1.168640pt;}
._3{width:2.600107pt;}
._16{width:3.490133pt;}
._9{width:4.420267pt;}
._8{width:5.711360pt;}
._7{width:6.653440pt;}
._12{width:7.595520pt;}
._15{width:8.487680pt;}
._5{width:9.420800pt;}
._6{width:10.479787pt;}
._f{width:11.834880pt;}
._4{width:13.569707pt;}
._a{width:16.250880pt;}
._e{width:17.729707pt;}
._10{width:18.726400pt;}
._b{width:19.783680pt;}
._c{width:20.858453pt;}
._18{width:51.752960pt;}
._17{width:105.476267pt;}
._14{width:225.183787pt;}
._2{width:254.623787pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y101{bottom:3.200000pt;}
.y136{bottom:3.240000pt;}
.y30{bottom:3.360000pt;}
.y35{bottom:3.520000pt;}
.y18{bottom:4.480000pt;}
.yc1{bottom:8.640000pt;}
.y182{bottom:8.680000pt;}
.y1b{bottom:8.800000pt;}
.y12e{bottom:11.680000pt;}
.y137{bottom:11.720000pt;}
.y14b{bottom:11.840000pt;}
.y14e{bottom:20.000000pt;}
.y135{bottom:20.040000pt;}
.y3a{bottom:20.154667pt;}
.y12f{bottom:20.160000pt;}
.y2f{bottom:20.200000pt;}
.y34{bottom:21.600000pt;}
.y39{bottom:36.954667pt;}
.y2e{bottom:37.000000pt;}
.y33{bottom:38.720000pt;}
.y9{bottom:50.080000pt;}
.y38{bottom:53.914667pt;}
.y2d{bottom:53.960000pt;}
.y32{bottom:57.120000pt;}
.y8{bottom:63.392000pt;}
.y2c{bottom:70.760000pt;}
.y37{bottom:71.034667pt;}
.y2b{bottom:87.720000pt;}
.y64{bottom:100.032000pt;}
.y2a{bottom:104.520000pt;}
.y8e{bottom:105.312000pt;}
.y165{bottom:105.952000pt;}
.y3b{bottom:106.272000pt;}
.y18d{bottom:109.152000pt;}
.ybf{bottom:109.472000pt;}
.y193{bottom:109.952000pt;}
.yfd{bottom:114.272000pt;}
.y36{bottom:121.152000pt;}
.y29{bottom:121.480000pt;}
.y8d{bottom:122.112000pt;}
.y164{bottom:122.912000pt;}
.yc9{bottom:124.192000pt;}
.yf3{bottom:124.512000pt;}
.y18c{bottom:126.112000pt;}
.ybe{bottom:126.272000pt;}
.y192{bottom:128.192000pt;}
.yfc{bottom:131.232000pt;}
.y63{bottom:135.546667pt;}
.y28{bottom:138.280000pt;}
.y8c{bottom:139.066667pt;}
.y163{bottom:139.706667pt;}
.yc8{bottom:141.146667pt;}
.yf2{bottom:141.306667pt;}
.y18b{bottom:142.906667pt;}
.ybd{bottom:143.066667pt;}
.y191{bottom:144.986667pt;}
.yfb{bottom:148.026667pt;}
.y27{bottom:155.080000pt;}
.y8b{bottom:155.866667pt;}
.y162{bottom:156.666667pt;}
.yf1{bottom:158.106667pt;}
.y18a{bottom:159.866667pt;}
.ybc{bottom:160.026667pt;}
.y190{bottom:161.786667pt;}
.y150{bottom:163.066667pt;}
.y1b6{bottom:164.186667pt;}
.yfa{bottom:164.986667pt;}
.y62{bottom:171.066667pt;}
.y26{bottom:172.040000pt;}
.y8a{bottom:172.826667pt;}
.y161{bottom:173.466667pt;}
.yf0{bottom:175.066667pt;}
.yc7{bottom:176.506667pt;}
.y189{bottom:176.666667pt;}
.ybb{bottom:176.826667pt;}
.y18f{bottom:178.906667pt;}
.y1b5{bottom:181.146667pt;}
.yf9{bottom:181.786667pt;}
.y14f{bottom:185.146667pt;}
.y61{bottom:188.026667pt;}
.y25{bottom:188.840000pt;}
.y89{bottom:189.626667pt;}
.y160{bottom:190.426667pt;}
.yef{bottom:191.866667pt;}
.y188{bottom:193.466667pt;}
.yba{bottom:193.786667pt;}
.yf8{bottom:198.586667pt;}
.y60{bottom:204.986667pt;}
.y24{bottom:205.800000pt;}
.y1b4{bottom:205.946667pt;}
.y88{bottom:206.426667pt;}
.y31{bottom:207.066667pt;}
.y15f{bottom:207.226667pt;}
.yee{bottom:208.826667pt;}
.y146{bottom:209.146667pt;}
.y187{bottom:210.426667pt;}
.yb9{bottom:210.586667pt;}
.yc6{bottom:212.026667pt;}
.y10f{bottom:213.306667pt;}
.yf7{bottom:215.546667pt;}
.y5f{bottom:221.786667pt;}
.y125{bottom:222.426667pt;}
.y23{bottom:222.600000pt;}
.y1b3{bottom:222.906667pt;}
.y87{bottom:223.386667pt;}
.y15e{bottom:224.026667pt;}
.y14d{bottom:224.346667pt;}
.yed{bottom:225.626667pt;}
.y18e{bottom:226.106667pt;}
.y145{bottom:227.066667pt;}
.y186{bottom:227.226667pt;}
.yb8{bottom:227.386667pt;}
.yc5{bottom:228.986667pt;}
.y10e{bottom:230.266667pt;}
.yf6{bottom:232.346667pt;}
.y5e{bottom:238.746667pt;}
.y124{bottom:239.386667pt;}
.y22{bottom:239.400000pt;}
.y86{bottom:240.186667pt;}
.y15d{bottom:240.986667pt;}
.yec{bottom:242.586667pt;}
.y10d{bottom:243.866667pt;}
.y185{bottom:244.186667pt;}
.yb7{bottom:244.346667pt;}
.y13a{bottom:245.466667pt;}
.yc4{bottom:245.786667pt;}
.y1b2{bottom:247.546667pt;}
.yf5{bottom:249.306667pt;}
.y5d{bottom:255.546667pt;}
.y123{bottom:256.186667pt;}
.y21{bottom:256.360000pt;}
.y85{bottom:257.146667pt;}
.y15c{bottom:257.786667pt;}
.yeb{bottom:259.386667pt;}
.y184{bottom:260.986667pt;}
.yb6{bottom:261.146667pt;}
.y139{bottom:262.266667pt;}
.yf4{bottom:262.906667pt;}
.y14c{bottom:263.386667pt;}
.y1b1{bottom:264.666667pt;}
.y112{bottom:268.026667pt;}
.y144{bottom:271.546667pt;}
.y122{bottom:273.146667pt;}
.y20{bottom:273.186667pt;}
.y84{bottom:273.946667pt;}
.y15b{bottom:274.746667pt;}
.y138{bottom:276.026667pt;}
.yea{bottom:276.186667pt;}
.yb5{bottom:278.106667pt;}
.y183{bottom:278.586667pt;}
.y1c{bottom:279.066667pt;}
.yc3{bottom:281.466667pt;}
.y111{bottom:284.986667pt;}
.y14a{bottom:285.466667pt;}
.y1b0{bottom:289.306667pt;}
.y121{bottom:289.946667pt;}
.y1f{bottom:290.146667pt;}
.y5c{bottom:290.906667pt;}
.y15a{bottom:291.546667pt;}
.y181{bottom:292.506667pt;}
.ye9{bottom:293.146667pt;}
.y143{bottom:293.786667pt;}
.yb4{bottom:294.906667pt;}
.y134{bottom:297.146667pt;}
.yc2{bottom:298.586667pt;}
.y1af{bottom:306.466667pt;}
.y1e{bottom:306.946667pt;}
.y83{bottom:307.746667pt;}
.y120{bottom:307.906667pt;}
.y5b{bottom:308.066667pt;}
.y159{bottom:308.386667pt;}
.ye8{bottom:309.986667pt;}
.yb3{bottom:311.746667pt;}
.yc0{bottom:313.506667pt;}
.y142{bottom:315.906667pt;}
.y1d{bottom:323.746667pt;}
.y82{bottom:324.546667pt;}
.y5a{bottom:324.866667pt;}
.y158{bottom:325.346667pt;}
.ye7{bottom:326.946667pt;}
.yb2{bottom:328.706667pt;}
.y11f{bottom:330.146667pt;}
.y1ae{bottom:331.106667pt;}
.y133{bottom:336.226667pt;}
.y81{bottom:338.146667pt;}
.y180{bottom:341.506667pt;}
.y59{bottom:341.666667pt;}
.y157{bottom:342.146667pt;}
.ye6{bottom:343.746667pt;}
.yb1{bottom:345.506667pt;}
.y1ad{bottom:348.066667pt;}
.y11e{bottom:352.386667pt;}
.y17f{bottom:358.306667pt;}
.y58{bottom:358.626667pt;}
.y156{bottom:359.106667pt;}
.ye5{bottom:360.546667pt;}
.y149{bottom:360.706667pt;}
.yb0{bottom:362.466667pt;}
.y141{bottom:362.626667pt;}
.y80{bottom:370.306667pt;}
.y1ac{bottom:372.866667pt;}
.y11d{bottom:374.466667pt;}
.y132{bottom:375.266667pt;}
.y57{bottom:375.426667pt;}
.y155{bottom:375.906667pt;}
.ye4{bottom:377.506667pt;}
.yaf{bottom:379.266667pt;}
.y140{bottom:379.426667pt;}
.y7f{bottom:387.106667pt;}
.y1ab{bottom:389.826667pt;}
.y56{bottom:392.386667pt;}
.y154{bottom:392.706667pt;}
.ye3{bottom:394.306667pt;}
.yae{bottom:396.066667pt;}
.y13f{bottom:396.386667pt;}
.y11c{bottom:396.706667pt;}
.y7e{bottom:404.066667pt;}
.y55{bottom:409.186667pt;}
.y153{bottom:409.666667pt;}
.y17e{bottom:410.626667pt;}
.ye2{bottom:411.266667pt;}
.yad{bottom:413.026667pt;}
.y13e{bottom:413.186667pt;}
.y131{bottom:414.306667pt;}
.y1aa{bottom:414.626667pt;}
.y11b{bottom:418.946667pt;}
.y7d{bottom:420.866667pt;}
.y54{bottom:425.986667pt;}
.y152{bottom:426.466667pt;}
.y17d{bottom:427.586667pt;}
.ye1{bottom:428.066667pt;}
.yac{bottom:429.826667pt;}
.y13d{bottom:430.146667pt;}
.y1a9{bottom:431.586667pt;}
.y7c{bottom:437.666667pt;}
.y11a{bottom:443.426667pt;}
.y17c{bottom:444.386667pt;}
.ye0{bottom:444.866667pt;}
.y148{bottom:445.026667pt;}
.yab{bottom:446.786667pt;}
.y13c{bottom:446.946667pt;}
.y130{bottom:453.346667pt;}
.y7b{bottom:454.626667pt;}
.y1a8{bottom:456.226667pt;}
.y147{bottom:458.626667pt;}
.y119{bottom:460.226667pt;}
.y13b{bottom:460.546667pt;}
.y17b{bottom:461.346667pt;}
.y53{bottom:461.506667pt;}
.ydf{bottom:461.826667pt;}
.yaa{bottom:463.586667pt;}
.y7a{bottom:471.426667pt;}
.y1a7{bottom:473.346667pt;}
.y118{bottom:477.026667pt;}
.y17a{bottom:478.146667pt;}
.y52{bottom:478.466667pt;}
.yde{bottom:478.626667pt;}
.ya9{bottom:480.386667pt;}
.y79{bottom:488.386667pt;}
.y12d{bottom:492.386667pt;}
.y117{bottom:493.986667pt;}
.y51{bottom:495.266667pt;}
.ydd{bottom:495.586667pt;}
.ya8{bottom:497.346667pt;}
.y1a6{bottom:497.986667pt;}
.y78{bottom:505.186667pt;}
.y116{bottom:510.786667pt;}
.y50{bottom:512.226667pt;}
.ydc{bottom:512.386667pt;}
.y179{bottom:513.506667pt;}
.ya7{bottom:514.146667pt;}
.y1a5{bottom:515.106667pt;}
.y10c{bottom:525.826667pt;}
.y115{bottom:527.746667pt;}
.y4f{bottom:529.026667pt;}
.ydb{bottom:529.186667pt;}
.y178{bottom:530.626667pt;}
.ya6{bottom:531.106667pt;}
.y12c{bottom:533.826667pt;}
.y1a4{bottom:539.773333pt;}
.y77{bottom:540.573333pt;}
.y151{bottom:541.373333pt;}
.y10b{bottom:543.773333pt;}
.y114{bottom:544.573333pt;}
.y4e{bottom:546.013333pt;}
.yda{bottom:546.173333pt;}
.y177{bottom:547.453333pt;}
.ya5{bottom:547.933333pt;}
.y12b{bottom:550.653333pt;}
.y1a3{bottom:556.733333pt;}
.y76{bottom:557.533333pt;}
.y113{bottom:558.173333pt;}
.y4d{bottom:562.813333pt;}
.yd9{bottom:562.973333pt;}
.y176{bottom:564.413333pt;}
.ya4{bottom:564.893333pt;}
.y10a{bottom:566.013333pt;}
.y12a{bottom:567.453333pt;}
.y75{bottom:574.493333pt;}
.y4c{bottom:579.613333pt;}
.yd8{bottom:579.933333pt;}
.y175{bottom:581.213333pt;}
.y1a2{bottom:581.533333pt;}
.ya3{bottom:581.693333pt;}
.y129{bottom:584.413333pt;}
.y109{bottom:588.253333pt;}
.y74{bottom:591.293333pt;}
.y4b{bottom:596.573333pt;}
.yd7{bottom:596.733333pt;}
.y174{bottom:598.013333pt;}
.ya2{bottom:598.493333pt;}
.y128{bottom:601.213333pt;}
.y73{bottom:608.253333pt;}
.y108{bottom:610.333333pt;}
.yd6{bottom:613.533333pt;}
.ya1{bottom:615.453333pt;}
.y1a{bottom:616.413333pt;}
.y127{bottom:618.173333pt;}
.y1a1{bottom:623.293333pt;}
.y72{bottom:625.053333pt;}
.y110{bottom:628.573333pt;}
.yd5{bottom:630.493333pt;}
.y4a{bottom:631.933333pt;}
.ya0{bottom:632.253333pt;}
.y107{bottom:632.573333pt;}
.y173{bottom:633.373333pt;}
.y126{bottom:634.973333pt;}
.y1a0{bottom:640.253333pt;}
.y71{bottom:641.853333pt;}
.yd4{bottom:647.293333pt;}
.y19{bottom:648.573333pt;}
.y49{bottom:648.893333pt;}
.y9f{bottom:649.213333pt;}
.y172{bottom:650.493333pt;}
.y106{bottom:654.813333pt;}
.y17{bottom:662.813333pt;}
.yd3{bottom:664.253333pt;}
.y19f{bottom:665.053333pt;}
.y48{bottom:665.853333pt;}
.y9e{bottom:666.013333pt;}
.y171{bottom:667.293333pt;}
.y105{bottom:677.053333pt;}
.y70{bottom:677.533333pt;}
.yd2{bottom:681.053333pt;}
.y47{bottom:682.653333pt;}
.y9d{bottom:682.813333pt;}
.y170{bottom:684.253333pt;}
.y16{bottom:685.533333pt;}
.y19e{bottom:686.813333pt;}
.yd1{bottom:698.013333pt;}
.y104{bottom:699.133333pt;}
.y46{bottom:699.613333pt;}
.y9c{bottom:699.773333pt;}
.y15{bottom:700.893333pt;}
.y16f{bottom:701.053333pt;}
.y6f{bottom:712.893333pt;}
.yd0{bottom:714.813333pt;}
.y14{bottom:716.253333pt;}
.y45{bottom:716.413333pt;}
.y9b{bottom:716.573333pt;}
.y16e{bottom:717.853333pt;}
.y19d{bottom:719.133333pt;}
.y103{bottom:721.373333pt;}
.y6e{bottom:729.853333pt;}
.ycf{bottom:731.613333pt;}
.y9a{bottom:733.533333pt;}
.y16d{bottom:734.813333pt;}
.y13{bottom:736.253333pt;}
.y19c{bottom:737.373333pt;}
.y102{bottom:743.613333pt;}
.y6d{bottom:746.653333pt;}
.yce{bottom:748.573333pt;}
.y99{bottom:750.333333pt;}
.y12{bottom:751.453333pt;}
.y44{bottom:751.773333pt;}
.y19b{bottom:755.613333pt;}
.y6c{bottom:763.613333pt;}
.ycd{bottom:765.373333pt;}
.y100{bottom:765.853333pt;}
.y11{bottom:766.813333pt;}
.y98{bottom:767.133333pt;}
.y43{bottom:768.733333pt;}
.y16c{bottom:770.173333pt;}
.y19a{bottom:772.733333pt;}
.y10{bottom:782.213333pt;}
.ycc{bottom:782.373333pt;}
.y97{bottom:784.133333pt;}
.y42{bottom:785.733333pt;}
.y16b{bottom:787.173333pt;}
.y199{bottom:787.653333pt;}
.yff{bottom:787.973333pt;}
.yf{bottom:793.253333pt;}
.y6b{bottom:799.013333pt;}
.ycb{bottom:799.173333pt;}
.y96{bottom:800.933333pt;}
.y41{bottom:802.533333pt;}
.y16a{bottom:804.133333pt;}
.ye{bottom:809.733333pt;}
.yfe{bottom:810.213333pt;}
.y6a{bottom:815.973333pt;}
.y95{bottom:817.893333pt;}
.y40{bottom:819.493333pt;}
.y198{bottom:819.973333pt;}
.y169{bottom:820.933333pt;}
.yd{bottom:827.493333pt;}
.y69{bottom:832.933333pt;}
.y94{bottom:834.693333pt;}
.y3f{bottom:836.293333pt;}
.y168{bottom:837.733333pt;}
.y197{bottom:838.053333pt;}
.y68{bottom:849.733333pt;}
.y93{bottom:851.493333pt;}
.y3e{bottom:853.093333pt;}
.yc{bottom:855.013333pt;}
.y67{bottom:866.693333pt;}
.y92{bottom:868.453333pt;}
.y196{bottom:871.813333pt;}
.y167{bottom:873.413333pt;}
.yb{bottom:882.693333pt;}
.y66{bottom:883.493333pt;}
.y91{bottom:885.253333pt;}
.y3d{bottom:885.413333pt;}
.y166{bottom:887.013333pt;}
.y195{bottom:888.933333pt;}
.yca{bottom:902.053333pt;}
.y90{bottom:902.213333pt;}
.y194{bottom:903.813333pt;}
.ya{bottom:910.213333pt;}
.y3c{bottom:917.733333pt;}
.y65{bottom:918.853333pt;}
.y8f{bottom:919.013333pt;}
.y7{bottom:936.613333pt;}
.y6{bottom:953.733333pt;}
.y5{bottom:970.693333pt;}
.y4{bottom:987.813333pt;}
.y3{bottom:1010.533333pt;}
.y2{bottom:1038.080000pt;}
.y1{bottom:1060.960000pt;}
.h14{height:16.800000pt;}
.h13{height:16.832000pt;}
.h12{height:16.960000pt;}
.hb{height:19.200000pt;}
.ha{height:24.131250pt;}
.hc{height:28.800000pt;}
.h19{height:28.832000pt;}
.h18{height:33.600000pt;}
.h16{height:33.632000pt;}
.h15{height:33.760000pt;}
.h17{height:33.792000pt;}
.h8{height:37.090625pt;}
.h6{height:41.112500pt;}
.h2{height:41.543750pt;}
.h10{height:41.658750pt;}
.h11{height:43.613750pt;}
.he{height:44.687500pt;}
.h4{height:45.156250pt;}
.h9{height:47.310625pt;}
.h1a{height:58.563750pt;}
.h5{height:60.288750pt;}
.h7{height:67.734375pt;}
.h3{height:72.000000pt;}
.hf{height:85.920000pt;}
.hd{height:337.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:51.520000pt;}
.wf{width:53.280000pt;}
.wc{width:61.440000pt;}
.we{width:83.392000pt;}
.w7{width:90.432000pt;}
.w12{width:99.360000pt;}
.w8{width:99.392000pt;}
.w16{width:100.800000pt;}
.w14{width:104.160000pt;}
.w6{width:111.520000pt;}
.w17{width:114.112000pt;}
.w15{width:117.472000pt;}
.wa{width:140.506667pt;}
.w13{width:142.400000pt;}
.w10{width:151.226667pt;}
.w5{width:172.666667pt;}
.wb{width:174.746667pt;}
.w9{width:248.026667pt;}
.w11{width:273.626667pt;}
.w3{width:600.573333pt;}
.w4{width:601.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:0.960000pt;}
.x39{left:2.920000pt;}
.x14{left:6.880000pt;}
.x17{left:14.720000pt;}
.x28{left:16.800000pt;}
.x26{left:21.600000pt;}
.x2c{left:24.160000pt;}
.x19{left:26.880000pt;}
.x35{left:31.360000pt;}
.x2a{left:32.666667pt;}
.x33{left:35.520000pt;}
.x32{left:38.554667pt;}
.x37{left:41.440000pt;}
.x24{left:44.314667pt;}
.x2f{left:69.114667pt;}
.x20{left:71.674667pt;}
.x13{left:96.672000pt;}
.x9{left:99.231988pt;}
.x16{left:102.592000pt;}
.xd{left:119.391988pt;}
.xb{left:136.826655pt;}
.xa{left:141.466655pt;}
.x11{left:146.266655pt;}
.x2{left:159.226655pt;}
.x8{left:164.026655pt;}
.x15{left:168.026655pt;}
.xe{left:172.506655pt;}
.x12{left:197.946655pt;}
.x3{left:206.906655pt;}
.x5{left:235.866655pt;}
.xf{left:237.946655pt;}
.xc{left:245.466655pt;}
.x1{left:248.226655pt;}
.x10{left:254.466655pt;}
.x6{left:275.586655pt;}
.x18{left:278.626667pt;}
.x25{left:280.706667pt;}
.x4{left:331.746655pt;}
.x27{left:345.506667pt;}
.x21{left:353.986667pt;}
.x34{left:355.746667pt;}
.x30{left:379.586667pt;}
.x1a{left:393.506667pt;}
.x7{left:396.866655pt;}
.x29{left:400.386667pt;}
.x31{left:473.373333pt;}
.x36{left:476.573333pt;}
.x1c{left:487.293333pt;}
.x22{left:497.853333pt;}
.x2b{left:543.613333pt;}
.x38{left:580.733333pt;}
.x1d{left:662.053322pt;}
.x2d{left:697.893322pt;}
.x1f{left:720.133322pt;}
.x1e{left:764.159988pt;}
.x23{left:776.159988pt;}
.x2e{left:788.159988pt;}
}




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