
    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_3a08ddf2d618888720c96fe3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_51ddaef8b4f9078b05aff817.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_e971f652d578fbf288eb489c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_cb4d798cce288b1142f7dc83.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff6{font-family:ff6;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;}
@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_a1a030b23d805e59d4961f20.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-0.972000px;}
.ls15{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.498000px;}
.lsa{letter-spacing:-0.486600px;}
.ls12{letter-spacing:-0.466800px;}
.lsd{letter-spacing:-0.020160px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000003px;}
.ls11{letter-spacing:0.020160px;}
.ls3{letter-spacing:0.023040px;}
.ls1a{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.466800px;}
.ls16{letter-spacing:0.486600px;}
.ls0{letter-spacing:0.498240px;}
.lse{letter-spacing:0.507000px;}
.ls8{letter-spacing:0.720000px;}
.ls14{letter-spacing:5.051520px;}
.lsf{letter-spacing:7.920000px;}
.ls19{letter-spacing:16.306560px;}
.ls18{letter-spacing:18.000000px;}
.ls17{letter-spacing:46.558560px;}
.ls10{letter-spacing:63.838560px;}
.ls9{letter-spacing:82.690560px;}
.ls13{letter-spacing:108.622560px;}
.ls1{letter-spacing:899.736000px;}
.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;}
}
.ws1{word-spacing:-17.280003px;}
.ws2{word-spacing:-17.280000px;}
.ws9{word-spacing:-15.627000px;}
.wsd{word-spacing:-15.606600px;}
.ws6{word-spacing:-15.586800px;}
.wsb{word-spacing:-15.140160px;}
.ws5{word-spacing:-15.120000px;}
.ws8{word-spacing:-15.099840px;}
.wsa{word-spacing:-14.653200px;}
.ws4{word-spacing:-14.633400px;}
.wsc{word-spacing:-14.184000px;}
.ws7{word-spacing:-13.680000px;}
.ws0{word-spacing:-13.182000px;}
.ws3{word-spacing:0.000000px;}
._1d{margin-left:-5.330880px;}
._b{margin-left:-4.199040px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._8{width:3.401760px;}
._7{width:4.771200px;}
._c{width:5.920320px;}
._10{width:7.640160px;}
._16{width:8.768640px;}
._9{width:9.797760px;}
._a{width:11.188800px;}
._13{width:12.336000px;}
._14{width:13.512480px;}
._f{width:16.208640px;}
._d{width:17.478720px;}
._e{width:18.593280px;}
._19{width:20.200320px;}
._12{width:21.288960px;}
._11{width:23.224320px;}
._17{width:24.865920px;}
._18{width:26.032320px;}
._15{width:27.611040px;}
._1b{width:28.685280px;}
._1c{width:29.937600px;}
._23{width:39.268800px;}
._24{width:40.469760px;}
._1f{width:51.528960px;}
._1e{width:52.799040px;}
._20{width:54.065760px;}
._26{width:63.702720px;}
._25{width:65.862720px;}
._21{width:77.492640px;}
._22{width:79.410240px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
._1a{width:2501.556000px;}
.fc7{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(102,102,102);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs6{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y53{bottom:3.240000px;}
.yb5{bottom:6.120000px;}
.ya9{bottom:7.560000px;}
.yb1{bottom:7.605000px;}
.y32{bottom:12.240000px;}
.y14d{bottom:16.560000px;}
.y150{bottom:16.605000px;}
.y152{bottom:18.360000px;}
.y14b{bottom:18.390000px;}
.y52{bottom:20.520000px;}
.y31{bottom:29.520000px;}
.y51{bottom:37.800000px;}
.ye{bottom:43.560000px;}
.y30{bottom:46.800000px;}
.y50{bottom:55.080000px;}
.y2f{bottom:64.080000px;}
.yc{bottom:68.400000px;}
.y4f{bottom:72.360000px;}
.y2e{bottom:81.360000px;}
.ya{bottom:94.716000px;}
.y2d{bottom:98.280000px;}
.y4e{bottom:107.685000px;}
.y4d{bottom:124.965000px;}
.y2c{bottom:128.910000px;}
.y38{bottom:130.356000px;}
.y1ce{bottom:130.716000px;}
.y153{bottom:131.436000px;}
.y71{bottom:133.956000px;}
.yf8{bottom:137.196000px;}
.ya6{bottom:142.236000px;}
.y4c{bottom:142.245000px;}
.y173{bottom:142.596000px;}
.y2b{bottom:147.630000px;}
.y37{bottom:147.636000px;}
.y1cd{bottom:147.996000px;}
.y124{bottom:150.150000px;}
.y70{bottom:151.230000px;}
.yf7{bottom:154.470000px;}
.y1fb{bottom:158.070000px;}
.ya5{bottom:159.510000px;}
.y4b{bottom:159.525000px;}
.y172{bottom:159.870000px;}
.y1a8{bottom:160.230000px;}
.y151{bottom:162.750000px;}
.y192{bottom:164.910000px;}
.y36{bottom:165.270000px;}
.y2a{bottom:166.350000px;}
.y6f{bottom:168.510000px;}
.yf6{bottom:171.750000px;}
.y1fa{bottom:175.350000px;}
.y123{bottom:176.430000px;}
.ya4{bottom:176.790000px;}
.y4a{bottom:176.805000px;}
.y171{bottom:177.150000px;}
.y1a7{bottom:177.510000px;}
.y191{bottom:182.190000px;}
.y35{bottom:184.710000px;}
.y29{bottom:185.070000px;}
.y6e{bottom:185.790000px;}
.y190{bottom:187.590000px;}
.yf5{bottom:189.030000px;}
.y34{bottom:190.110000px;}
.y1a6{bottom:191.550000px;}
.y1f9{bottom:192.630000px;}
.y21e{bottom:193.710000px;}
.ya3{bottom:194.070000px;}
.y49{bottom:194.085000px;}
.y170{bottom:194.430000px;}
.y14f{bottom:195.870000px;}
.y18f{bottom:199.515000px;}
.y33{bottom:202.035000px;}
.y122{bottom:202.755000px;}
.y6d{bottom:203.115000px;}
.y28{bottom:203.430000px;}
.yf4{bottom:206.355000px;}
.y1f8{bottom:209.955000px;}
.y21d{bottom:211.035000px;}
.y48{bottom:211.395000px;}
.y16f{bottom:211.755000px;}
.y18{bottom:218.955000px;}
.y121{bottom:220.035000px;}
.y6c{bottom:220.395000px;}
.y27{bottom:222.150000px;}
.yf3{bottom:223.635000px;}
.y1cc{bottom:225.075000px;}
.y14e{bottom:227.235000px;}
.y47{bottom:228.315000px;}
.ya2{bottom:228.675000px;}
.y16e{bottom:229.035000px;}
.y120{bottom:236.955000px;}
.y6b{bottom:237.675000px;}
.y1cb{bottom:243.795000px;}
.y1f7{bottom:244.515000px;}
.yc4{bottom:244.875000px;}
.y21c{bottom:245.235000px;}
.y46{bottom:245.595000px;}
.y16d{bottom:245.955000px;}
.y26{bottom:252.795000px;}
.y11f{bottom:254.235000px;}
.y6a{bottom:254.595000px;}
.yf2{bottom:258.915000px;}
.y1f6{bottom:261.795000px;}
.y1ca{bottom:262.515000px;}
.ya1{bottom:262.875000px;}
.y16c{bottom:263.235000px;}
.y25{bottom:271.515000px;}
.y45{bottom:271.875000px;}
.yc3{bottom:272.235000px;}
.yf1{bottom:276.195000px;}
.y1f5{bottom:279.075000px;}
.y21b{bottom:279.795000px;}
.ya0{bottom:280.155000px;}
.y16b{bottom:280.515000px;}
.y1c9{bottom:280.875000px;}
.y11e{bottom:288.795000px;}
.y44{bottom:289.155000px;}
.y24{bottom:289.875000px;}
.y14c{bottom:290.235000px;}
.yf0{bottom:293.475000px;}
.y1f4{bottom:295.995000px;}
.y21a{bottom:297.075000px;}
.y9f{bottom:297.435000px;}
.y16a{bottom:297.795000px;}
.y1c8{bottom:299.595000px;}
.y11d{bottom:306.075000px;}
.y43{bottom:306.435000px;}
.y23{bottom:308.595000px;}
.yef{bottom:310.755000px;}
.y1f3{bottom:313.275000px;}
.y219{bottom:314.355000px;}
.y9e{bottom:314.715000px;}
.y169{bottom:315.075000px;}
.y69{bottom:318.315000px;}
.y14a{bottom:321.555000px;}
.y11c{bottom:323.385000px;}
.y42{bottom:323.715000px;}
.y22{bottom:327.315000px;}
.yee{bottom:328.065000px;}
.y1f2{bottom:330.585000px;}
.y218{bottom:331.665000px;}
.y9d{bottom:332.025000px;}
.y168{bottom:332.385000px;}
.y68{bottom:335.625000px;}
.y1c7{bottom:336.705000px;}
.y11b{bottom:340.665000px;}
.y41{bottom:341.040000px;}
.yed{bottom:344.985000px;}
.y21{bottom:346.035000px;}
.y1f1{bottom:347.865000px;}
.y217{bottom:348.945000px;}
.y67{bottom:352.905000px;}
.y18e{bottom:357.945000px;}
.y9c{bottom:358.305000px;}
.y40{bottom:358.320000px;}
.y167{bottom:358.665000px;}
.y1c6{bottom:360.105000px;}
.yec{bottom:362.265000px;}
.y20{bottom:363.345000px;}
.y1f0{bottom:365.145000px;}
.y216{bottom:366.225000px;}
.y11a{bottom:366.945000px;}
.y66{bottom:370.185000px;}
.y149{bottom:371.265000px;}
.y18d{bottom:375.225000px;}
.y9b{bottom:375.585000px;}
.y3f{bottom:375.600000px;}
.y166{bottom:375.945000px;}
.yeb{bottom:379.545000px;}
.y1f{bottom:380.265000px;}
.y1ef{bottom:382.425000px;}
.y215{bottom:383.505000px;}
.y65{bottom:387.465000px;}
.y148{bottom:388.545000px;}
.y1c5{bottom:390.705000px;}
.y18c{bottom:392.505000px;}
.y9a{bottom:392.865000px;}
.y3e{bottom:392.880000px;}
.y119{bottom:393.225000px;}
.yea{bottom:396.825000px;}
.y1e{bottom:397.545000px;}
.y1ee{bottom:399.705000px;}
.y214{bottom:400.785000px;}
.y64{bottom:404.745000px;}
.y147{bottom:405.825000px;}
.y1c4{bottom:409.425000px;}
.y99{bottom:410.145000px;}
.y118{bottom:410.505000px;}
.ye9{bottom:414.105000px;}
.y1d{bottom:414.825000px;}
.y213{bottom:418.065000px;}
.y63{bottom:422.025000px;}
.y146{bottom:423.105000px;}
.y98{bottom:427.425000px;}
.y117{bottom:427.785000px;}
.y1ed{bottom:430.305000px;}
.ye8{bottom:431.385000px;}
.y1c{bottom:432.105000px;}
.y212{bottom:434.985000px;}
.y145{bottom:440.385000px;}
.y97{bottom:444.345000px;}
.y116{bottom:445.065000px;}
.y1c3{bottom:446.505000px;}
.ye7{bottom:448.665000px;}
.y1ec{bottom:449.025000px;}
.y1b{bottom:449.385000px;}
.y62{bottom:451.230000px;}
.y211{bottom:452.310000px;}
.y144{bottom:457.710000px;}
.y96{bottom:461.670000px;}
.y115{bottom:462.030000px;}
.y1c2{bottom:465.270000px;}
.ye6{bottom:465.990000px;}
.y1a{bottom:466.665000px;}
.y1eb{bottom:467.430000px;}
.y61{bottom:468.510000px;}
.y210{bottom:469.590000px;}
.y143{bottom:474.990000px;}
.y95{bottom:478.950000px;}
.y114{bottom:479.310000px;}
.ye5{bottom:483.270000px;}
.y19{bottom:483.975000px;}
.y60{bottom:485.790000px;}
.y1ea{bottom:486.150000px;}
.y20f{bottom:486.870000px;}
.y1c1{bottom:488.310000px;}
.y142{bottom:492.270000px;}
.y94{bottom:496.230000px;}
.y113{bottom:496.590000px;}
.ye4{bottom:500.550000px;}
.y5f{bottom:503.070000px;}
.y20e{bottom:504.150000px;}
.y1e9{bottom:504.870000px;}
.y141{bottom:509.550000px;}
.y112{bottom:513.870000px;}
.yc2{bottom:516.750000px;}
.y18b{bottom:517.830000px;}
.y1c0{bottom:518.910000px;}
.y93{bottom:519.630000px;}
.y5e{bottom:520.350000px;}
.y20d{bottom:521.430000px;}
.y1e8{bottom:523.230000px;}
.ye3{bottom:526.830000px;}
.y111{bottom:531.150000px;}
.yc1{bottom:534.030000px;}
.y18a{bottom:535.110000px;}
.y5d{bottom:537.630000px;}
.y20c{bottom:538.710000px;}
.y140{bottom:544.110000px;}
.y92{bottom:545.550000px;}
.yc0{bottom:551.310000px;}
.y189{bottom:552.030000px;}
.y1e7{bottom:553.830000px;}
.y5c{bottom:554.910000px;}
.ye2{bottom:555.990000px;}
.y1bf{bottom:556.350000px;}
.y110{bottom:557.430000px;}
.y13f{bottom:561.030000px;}
.ybf{bottom:568.590000px;}
.y188{bottom:569.310000px;}
.y91{bottom:571.830000px;}
.y1e6{bottom:572.550000px;}
.y20b{bottom:573.270000px;}
.y165{bottom:574.710000px;}
.y1be{bottom:575.100000px;}
.y13e{bottom:578.340000px;}
.y10f{bottom:583.740000px;}
.y5b{bottom:584.100000px;}
.ye1{bottom:585.180000px;}
.ybe{bottom:585.900000px;}
.y187{bottom:586.620000px;}
.y90{bottom:589.140000px;}
.y20a{bottom:590.580000px;}
.y1e5{bottom:591.300000px;}
.y164{bottom:592.020000px;}
.y1bd{bottom:593.460000px;}
.y13d{bottom:595.620000px;}
.y10e{bottom:601.020000px;}
.y5a{bottom:601.380000px;}
.ye0{bottom:602.460000px;}
.ybd{bottom:603.180000px;}
.y186{bottom:603.900000px;}
.y8f{bottom:606.060000px;}
.y209{bottom:607.860000px;}
.y163{bottom:609.300000px;}
.y1e4{bottom:610.020000px;}
.y1bc{bottom:612.180000px;}
.y13c{bottom:612.900000px;}
.y10d{bottom:618.300000px;}
.y59{bottom:618.660000px;}
.ydf{bottom:619.740000px;}
.ybc{bottom:620.460000px;}
.y185{bottom:621.180000px;}
.y8e{bottom:623.340000px;}
.y208{bottom:625.140000px;}
.y162{bottom:626.580000px;}
.y1e3{bottom:628.380000px;}
.y13b{bottom:630.180000px;}
.y1bb{bottom:630.900000px;}
.y10c{bottom:635.580000px;}
.y58{bottom:635.940000px;}
.yde{bottom:637.020000px;}
.ybb{bottom:637.380000px;}
.y184{bottom:638.460000px;}
.y8d{bottom:640.620000px;}
.y207{bottom:642.060000px;}
.y161{bottom:643.860000px;}
.y1e2{bottom:647.100000px;}
.y13a{bottom:647.460000px;}
.y1ba{bottom:649.260000px;}
.y10b{bottom:652.860000px;}
.y57{bottom:653.220000px;}
.ydd{bottom:654.300000px;}
.yba{bottom:654.660000px;}
.y183{bottom:655.740000px;}
.y8c{bottom:657.900000px;}
.y206{bottom:659.340000px;}
.y160{bottom:660.780000px;}
.y139{bottom:664.740000px;}
.y1e1{bottom:665.820000px;}
.y10a{bottom:669.780000px;}
.y56{bottom:670.500000px;}
.yb9{bottom:671.940000px;}
.y1b9{bottom:672.660000px;}
.y205{bottom:676.620000px;}
.y15f{bottom:678.060000px;}
.y1a5{bottom:681.300000px;}
.y138{bottom:682.020000px;}
.ydc{bottom:683.460000px;}
.y182{bottom:684.900000px;}
.y109{bottom:687.060000px;}
.y55{bottom:687.420000px;}
.yb8{bottom:689.220000px;}
.y8b{bottom:693.180000px;}
.y204{bottom:693.900000px;}
.y15e{bottom:695.340000px;}
.y1e0{bottom:696.420000px;}
.y1a4{bottom:698.580000px;}
.y137{bottom:699.300000px;}
.ydb{bottom:700.770000px;}
.y181{bottom:702.210000px;}
.y1b8{bottom:703.290000px;}
.y108{bottom:704.370000px;}
.yb7{bottom:706.530000px;}
.y8a{bottom:710.490000px;}
.y203{bottom:711.210000px;}
.y15d{bottom:712.650000px;}
.y1df{bottom:714.810000px;}
.y1a3{bottom:715.890000px;}
.y136{bottom:716.610000px;}
.yda{bottom:718.050000px;}
.y180{bottom:719.490000px;}
.y107{bottom:721.650000px;}
.y1b7{bottom:722.010000px;}
.y54{bottom:722.370000px;}
.yb6{bottom:723.810000px;}
.y89{bottom:727.770000px;}
.y202{bottom:728.490000px;}
.y15c{bottom:729.930000px;}
.y1a2{bottom:732.810000px;}
.y1de{bottom:733.530000px;}
.y135{bottom:733.890000px;}
.yd9{bottom:735.330000px;}
.y17f{bottom:736.770000px;}
.y1b6{bottom:740.370000px;}
.y17{bottom:741.090000px;}
.y88{bottom:745.050000px;}
.y201{bottom:745.770000px;}
.y15b{bottom:747.210000px;}
.y3d{bottom:747.570000px;}
.y106{bottom:747.930000px;}
.y1a1{bottom:750.090000px;}
.y134{bottom:750.810000px;}
.y1dd{bottom:752.250000px;}
.yd8{bottom:752.610000px;}
.y17e{bottom:754.050000px;}
.yb4{bottom:755.850000px;}
.y1b5{bottom:759.090000px;}
.y16{bottom:761.970000px;}
.y87{bottom:762.330000px;}
.y200{bottom:763.050000px;}
.y15a{bottom:764.490000px;}
.y105{bottom:765.210000px;}
.y1a0{bottom:767.370000px;}
.y133{bottom:768.090000px;}
.yd7{bottom:769.890000px;}
.y1dc{bottom:770.970000px;}
.y17d{bottom:771.330000px;}
.yb3{bottom:776.730000px;}
.y1b4{bottom:777.810000px;}
.y86{bottom:779.610000px;}
.y1ff{bottom:780.330000px;}
.y159{bottom:781.770000px;}
.y104{bottom:782.490000px;}
.y19f{bottom:784.650000px;}
.y132{bottom:785.370000px;}
.yd6{bottom:786.810000px;}
.y17c{bottom:788.610000px;}
.y1db{bottom:789.330000px;}
.y1b3{bottom:796.170000px;}
.y85{bottom:796.890000px;}
.y1fe{bottom:797.610000px;}
.yb2{bottom:799.050000px;}
.y103{bottom:799.770000px;}
.y14{bottom:801.210000px;}
.y19e{bottom:801.930000px;}
.y131{bottom:802.650000px;}
.y17b{bottom:805.890000px;}
.y1da{bottom:808.050000px;}
.y15{bottom:808.770000px;}
.y84{bottom:813.810000px;}
.y1b2{bottom:814.890000px;}
.yd5{bottom:816.330000px;}
.y102{bottom:817.050000px;}
.y19d{bottom:819.210000px;}
.y130{bottom:819.930000px;}
.yb0{bottom:821.730000px;}
.y17a{bottom:822.810000px;}
.y13{bottom:823.890000px;}
.y1d9{bottom:826.815000px;}
.y83{bottom:831.135000px;}
.y1fd{bottom:831.855000px;}
.yd4{bottom:833.655000px;}
.y101{bottom:834.375000px;}
.y19c{bottom:836.535000px;}
.y12f{bottom:837.255000px;}
.y179{bottom:840.135000px;}
.y12{bottom:842.655000px;}
.yaf{bottom:844.095000px;}
.y82{bottom:848.415000px;}
.y1fc{bottom:849.135000px;}
.y1b1{bottom:850.215000px;}
.yd3{bottom:850.935000px;}
.y19b{bottom:853.815000px;}
.y12e{bottom:854.535000px;}
.y100{bottom:855.975000px;}
.y1d8{bottom:857.415000px;}
.y81{bottom:865.695000px;}
.yae{bottom:866.415000px;}
.y11{bottom:866.775000px;}
.yd2{bottom:867.855000px;}
.y12d{bottom:871.815000px;}
.y1d7{bottom:875.775000px;}
.y158{bottom:876.855000px;}
.y19a{bottom:880.095000px;}
.y80{bottom:882.975000px;}
.y178{bottom:883.695000px;}
.yd1{bottom:885.135000px;}
.y1b0{bottom:886.935000px;}
.yad{bottom:888.735000px;}
.y12c{bottom:889.095000px;}
.y10{bottom:890.895000px;}
.yff{bottom:891.255000px;}
.y1d6{bottom:894.495000px;}
.y199{bottom:897.375000px;}
.y7f{bottom:900.255000px;}
.y177{bottom:900.975000px;}
.yd0{bottom:902.415000px;}
.y1af{bottom:905.655000px;}
.y12b{bottom:906.375000px;}
.yfe{bottom:908.535000px;}
.yac{bottom:911.055000px;}
.y1d5{bottom:913.215000px;}
.y198{bottom:914.655000px;}
.yf{bottom:915.375000px;}
.y7e{bottom:917.535000px;}
.y176{bottom:918.255000px;}
.y12a{bottom:923.655000px;}
.yfd{bottom:925.815000px;}
.ycf{bottom:931.575000px;}
.y197{bottom:931.935000px;}
.yab{bottom:933.375000px;}
.y7d{bottom:934.815000px;}
.y175{bottom:935.535000px;}
.y129{bottom:940.935000px;}
.y9{bottom:941.295000px;}
.yfc{bottom:943.095000px;}
.yce{bottom:948.855000px;}
.y7c{bottom:952.095000px;}
.y174{bottom:952.845000px;}
.yaa{bottom:955.725000px;}
.y157{bottom:957.885000px;}
.y8{bottom:958.605000px;}
.yfb{bottom:960.405000px;}
.y1ae{bottom:961.125000px;}
.y1d4{bottom:962.565000px;}
.ycd{bottom:966.165000px;}
.y7b{bottom:969.405000px;}
.y128{bottom:970.125000px;}
.y7{bottom:972.645000px;}
.y156{bottom:975.165000px;}
.yfa{bottom:977.685000px;}
.ya8{bottom:978.045000px;}
.y1ad{bottom:978.405000px;}
.y1d3{bottom:980.925000px;}
.ycc{bottom:983.445000px;}
.y7a{bottom:986.685000px;}
.y127{bottom:987.405000px;}
.y155{bottom:992.445000px;}
.yf9{bottom:994.605000px;}
.y1ac{bottom:995.685000px;}
.y1d2{bottom:999.645000px;}
.ycb{bottom:1000.725000px;}
.y79{bottom:1003.605000px;}
.y126{bottom:1004.685000px;}
.y154{bottom:1009.725000px;}
.y1ab{bottom:1012.605000px;}
.yca{bottom:1018.005000px;}
.y1d1{bottom:1018.365000px;}
.ya7{bottom:1020.885000px;}
.y125{bottom:1021.605000px;}
.y6{bottom:1027.365000px;}
.y1aa{bottom:1029.885000px;}
.yc9{bottom:1035.285000px;}
.y1d0{bottom:1036.725000px;}
.y78{bottom:1038.885000px;}
.y196{bottom:1044.285000px;}
.y1a9{bottom:1047.165000px;}
.y5{bottom:1052.205000px;}
.y1cf{bottom:1055.445000px;}
.y77{bottom:1056.165000px;}
.y195{bottom:1061.565000px;}
.yc8{bottom:1064.445000px;}
.y4{bottom:1072.725000px;}
.y76{bottom:1073.445000px;}
.y194{bottom:1078.890000px;}
.yc7{bottom:1081.770000px;}
.y75{bottom:1090.770000px;}
.y3{bottom:1094.010000px;}
.y193{bottom:1096.170000px;}
.yc6{bottom:1099.050000px;}
.y74{bottom:1108.050000px;}
.y2{bottom:1114.530000px;}
.yc5{bottom:1116.330000px;}
.y73{bottom:1125.330000px;}
.y1{bottom:1131.450000px;}
.y72{bottom:1142.610000px;}
.y3c{bottom:1166.370000px;}
.y3b{bottom:1180.410000px;}
.y3a{bottom:1201.290000px;}
.y39{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h13{height:20.160000px;}
.h11{height:21.600000px;}
.h12{height:21.636000px;}
.h15{height:30.600000px;}
.h16{height:30.636000px;}
.h17{height:32.400000px;}
.h14{height:32.436000px;}
.he{height:34.114922px;}
.hb{height:40.559062px;}
.h2{height:44.828437px;}
.h7{height:48.013594px;}
.h5{height:48.147188px;}
.h4{height:53.067656px;}
.h19{height:53.215313px;}
.h3{height:53.367188px;}
.h18{height:60.155156px;}
.hf{height:60.648750px;}
.ha{height:61.905938px;}
.hc{height:63.175781px;}
.h9{height:71.512031px;}
.h10{height:406.905000px;}
.hd{height:507.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:111.276000px;}
.wd{width:217.545000px;}
.wa{width:244.905000px;}
.w9{width:287.025000px;}
.w8{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w7{width:341.430000px;}
.wc{width:345.750000px;}
.w6{width:679.965000px;}
.w1{width:892.500000px;}
.w5{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:8.640000px;}
.x1e{left:41.445000px;}
.x1c{left:61.590000px;}
.x19{left:65.910000px;}
.x20{left:87.885000px;}
.x21{left:91.485000px;}
.x1b{left:101.550000px;}
.x7{left:106.235987px;}
.x12{left:109.115973px;}
.x1a{left:111.315000px;}
.x13{left:114.155987px;}
.xb{left:117.035987px;}
.x26{left:133.271987px;}
.xf{left:136.151987px;}
.xc{left:150.914987px;}
.x27{left:160.274987px;}
.x22{left:161.715000px;}
.x1f{left:165.315000px;}
.x15{left:180.794987px;}
.x14{left:217.514987px;}
.x2{left:254.264987px;}
.x6{left:274.064987px;}
.xa{left:304.350000px;}
.x11{left:322.349987px;}
.x10{left:330.269987px;}
.x17{left:339.984000px;}
.x5{left:355.829987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.x16{left:447.660000px;}
.x18{left:467.820000px;}
.xd{left:529.769973px;}
.xe{left:536.609987px;}
.x1d{left:563.250000px;}
.x23{left:613.334973px;}
.x24{left:618.374987px;}
.x25{left:770.729987px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-0.864000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.442667pt;}
.lsa{letter-spacing:-0.432533pt;}
.ls12{letter-spacing:-0.414933pt;}
.lsd{letter-spacing:-0.017920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000003pt;}
.ls11{letter-spacing:0.017920pt;}
.ls3{letter-spacing:0.020480pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.414933pt;}
.ls16{letter-spacing:0.432533pt;}
.ls0{letter-spacing:0.442880pt;}
.lse{letter-spacing:0.450667pt;}
.ls8{letter-spacing:0.640000pt;}
.ls14{letter-spacing:4.490240pt;}
.lsf{letter-spacing:7.040000pt;}
.ls19{letter-spacing:14.494720pt;}
.ls18{letter-spacing:16.000000pt;}
.ls17{letter-spacing:41.385387pt;}
.ls10{letter-spacing:56.745387pt;}
.ls9{letter-spacing:73.502720pt;}
.ls13{letter-spacing:96.553387pt;}
.ls1{letter-spacing:799.765333pt;}
.ws1{word-spacing:-15.360003pt;}
.ws2{word-spacing:-15.360000pt;}
.ws9{word-spacing:-13.890667pt;}
.wsd{word-spacing:-13.872533pt;}
.ws6{word-spacing:-13.854933pt;}
.wsb{word-spacing:-13.457920pt;}
.ws5{word-spacing:-13.440000pt;}
.ws8{word-spacing:-13.422080pt;}
.wsa{word-spacing:-13.025067pt;}
.ws4{word-spacing:-13.007467pt;}
.wsc{word-spacing:-12.608000pt;}
.ws7{word-spacing:-12.160000pt;}
.ws0{word-spacing:-11.717333pt;}
.ws3{word-spacing:0.000000pt;}
._1d{margin-left:-4.738560pt;}
._b{margin-left:-3.732480pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._8{width:3.023787pt;}
._7{width:4.241067pt;}
._c{width:5.262507pt;}
._10{width:6.791253pt;}
._16{width:7.794347pt;}
._9{width:8.709120pt;}
._a{width:9.945600pt;}
._13{width:10.965333pt;}
._14{width:12.011093pt;}
._f{width:14.407680pt;}
._d{width:15.536640pt;}
._e{width:16.527360pt;}
._19{width:17.955840pt;}
._12{width:18.923520pt;}
._11{width:20.643840pt;}
._17{width:22.103040pt;}
._18{width:23.139840pt;}
._15{width:24.543147pt;}
._1b{width:25.498027pt;}
._1c{width:26.611200pt;}
._23{width:34.905600pt;}
._24{width:35.973120pt;}
._1f{width:45.803520pt;}
._1e{width:46.932480pt;}
._20{width:48.058453pt;}
._26{width:56.624640pt;}
._25{width:58.544640pt;}
._21{width:68.882347pt;}
._22{width:70.586880pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
._1a{width:2223.605333pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs6{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y53{bottom:2.880000pt;}
.yb5{bottom:5.440000pt;}
.ya9{bottom:6.720000pt;}
.yb1{bottom:6.760000pt;}
.y32{bottom:10.880000pt;}
.y14d{bottom:14.720000pt;}
.y150{bottom:14.760000pt;}
.y152{bottom:16.320000pt;}
.y14b{bottom:16.346667pt;}
.y52{bottom:18.240000pt;}
.y31{bottom:26.240000pt;}
.y51{bottom:33.600000pt;}
.ye{bottom:38.720000pt;}
.y30{bottom:41.600000pt;}
.y50{bottom:48.960000pt;}
.y2f{bottom:56.960000pt;}
.yc{bottom:60.800000pt;}
.y4f{bottom:64.320000pt;}
.y2e{bottom:72.320000pt;}
.ya{bottom:84.192000pt;}
.y2d{bottom:87.360000pt;}
.y4e{bottom:95.720000pt;}
.y4d{bottom:111.080000pt;}
.y2c{bottom:114.586667pt;}
.y38{bottom:115.872000pt;}
.y1ce{bottom:116.192000pt;}
.y153{bottom:116.832000pt;}
.y71{bottom:119.072000pt;}
.yf8{bottom:121.952000pt;}
.ya6{bottom:126.432000pt;}
.y4c{bottom:126.440000pt;}
.y173{bottom:126.752000pt;}
.y2b{bottom:131.226667pt;}
.y37{bottom:131.232000pt;}
.y1cd{bottom:131.552000pt;}
.y124{bottom:133.466667pt;}
.y70{bottom:134.426667pt;}
.yf7{bottom:137.306667pt;}
.y1fb{bottom:140.506667pt;}
.ya5{bottom:141.786667pt;}
.y4b{bottom:141.800000pt;}
.y172{bottom:142.106667pt;}
.y1a8{bottom:142.426667pt;}
.y151{bottom:144.666667pt;}
.y192{bottom:146.586667pt;}
.y36{bottom:146.906667pt;}
.y2a{bottom:147.866667pt;}
.y6f{bottom:149.786667pt;}
.yf6{bottom:152.666667pt;}
.y1fa{bottom:155.866667pt;}
.y123{bottom:156.826667pt;}
.ya4{bottom:157.146667pt;}
.y4a{bottom:157.160000pt;}
.y171{bottom:157.466667pt;}
.y1a7{bottom:157.786667pt;}
.y191{bottom:161.946667pt;}
.y35{bottom:164.186667pt;}
.y29{bottom:164.506667pt;}
.y6e{bottom:165.146667pt;}
.y190{bottom:166.746667pt;}
.yf5{bottom:168.026667pt;}
.y34{bottom:168.986667pt;}
.y1a6{bottom:170.266667pt;}
.y1f9{bottom:171.226667pt;}
.y21e{bottom:172.186667pt;}
.ya3{bottom:172.506667pt;}
.y49{bottom:172.520000pt;}
.y170{bottom:172.826667pt;}
.y14f{bottom:174.106667pt;}
.y18f{bottom:177.346667pt;}
.y33{bottom:179.586667pt;}
.y122{bottom:180.226667pt;}
.y6d{bottom:180.546667pt;}
.y28{bottom:180.826667pt;}
.yf4{bottom:183.426667pt;}
.y1f8{bottom:186.626667pt;}
.y21d{bottom:187.586667pt;}
.y48{bottom:187.906667pt;}
.y16f{bottom:188.226667pt;}
.y18{bottom:194.626667pt;}
.y121{bottom:195.586667pt;}
.y6c{bottom:195.906667pt;}
.y27{bottom:197.466667pt;}
.yf3{bottom:198.786667pt;}
.y1cc{bottom:200.066667pt;}
.y14e{bottom:201.986667pt;}
.y47{bottom:202.946667pt;}
.ya2{bottom:203.266667pt;}
.y16e{bottom:203.586667pt;}
.y120{bottom:210.626667pt;}
.y6b{bottom:211.266667pt;}
.y1cb{bottom:216.706667pt;}
.y1f7{bottom:217.346667pt;}
.yc4{bottom:217.666667pt;}
.y21c{bottom:217.986667pt;}
.y46{bottom:218.306667pt;}
.y16d{bottom:218.626667pt;}
.y26{bottom:224.706667pt;}
.y11f{bottom:225.986667pt;}
.y6a{bottom:226.306667pt;}
.yf2{bottom:230.146667pt;}
.y1f6{bottom:232.706667pt;}
.y1ca{bottom:233.346667pt;}
.ya1{bottom:233.666667pt;}
.y16c{bottom:233.986667pt;}
.y25{bottom:241.346667pt;}
.y45{bottom:241.666667pt;}
.yc3{bottom:241.986667pt;}
.yf1{bottom:245.506667pt;}
.y1f5{bottom:248.066667pt;}
.y21b{bottom:248.706667pt;}
.ya0{bottom:249.026667pt;}
.y16b{bottom:249.346667pt;}
.y1c9{bottom:249.666667pt;}
.y11e{bottom:256.706667pt;}
.y44{bottom:257.026667pt;}
.y24{bottom:257.666667pt;}
.y14c{bottom:257.986667pt;}
.yf0{bottom:260.866667pt;}
.y1f4{bottom:263.106667pt;}
.y21a{bottom:264.066667pt;}
.y9f{bottom:264.386667pt;}
.y16a{bottom:264.706667pt;}
.y1c8{bottom:266.306667pt;}
.y11d{bottom:272.066667pt;}
.y43{bottom:272.386667pt;}
.y23{bottom:274.306667pt;}
.yef{bottom:276.226667pt;}
.y1f3{bottom:278.466667pt;}
.y219{bottom:279.426667pt;}
.y9e{bottom:279.746667pt;}
.y169{bottom:280.066667pt;}
.y69{bottom:282.946667pt;}
.y14a{bottom:285.826667pt;}
.y11c{bottom:287.453333pt;}
.y42{bottom:287.746667pt;}
.y22{bottom:290.946667pt;}
.yee{bottom:291.613333pt;}
.y1f2{bottom:293.853333pt;}
.y218{bottom:294.813333pt;}
.y9d{bottom:295.133333pt;}
.y168{bottom:295.453333pt;}
.y68{bottom:298.333333pt;}
.y1c7{bottom:299.293333pt;}
.y11b{bottom:302.813333pt;}
.y41{bottom:303.146667pt;}
.yed{bottom:306.653333pt;}
.y21{bottom:307.586667pt;}
.y1f1{bottom:309.213333pt;}
.y217{bottom:310.173333pt;}
.y67{bottom:313.693333pt;}
.y18e{bottom:318.173333pt;}
.y9c{bottom:318.493333pt;}
.y40{bottom:318.506667pt;}
.y167{bottom:318.813333pt;}
.y1c6{bottom:320.093333pt;}
.yec{bottom:322.013333pt;}
.y20{bottom:322.973333pt;}
.y1f0{bottom:324.573333pt;}
.y216{bottom:325.533333pt;}
.y11a{bottom:326.173333pt;}
.y66{bottom:329.053333pt;}
.y149{bottom:330.013333pt;}
.y18d{bottom:333.533333pt;}
.y9b{bottom:333.853333pt;}
.y3f{bottom:333.866667pt;}
.y166{bottom:334.173333pt;}
.yeb{bottom:337.373333pt;}
.y1f{bottom:338.013333pt;}
.y1ef{bottom:339.933333pt;}
.y215{bottom:340.893333pt;}
.y65{bottom:344.413333pt;}
.y148{bottom:345.373333pt;}
.y1c5{bottom:347.293333pt;}
.y18c{bottom:348.893333pt;}
.y9a{bottom:349.213333pt;}
.y3e{bottom:349.226667pt;}
.y119{bottom:349.533333pt;}
.yea{bottom:352.733333pt;}
.y1e{bottom:353.373333pt;}
.y1ee{bottom:355.293333pt;}
.y214{bottom:356.253333pt;}
.y64{bottom:359.773333pt;}
.y147{bottom:360.733333pt;}
.y1c4{bottom:363.933333pt;}
.y99{bottom:364.573333pt;}
.y118{bottom:364.893333pt;}
.ye9{bottom:368.093333pt;}
.y1d{bottom:368.733333pt;}
.y213{bottom:371.613333pt;}
.y63{bottom:375.133333pt;}
.y146{bottom:376.093333pt;}
.y98{bottom:379.933333pt;}
.y117{bottom:380.253333pt;}
.y1ed{bottom:382.493333pt;}
.ye8{bottom:383.453333pt;}
.y1c{bottom:384.093333pt;}
.y212{bottom:386.653333pt;}
.y145{bottom:391.453333pt;}
.y97{bottom:394.973333pt;}
.y116{bottom:395.613333pt;}
.y1c3{bottom:396.893333pt;}
.ye7{bottom:398.813333pt;}
.y1ec{bottom:399.133333pt;}
.y1b{bottom:399.453333pt;}
.y62{bottom:401.093333pt;}
.y211{bottom:402.053333pt;}
.y144{bottom:406.853333pt;}
.y96{bottom:410.373333pt;}
.y115{bottom:410.693333pt;}
.y1c2{bottom:413.573333pt;}
.ye6{bottom:414.213333pt;}
.y1a{bottom:414.813333pt;}
.y1eb{bottom:415.493333pt;}
.y61{bottom:416.453333pt;}
.y210{bottom:417.413333pt;}
.y143{bottom:422.213333pt;}
.y95{bottom:425.733333pt;}
.y114{bottom:426.053333pt;}
.ye5{bottom:429.573333pt;}
.y19{bottom:430.200000pt;}
.y60{bottom:431.813333pt;}
.y1ea{bottom:432.133333pt;}
.y20f{bottom:432.773333pt;}
.y1c1{bottom:434.053333pt;}
.y142{bottom:437.573333pt;}
.y94{bottom:441.093333pt;}
.y113{bottom:441.413333pt;}
.ye4{bottom:444.933333pt;}
.y5f{bottom:447.173333pt;}
.y20e{bottom:448.133333pt;}
.y1e9{bottom:448.773333pt;}
.y141{bottom:452.933333pt;}
.y112{bottom:456.773333pt;}
.yc2{bottom:459.333333pt;}
.y18b{bottom:460.293333pt;}
.y1c0{bottom:461.253333pt;}
.y93{bottom:461.893333pt;}
.y5e{bottom:462.533333pt;}
.y20d{bottom:463.493333pt;}
.y1e8{bottom:465.093333pt;}
.ye3{bottom:468.293333pt;}
.y111{bottom:472.133333pt;}
.yc1{bottom:474.693333pt;}
.y18a{bottom:475.653333pt;}
.y5d{bottom:477.893333pt;}
.y20c{bottom:478.853333pt;}
.y140{bottom:483.653333pt;}
.y92{bottom:484.933333pt;}
.yc0{bottom:490.053333pt;}
.y189{bottom:490.693333pt;}
.y1e7{bottom:492.293333pt;}
.y5c{bottom:493.253333pt;}
.ye2{bottom:494.213333pt;}
.y1bf{bottom:494.533333pt;}
.y110{bottom:495.493333pt;}
.y13f{bottom:498.693333pt;}
.ybf{bottom:505.413333pt;}
.y188{bottom:506.053333pt;}
.y91{bottom:508.293333pt;}
.y1e6{bottom:508.933333pt;}
.y20b{bottom:509.573333pt;}
.y165{bottom:510.853333pt;}
.y1be{bottom:511.200000pt;}
.y13e{bottom:514.080000pt;}
.y10f{bottom:518.880000pt;}
.y5b{bottom:519.200000pt;}
.ye1{bottom:520.160000pt;}
.ybe{bottom:520.800000pt;}
.y187{bottom:521.440000pt;}
.y90{bottom:523.680000pt;}
.y20a{bottom:524.960000pt;}
.y1e5{bottom:525.600000pt;}
.y164{bottom:526.240000pt;}
.y1bd{bottom:527.520000pt;}
.y13d{bottom:529.440000pt;}
.y10e{bottom:534.240000pt;}
.y5a{bottom:534.560000pt;}
.ye0{bottom:535.520000pt;}
.ybd{bottom:536.160000pt;}
.y186{bottom:536.800000pt;}
.y8f{bottom:538.720000pt;}
.y209{bottom:540.320000pt;}
.y163{bottom:541.600000pt;}
.y1e4{bottom:542.240000pt;}
.y1bc{bottom:544.160000pt;}
.y13c{bottom:544.800000pt;}
.y10d{bottom:549.600000pt;}
.y59{bottom:549.920000pt;}
.ydf{bottom:550.880000pt;}
.ybc{bottom:551.520000pt;}
.y185{bottom:552.160000pt;}
.y8e{bottom:554.080000pt;}
.y208{bottom:555.680000pt;}
.y162{bottom:556.960000pt;}
.y1e3{bottom:558.560000pt;}
.y13b{bottom:560.160000pt;}
.y1bb{bottom:560.800000pt;}
.y10c{bottom:564.960000pt;}
.y58{bottom:565.280000pt;}
.yde{bottom:566.240000pt;}
.ybb{bottom:566.560000pt;}
.y184{bottom:567.520000pt;}
.y8d{bottom:569.440000pt;}
.y207{bottom:570.720000pt;}
.y161{bottom:572.320000pt;}
.y1e2{bottom:575.200000pt;}
.y13a{bottom:575.520000pt;}
.y1ba{bottom:577.120000pt;}
.y10b{bottom:580.320000pt;}
.y57{bottom:580.640000pt;}
.ydd{bottom:581.600000pt;}
.yba{bottom:581.920000pt;}
.y183{bottom:582.880000pt;}
.y8c{bottom:584.800000pt;}
.y206{bottom:586.080000pt;}
.y160{bottom:587.360000pt;}
.y139{bottom:590.880000pt;}
.y1e1{bottom:591.840000pt;}
.y10a{bottom:595.360000pt;}
.y56{bottom:596.000000pt;}
.yb9{bottom:597.280000pt;}
.y1b9{bottom:597.920000pt;}
.y205{bottom:601.440000pt;}
.y15f{bottom:602.720000pt;}
.y1a5{bottom:605.600000pt;}
.y138{bottom:606.240000pt;}
.ydc{bottom:607.520000pt;}
.y182{bottom:608.800000pt;}
.y109{bottom:610.720000pt;}
.y55{bottom:611.040000pt;}
.yb8{bottom:612.640000pt;}
.y8b{bottom:616.160000pt;}
.y204{bottom:616.800000pt;}
.y15e{bottom:618.080000pt;}
.y1e0{bottom:619.040000pt;}
.y1a4{bottom:620.960000pt;}
.y137{bottom:621.600000pt;}
.ydb{bottom:622.906667pt;}
.y181{bottom:624.186667pt;}
.y1b8{bottom:625.146667pt;}
.y108{bottom:626.106667pt;}
.yb7{bottom:628.026667pt;}
.y8a{bottom:631.546667pt;}
.y203{bottom:632.186667pt;}
.y15d{bottom:633.466667pt;}
.y1df{bottom:635.386667pt;}
.y1a3{bottom:636.346667pt;}
.y136{bottom:636.986667pt;}
.yda{bottom:638.266667pt;}
.y180{bottom:639.546667pt;}
.y107{bottom:641.466667pt;}
.y1b7{bottom:641.786667pt;}
.y54{bottom:642.106667pt;}
.yb6{bottom:643.386667pt;}
.y89{bottom:646.906667pt;}
.y202{bottom:647.546667pt;}
.y15c{bottom:648.826667pt;}
.y1a2{bottom:651.386667pt;}
.y1de{bottom:652.026667pt;}
.y135{bottom:652.346667pt;}
.yd9{bottom:653.626667pt;}
.y17f{bottom:654.906667pt;}
.y1b6{bottom:658.106667pt;}
.y17{bottom:658.746667pt;}
.y88{bottom:662.266667pt;}
.y201{bottom:662.906667pt;}
.y15b{bottom:664.186667pt;}
.y3d{bottom:664.506667pt;}
.y106{bottom:664.826667pt;}
.y1a1{bottom:666.746667pt;}
.y134{bottom:667.386667pt;}
.y1dd{bottom:668.666667pt;}
.yd8{bottom:668.986667pt;}
.y17e{bottom:670.266667pt;}
.yb4{bottom:671.866667pt;}
.y1b5{bottom:674.746667pt;}
.y16{bottom:677.306667pt;}
.y87{bottom:677.626667pt;}
.y200{bottom:678.266667pt;}
.y15a{bottom:679.546667pt;}
.y105{bottom:680.186667pt;}
.y1a0{bottom:682.106667pt;}
.y133{bottom:682.746667pt;}
.yd7{bottom:684.346667pt;}
.y1dc{bottom:685.306667pt;}
.y17d{bottom:685.626667pt;}
.yb3{bottom:690.426667pt;}
.y1b4{bottom:691.386667pt;}
.y86{bottom:692.986667pt;}
.y1ff{bottom:693.626667pt;}
.y159{bottom:694.906667pt;}
.y104{bottom:695.546667pt;}
.y19f{bottom:697.466667pt;}
.y132{bottom:698.106667pt;}
.yd6{bottom:699.386667pt;}
.y17c{bottom:700.986667pt;}
.y1db{bottom:701.626667pt;}
.y1b3{bottom:707.706667pt;}
.y85{bottom:708.346667pt;}
.y1fe{bottom:708.986667pt;}
.yb2{bottom:710.266667pt;}
.y103{bottom:710.906667pt;}
.y14{bottom:712.186667pt;}
.y19e{bottom:712.826667pt;}
.y131{bottom:713.466667pt;}
.y17b{bottom:716.346667pt;}
.y1da{bottom:718.266667pt;}
.y15{bottom:718.906667pt;}
.y84{bottom:723.386667pt;}
.y1b2{bottom:724.346667pt;}
.yd5{bottom:725.626667pt;}
.y102{bottom:726.266667pt;}
.y19d{bottom:728.186667pt;}
.y130{bottom:728.826667pt;}
.yb0{bottom:730.426667pt;}
.y17a{bottom:731.386667pt;}
.y13{bottom:732.346667pt;}
.y1d9{bottom:734.946667pt;}
.y83{bottom:738.786667pt;}
.y1fd{bottom:739.426667pt;}
.yd4{bottom:741.026667pt;}
.y101{bottom:741.666667pt;}
.y19c{bottom:743.586667pt;}
.y12f{bottom:744.226667pt;}
.y179{bottom:746.786667pt;}
.y12{bottom:749.026667pt;}
.yaf{bottom:750.306667pt;}
.y82{bottom:754.146667pt;}
.y1fc{bottom:754.786667pt;}
.y1b1{bottom:755.746667pt;}
.yd3{bottom:756.386667pt;}
.y19b{bottom:758.946667pt;}
.y12e{bottom:759.586667pt;}
.y100{bottom:760.866667pt;}
.y1d8{bottom:762.146667pt;}
.y81{bottom:769.506667pt;}
.yae{bottom:770.146667pt;}
.y11{bottom:770.466667pt;}
.yd2{bottom:771.426667pt;}
.y12d{bottom:774.946667pt;}
.y1d7{bottom:778.466667pt;}
.y158{bottom:779.426667pt;}
.y19a{bottom:782.306667pt;}
.y80{bottom:784.866667pt;}
.y178{bottom:785.506667pt;}
.yd1{bottom:786.786667pt;}
.y1b0{bottom:788.386667pt;}
.yad{bottom:789.986667pt;}
.y12c{bottom:790.306667pt;}
.y10{bottom:791.906667pt;}
.yff{bottom:792.226667pt;}
.y1d6{bottom:795.106667pt;}
.y199{bottom:797.666667pt;}
.y7f{bottom:800.226667pt;}
.y177{bottom:800.866667pt;}
.yd0{bottom:802.146667pt;}
.y1af{bottom:805.026667pt;}
.y12b{bottom:805.666667pt;}
.yfe{bottom:807.586667pt;}
.yac{bottom:809.826667pt;}
.y1d5{bottom:811.746667pt;}
.y198{bottom:813.026667pt;}
.yf{bottom:813.666667pt;}
.y7e{bottom:815.586667pt;}
.y176{bottom:816.226667pt;}
.y12a{bottom:821.026667pt;}
.yfd{bottom:822.946667pt;}
.ycf{bottom:828.066667pt;}
.y197{bottom:828.386667pt;}
.yab{bottom:829.666667pt;}
.y7d{bottom:830.946667pt;}
.y175{bottom:831.586667pt;}
.y129{bottom:836.386667pt;}
.y9{bottom:836.706667pt;}
.yfc{bottom:838.306667pt;}
.yce{bottom:843.426667pt;}
.y7c{bottom:846.306667pt;}
.y174{bottom:846.973333pt;}
.yaa{bottom:849.533333pt;}
.y157{bottom:851.453333pt;}
.y8{bottom:852.093333pt;}
.yfb{bottom:853.693333pt;}
.y1ae{bottom:854.333333pt;}
.y1d4{bottom:855.613333pt;}
.ycd{bottom:858.813333pt;}
.y7b{bottom:861.693333pt;}
.y128{bottom:862.333333pt;}
.y7{bottom:864.573333pt;}
.y156{bottom:866.813333pt;}
.yfa{bottom:869.053333pt;}
.ya8{bottom:869.373333pt;}
.y1ad{bottom:869.693333pt;}
.y1d3{bottom:871.933333pt;}
.ycc{bottom:874.173333pt;}
.y7a{bottom:877.053333pt;}
.y127{bottom:877.693333pt;}
.y155{bottom:882.173333pt;}
.yf9{bottom:884.093333pt;}
.y1ac{bottom:885.053333pt;}
.y1d2{bottom:888.573333pt;}
.ycb{bottom:889.533333pt;}
.y79{bottom:892.093333pt;}
.y126{bottom:893.053333pt;}
.y154{bottom:897.533333pt;}
.y1ab{bottom:900.093333pt;}
.yca{bottom:904.893333pt;}
.y1d1{bottom:905.213333pt;}
.ya7{bottom:907.453333pt;}
.y125{bottom:908.093333pt;}
.y6{bottom:913.213333pt;}
.y1aa{bottom:915.453333pt;}
.yc9{bottom:920.253333pt;}
.y1d0{bottom:921.533333pt;}
.y78{bottom:923.453333pt;}
.y196{bottom:928.253333pt;}
.y1a9{bottom:930.813333pt;}
.y5{bottom:935.293333pt;}
.y1cf{bottom:938.173333pt;}
.y77{bottom:938.813333pt;}
.y195{bottom:943.613333pt;}
.yc8{bottom:946.173333pt;}
.y4{bottom:953.533333pt;}
.y76{bottom:954.173333pt;}
.y194{bottom:959.013333pt;}
.yc7{bottom:961.573333pt;}
.y75{bottom:969.573333pt;}
.y3{bottom:972.453333pt;}
.y193{bottom:974.373333pt;}
.yc6{bottom:976.933333pt;}
.y74{bottom:984.933333pt;}
.y2{bottom:990.693333pt;}
.yc5{bottom:992.293333pt;}
.y73{bottom:1000.293333pt;}
.y1{bottom:1005.733333pt;}
.y72{bottom:1015.653333pt;}
.y3c{bottom:1036.773333pt;}
.y3b{bottom:1049.253333pt;}
.y3a{bottom:1067.813333pt;}
.y39{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h13{height:17.920000pt;}
.h11{height:19.200000pt;}
.h12{height:19.232000pt;}
.h15{height:27.200000pt;}
.h16{height:27.232000pt;}
.h17{height:28.800000pt;}
.h14{height:28.832000pt;}
.he{height:30.324375pt;}
.hb{height:36.052500pt;}
.h2{height:39.847500pt;}
.h7{height:42.678750pt;}
.h5{height:42.797500pt;}
.h4{height:47.171250pt;}
.h19{height:47.302500pt;}
.h3{height:47.437500pt;}
.h18{height:53.471250pt;}
.hf{height:53.910000pt;}
.ha{height:55.027500pt;}
.hc{height:56.156250pt;}
.h9{height:63.566250pt;}
.h10{height:361.693333pt;}
.hd{height:450.693333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:98.912000pt;}
.wd{width:193.373333pt;}
.wa{width:217.693333pt;}
.w9{width:255.133333pt;}
.w8{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w7{width:303.493333pt;}
.wc{width:307.333333pt;}
.w6{width:604.413333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.680000pt;}
.x1e{left:36.840000pt;}
.x1c{left:54.746667pt;}
.x19{left:58.586667pt;}
.x20{left:78.120000pt;}
.x21{left:81.320000pt;}
.x1b{left:90.266667pt;}
.x7{left:94.431988pt;}
.x12{left:96.991976pt;}
.x1a{left:98.946667pt;}
.x13{left:101.471988pt;}
.xb{left:104.031988pt;}
.x26{left:118.463988pt;}
.xf{left:121.023988pt;}
.xc{left:134.146655pt;}
.x27{left:142.466655pt;}
.x22{left:143.746667pt;}
.x1f{left:146.946667pt;}
.x15{left:160.706655pt;}
.x14{left:193.346655pt;}
.x2{left:226.013322pt;}
.x6{left:243.613322pt;}
.xa{left:270.533333pt;}
.x11{left:286.533322pt;}
.x10{left:293.573322pt;}
.x17{left:302.208000pt;}
.x5{left:316.293322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.x16{left:397.920000pt;}
.x18{left:415.840000pt;}
.xd{left:470.906643pt;}
.xe{left:476.986655pt;}
.x1d{left:500.666667pt;}
.x23{left:545.186643pt;}
.x24{left:549.666655pt;}
.x25{left:685.093322pt;}
.x1{left:699.493322pt;}
}




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