
    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_5117f7a9b87fe7d77c33d49f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_da0a13f1812e91ca4e832a7e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_b20ef91c959abb2af0492ac6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003418;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_6ac278178e5fe33c63c94ce4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_df1a1c201721674703cf2d2a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_6ce1e37e2b48ecf148391ae8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6a30f57d9d53b41c815040ff.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7b4a6008279139107e3ee3f8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.061035;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_c185096b6f33a576eb5e8c23.woff')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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);}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.500000px;}
.v5{vertical-align:19.500000px;}
.v1{vertical-align:24.000000px;}
.v6{vertical-align:43.500000px;}
.v4{vertical-align:49.500000px;}
.ls2c{letter-spacing:-0.564000px;}
.lsd{letter-spacing:-0.546000px;}
.lsf{letter-spacing:-0.504000px;}
.ls11{letter-spacing:-0.462000px;}
.ls38{letter-spacing:-0.450000px;}
.ls5{letter-spacing:-0.420000px;}
.ls7{letter-spacing:-0.408000px;}
.ls2f{letter-spacing:-0.402000px;}
.ls19{letter-spacing:-0.378000px;}
.ls6{letter-spacing:-0.300000px;}
.ls20{letter-spacing:-0.282000px;}
.ls1d{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.150000px;}
.lse{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.132000px;}
.ls35{letter-spacing:-0.114000px;}
.ls2{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.084000px;}
.ls2a{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.156000px;}
.ls9{letter-spacing:0.174000px;}
.ls2d{letter-spacing:0.192000px;}
.ls0{letter-spacing:0.228000px;}
.ls2e{letter-spacing:0.264000px;}
.ls16{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.522000px;}
.ls12{letter-spacing:0.618000px;}
.ls24{letter-spacing:0.708000px;}
.ls30{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.744000px;}
.ls18{letter-spacing:1.194000px;}
.ls1b{letter-spacing:1.320000px;}
.ls36{letter-spacing:1.368000px;}
.lsa{letter-spacing:1.872000px;}
.ls2b{letter-spacing:1.980000px;}
.ls26{letter-spacing:2.208000px;}
.ls37{letter-spacing:3.084000px;}
.ls27{letter-spacing:3.708000px;}
.ls29{letter-spacing:3.768000px;}
.ls21{letter-spacing:14.376000px;}
.ls22{letter-spacing:14.496000px;}
.ls28{letter-spacing:17.208000px;}
.ls23{letter-spacing:18.198000px;}
.ls25{letter-spacing:21.528000px;}
.ls34{letter-spacing:38.652000px;}
.ls15{letter-spacing:39.480000px;}
.ls32{letter-spacing:40.152000px;}
.ls33{letter-spacing:41.652000px;}
.ls13{letter-spacing:55.476000px;}
.ls1c{letter-spacing:68.634000px;}
.ls1a{letter-spacing:68.664000px;}
.lsc{letter-spacing:75.372000px;}
.ls1e{letter-spacing:85.152000px;}
.ls1f{letter-spacing:101.652000px;}
.ls1{letter-spacing:147.204000px;}
.ls17{letter-spacing:150.084000px;}
.ls3{letter-spacing:849.414000px;}
.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;}
}
.ws27{word-spacing:-66.720000px;}
.ws23{word-spacing:-66.264000px;}
.ws1d{word-spacing:-66.000000px;}
.ws26{word-spacing:-65.598000px;}
.ws19{word-spacing:-65.436000px;}
.ws18{word-spacing:-51.624000px;}
.ws1e{word-spacing:-51.564000px;}
.ws1b{word-spacing:-49.692000px;}
.ws1a{word-spacing:-48.012000px;}
.ws1f{word-spacing:-47.802000px;}
.ws22{word-spacing:-47.682000px;}
.ws1c{word-spacing:-46.692000px;}
.ws25{word-spacing:-44.196000px;}
.ws24{word-spacing:-43.788000px;}
.wse{word-spacing:-25.152000px;}
.ws10{word-spacing:-20.610000px;}
.wsf{word-spacing:-20.340000px;}
.ws0{word-spacing:-18.984000px;}
.ws7{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.628000px;}
.ws9{word-spacing:-17.082000px;}
.ws16{word-spacing:-16.272000px;}
.wsa{word-spacing:-16.128000px;}
.ws13{word-spacing:-16.110000px;}
.wsb{word-spacing:-15.768000px;}
.ws3{word-spacing:-14.916000px;}
.ws28{word-spacing:-14.802000px;}
.wsc{word-spacing:-14.784000px;}
.ws12{word-spacing:-14.766000px;}
.ws17{word-spacing:-14.736000px;}
.wsd{word-spacing:-14.454000px;}
.ws21{word-spacing:-14.256000px;}
.ws20{word-spacing:-13.902000px;}
.ws2{word-spacing:-13.560000px;}
.ws5{word-spacing:-13.260000px;}
.ws15{word-spacing:-13.140000px;}
.ws11{word-spacing:-12.204000px;}
.ws14{word-spacing:-11.826000px;}
.ws6{word-spacing:-11.796000px;}
.ws4{word-spacing:-11.784000px;}
.ws1{word-spacing:0.000000px;}
._1c{margin-left:-15.522000px;}
._24{margin-left:-14.472000px;}
._1f{margin-left:-12.816000px;}
._21{margin-left:-11.784000px;}
._1b{margin-left:-6.456000px;}
._25{margin-left:-4.860000px;}
._10{margin-left:-3.366000px;}
._b{margin-left:-2.112000px;}
._1{margin-left:-1.056000px;}
._0{width:1.056000px;}
._2{width:2.736000px;}
._12{width:4.422000px;}
._11{width:5.940000px;}
._c{width:7.524000px;}
._13{width:8.580000px;}
._d{width:9.654000px;}
._17{width:11.550000px;}
._18{width:12.726000px;}
._e{width:13.728000px;}
._22{width:15.054000px;}
._34{width:16.056000px;}
._29{width:17.106000px;}
._f{width:18.150000px;}
._1d{width:19.212000px;}
._3a{width:20.304000px;}
._32{width:21.846000px;}
._2c{width:23.166000px;}
._2b{width:24.420000px;}
._20{width:44.958000px;}
._23{width:48.858000px;}
._3c{width:62.370000px;}
._3b{width:63.756000px;}
._1e{width:76.092000px;}
._37{width:89.022000px;}
._5{width:110.208000px;}
._33{width:129.156000px;}
._35{width:134.574000px;}
._36{width:135.828000px;}
._39{width:182.424000px;}
._38{width:183.876000px;}
._3{width:193.908000px;}
._4{width:201.204000px;}
._30{width:343.332000px;}
._31{width:344.430000px;}
._7{width:520.884000px;}
._6{width:849.384000px;}
._2e{width:1157.064000px;}
._19{width:1164.504000px;}
._14{width:1176.564000px;}
._26{width:1178.004000px;}
._28{width:1188.504000px;}
._16{width:1191.504000px;}
._1a{width:1199.622000px;}
._8{width:1205.004000px;}
._2d{width:1206.714000px;}
._15{width:1223.670000px;}
._2a{width:1233.336000px;}
._9{width:1235.658000px;}
._27{width:1236.714000px;}
._a{width:1262.124000px;}
._2f{width:2219.382000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs4{font-size:84.000000px;}
.fs8{font-size:90.000000px;}
.fs1{font-size:96.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:10.125000px;}
.y2f{bottom:88.537500px;}
.y19{bottom:88.912500px;}
.y4{bottom:95.287500px;}
.y2{bottom:129.037500px;}
.y150{bottom:154.170000px;}
.y16b{bottom:160.920000px;}
.y104{bottom:172.530000px;}
.y69{bottom:175.950000px;}
.yd6{bottom:176.700000px;}
.y120{bottom:179.700000px;}
.ye5{bottom:182.325000px;}
.yee{bottom:184.950000px;}
.y16a{bottom:186.825000px;}
.y14f{bottom:193.950000px;}
.y112{bottom:199.575000px;}
.y14e{bottom:204.825000px;}
.y11f{bottom:205.950000px;}
.yd5{bottom:206.700000px;}
.ye4{bottom:208.575000px;}
.y169{bottom:213.075000px;}
.y103{bottom:216.825000px;}
.y68{bottom:219.825000px;}
.y111{bottom:225.825000px;}
.yed{bottom:229.200000px;}
.y11e{bottom:232.200000px;}
.y168{bottom:239.325000px;}
.y14{bottom:240.075000px;}
.ybb{bottom:242.325000px;}
.y102{bottom:243.075000px;}
.y14d{bottom:251.700000px;}
.ye3{bottom:252.450000px;}
.yd4{bottom:255.075000px;}
.y13{bottom:261.450000px;}
.y14c{bottom:262.575000px;}
.y67{bottom:264.075000px;}
.y167{bottom:265.575000px;}
.y101{bottom:269.325000px;}
.y110{bottom:270.075000px;}
.yba{bottom:272.325000px;}
.yec{bottom:273.450000px;}
.y11d{bottom:276.450000px;}
.y12{bottom:286.950000px;}
.ye2{bottom:292.200000px;}
.y100{bottom:295.575000px;}
.yb9{bottom:302.745000px;}
.yd3{bottom:303.120000px;}
.y166{bottom:309.870000px;}
.y66{bottom:310.245000px;}
.y11{bottom:312.870000px;}
.ya4{bottom:313.245000px;}
.y14b{bottom:313.620000px;}
.y180{bottom:317.355000px;}
.yeb{bottom:317.730000px;}
.y11c{bottom:320.370000px;}
.y175{bottom:331.995000px;}
.yd2{bottom:333.495000px;}
.y165{bottom:336.120000px;}
.yff{bottom:339.495000px;}
.y10{bottom:349.620000px;}
.y65{bottom:349.995000px;}
.yb8{bottom:350.745000px;}
.y14a{bottom:356.745000px;}
.yea{bottom:361.980000px;}
.yd1{bottom:363.870000px;}
.y11b{bottom:364.605000px;}
.y44{bottom:364.980000px;}
.yfe{bottom:365.745000px;}
.y7a{bottom:368.355000px;}
.ya3{bottom:375.480000px;}
.y174{bottom:376.245000px;}
.y17f{bottom:379.620000px;}
.y164{bottom:388.230000px;}
.y64{bottom:390.120000px;}
.y43{bottom:390.870000px;}
.yfd{bottom:391.980000px;}
.yd0{bottom:393.870000px;}
.yb7{bottom:399.120000px;}
.y149{bottom:400.245000px;}
.y173{bottom:402.495000px;}
.ye9{bottom:405.870000px;}
.y11a{bottom:408.870000px;}
.yf{bottom:410.370000px;}
.y79{bottom:412.620000px;}
.y47{bottom:417.120000px;}
.yfc{bottom:418.245000px;}
.ye1{bottom:421.995000px;}
.ycf{bottom:424.245000px;}
.y172{bottom:428.370000px;}
.yb6{bottom:429.495000px;}
.y63{bottom:429.870000px;}
.y163{bottom:432.525000px;}
.ya2{bottom:437.775000px;}
.y17e{bottom:441.525000px;}
.yfb{bottom:444.525000px;}
.y148{bottom:444.900000px;}
.ye8{bottom:450.150000px;}
.ye0{bottom:452.400000px;}
.y42{bottom:453.150000px;}
.yce{bottom:454.275000px;}
.yf3{bottom:454.650000px;}
.y78{bottom:456.525000px;}
.y162{bottom:458.775000px;}
.ya1{bottom:464.025000px;}
.y17d{bottom:467.775000px;}
.y62{bottom:470.025000px;}
.ye{bottom:471.525000px;}
.yb5{bottom:477.525000px;}
.y41{bottom:479.400000px;}
.yf2{bottom:480.900000px;}
.ydf{bottom:482.400000px;}
.ycd{bottom:484.650000px;}
.y161{bottom:485.025000px;}
.y147{bottom:488.025000px;}
.yfa{bottom:489.525000px;}
.ya0{bottom:489.900000px;}
.y94{bottom:490.275000px;}
.yf6{bottom:493.650000px;}
.ye7{bottom:494.400000px;}
.y77{bottom:500.775000px;}
.y40{bottom:505.650000px;}
.yf1{bottom:506.775000px;}
.y171{bottom:507.150000px;}
.y61{bottom:509.775000px;}
.y160{bottom:510.900000px;}
.yde{bottom:512.775000px;}
.ycc{bottom:514.650000px;}
.y140{bottom:515.400000px;}
.y9f{bottom:516.150000px;}
.yf5{bottom:519.900000px;}
.yd{bottom:521.400000px;}
.yb4{bottom:525.900000px;}
.y12f{bottom:526.650000px;}
.y17c{bottom:530.025000px;}
.y3f{bottom:531.525000px;}
.y146{bottom:532.650000px;}
.yf0{bottom:533.025000px;}
.y170{bottom:533.400000px;}
.y93{bottom:534.525000px;}
.ye6{bottom:538.650000px;}
.y50{bottom:539.775000px;}
.ydd{bottom:543.150000px;}
.y76{bottom:545.025000px;}
.yf9{bottom:548.025000px;}
.y60{bottom:549.150000px;}
.y2d{bottom:549.900000px;}
.y15f{bottom:555.150000px;}
.yb3{bottom:555.900000px;}
.y17b{bottom:556.275000px;}
.y46{bottom:557.775000px;}
.y12c{bottom:559.650000px;}
.y9e{bottom:560.445000px;}
.yf4{bottom:564.195000px;}
.y4f{bottom:566.070000px;}
.y12e{bottom:566.445000px;}
.y84{bottom:572.445000px;}
.ydc{bottom:573.195000px;}
.ycb{bottom:575.070000px;}
.y145{bottom:575.820000px;}
.y5f{bottom:576.570000px;}
.yef{bottom:577.320000px;}
.y15e{bottom:581.445000px;}
.y12b{bottom:585.570000px;}
.y9d{bottom:586.695000px;}
.y2c{bottom:588.195000px;}
.y75{bottom:589.320000px;}
.y3e{bottom:593.820000px;}
.y92{bottom:600.570000px;}
.y5e{bottom:602.820000px;}
.ydb{bottom:603.570000px;}
.yb2{bottom:604.320000px;}
.yca{bottom:605.445000px;}
.yf8{bottom:606.945000px;}
.y15d{bottom:607.695000px;}
.y2b{bottom:608.445000px;}
.y4e{bottom:610.320000px;}
.y12a{bottom:611.820000px;}
.y83{bottom:616.695000px;}
.y17a{bottom:618.570000px;}
.y3d{bottom:620.070000px;}
.y135{bottom:623.820000px;}
.y2a{bottom:628.320000px;}
.y5d{bottom:629.820000px;}
.y91{bottom:630.945000px;}
.y74{bottom:633.570000px;}
.y15c{bottom:633.945000px;}
.yc9{bottom:635.820000px;}
.y129{bottom:638.070000px;}
.y9c{bottom:643.695000px;}
.y12d{bottom:644.445000px;}
.y3c{bottom:646.320000px;}
.y13f{bottom:647.820000px;}
.y29{bottom:648.570000px;}
.yf7{bottom:651.195000px;}
.yb1{bottom:652.320000px;}
.y5c{bottom:659.445000px;}
.yda{bottom:659.820000px;}
.y15b{bottom:660.195000px;}
.y82{bottom:660.945000px;}
.y128{bottom:664.320000px;}
.yc8{bottom:665.820000px;}
.y134{bottom:668.070000px;}
.y179{bottom:670.695000px;}
.y3b{bottom:672.570000px;}
.y13e{bottom:674.070000px;}
.y73{bottom:677.820000px;}
.yb0{bottom:682.695000px;}
.y15a{bottom:686.070000px;}
.y123{bottom:686.445000px;}
.y127{bottom:690.600000px;}
.y90{bottom:691.350000px;}
.y133{bottom:694.350000px;}
.yc7{bottom:696.225000px;}
.y178{bottom:696.975000px;}
.y3a{bottom:698.475000px;}
.y5b{bottom:699.225000px;}
.y13d{bottom:700.350000px;}
.y9b{bottom:702.600000px;}
.y28{bottom:704.850000px;}
.y81{bottom:705.225000px;}
.y144{bottom:708.600000px;}
.yaf{bottom:712.725000px;}
.y10f{bottom:713.100000px;}
.y126{bottom:716.475000px;}
.y132{bottom:720.600000px;}
.y8f{bottom:721.350000px;}
.y72{bottom:721.725000px;}
.yc{bottom:722.850000px;}
.y45{bottom:724.725000px;}
.y27{bottom:725.100000px;}
.yc6{bottom:726.225000px;}
.y13c{bottom:726.600000px;}
.y159{bottom:730.350000px;}
.y122{bottom:730.725000px;}
.y143{bottom:734.475000px;}
.y5a{bottom:738.600000px;}
.y10e{bottom:738.975000px;}
.y125{bottom:742.725000px;}
.yae{bottom:743.100000px;}
.y26{bottom:744.975000px;}
.y80{bottom:749.475000px;}
.y9a{bottom:750.600000px;}
.y13b{bottom:752.475000px;}
.yc5{bottom:756.600000px;}
.y177{bottom:759.225000px;}
.y39{bottom:760.725000px;}
.y131{bottom:764.850000px;}
.y25{bottom:765.225000px;}
.y71{bottom:765.975000px;}
.y59{bottom:767.100000px;}
.y124{bottom:768.975000px;}
.y121{bottom:770.475000px;}
.y8e{bottom:778.725000px;}
.y99{bottom:780.975000px;}
.y158{bottom:782.850000px;}
.yb{bottom:783.600000px;}
.y10d{bottom:784.350000px;}
.y24{bottom:785.475000px;}
.yc4{bottom:786.600000px;}
.y38{bottom:786.975000px;}
.yad{bottom:791.475000px;}
.y7f{bottom:793.725000px;}
.y16f{bottom:795.225000px;}
.y58{bottom:796.350000px;}
.y13a{bottom:796.725000px;}
.y130{bottom:804.600000px;}
.y70{bottom:810.225000px;}
.y98{bottom:811.350000px;}
.y176{bottom:811.725000px;}
.y37{bottom:813.225000px;}
.yc3{bottom:817.020000px;}
.y16e{bottom:821.505000px;}
.y139{bottom:823.005000px;}
.y157{bottom:827.145000px;}
.y119{bottom:828.645000px;}
.y10c{bottom:829.755000px;}
.ya{bottom:834.630000px;}
.y57{bottom:835.395000px;}
.y7e{bottom:837.630000px;}
.y36{bottom:839.520000px;}
.y23{bottom:841.380000px;}
.yc2{bottom:847.380000px;}
.y16d{bottom:847.755000px;}
.y138{bottom:849.255000px;}
.y6f{bottom:854.505000px;}
.y118{bottom:854.880000px;}
.y8d{bottom:859.380000px;}
.y22{bottom:861.630000px;}
.y56{bottom:865.005000px;}
.y35{bottom:865.770000px;}
.y9{bottom:867.630000px;}
.yac{bottom:869.895000px;}
.y156{bottom:871.380000px;}
.y97{bottom:871.755000px;}
.y16c{bottom:873.630000px;}
.y10b{bottom:874.005000px;}
.y137{bottom:875.505000px;}
.yc1{bottom:877.380000px;}
.y117{bottom:880.755000px;}
.y21{bottom:881.880000px;}
.y8c{bottom:889.755000px;}
.y34{bottom:891.630000px;}
.y6e{bottom:898.755000px;}
.yab{bottom:899.880000px;}
.y10a{bottom:900.255000px;}
.y96{bottom:901.755000px;}
.y20{bottom:902.130000px;}
.y55{bottom:904.755000px;}
.y116{bottom:907.005000px;}
.yc0{bottom:907.755000px;}
.y8{bottom:908.130000px;}
.y4d{bottom:909.630000px;}
.y155{bottom:915.255000px;}
.y142{bottom:917.880000px;}
.y8b{bottom:919.755000px;}
.y1f{bottom:922.005000px;}
.y7d{bottom:926.130000px;}
.y109{bottom:926.505000px;}
.y136{bottom:927.630000px;}
.y95{bottom:932.130000px;}
.y4c{bottom:935.880000px;}
.ybf{bottom:937.755000px;}
.y6d{bottom:943.005000px;}
.y141{bottom:944.130000px;}
.y54{bottom:944.880000px;}
.yaa{bottom:948.300000px;}
.y8a{bottom:950.175000px;}
.y115{bottom:951.300000px;}
.y108{bottom:952.800000px;}
.y33{bottom:953.925000px;}
.y154{bottom:958.425000px;}
.y4b{bottom:962.175000px;}
.y7{bottom:964.425000px;}
.ybe{bottom:968.175000px;}
.y7c{bottom:970.425000px;}
.y114{bottom:977.550000px;}
.y1e{bottom:978.300000px;}
.y107{bottom:979.050000px;}
.y32{bottom:980.175000px;}
.y53{bottom:985.050000px;}
.y6c{bottom:986.925000px;}
.y4a{bottom:988.425000px;}
.ya9{bottom:996.300000px;}
.ybd{bottom:998.175000px;}
.y1d{bottom:998.550000px;}
.y153{bottom:1001.550000px;}
.y31{bottom:1006.425000px;}
.y89{bottom:1010.550000px;}
.y152{bottom:1012.425000px;}
.y7b{bottom:1014.675000px;}
.y6{bottom:1016.175000px;}
.y1c{bottom:1018.425000px;}
.y106{bottom:1022.925000px;}
.y52{bottom:1024.800000px;}
.ya8{bottom:1026.675000px;}
.ybc{bottom:1028.550000px;}
.yd9{bottom:1028.925000px;}
.y6b{bottom:1031.175000px;}
.y30{bottom:1032.675000px;}
.y113{bottom:1034.550000px;}
.y1b{bottom:1038.675000px;}
.y88{bottom:1040.925000px;}
.y105{bottom:1049.175000px;}
.ya7{bottom:1057.050000px;}
.y1a{bottom:1058.925000px;}
.yd8{bottom:1059.300000px;}
.y5{bottom:1060.425000px;}
.y51{bottom:1064.925000px;}
.y151{bottom:1067.175000px;}
.y6a{bottom:1075.455000px;}
.yd7{bottom:1089.330000px;}
.y87{bottom:1091.580000px;}
.y49{bottom:1093.455000px;}
.y1{bottom:1100.205000px;}
.y16{bottom:1109.580000px;}
.ya6{bottom:1114.080000px;}
.y48{bottom:1119.705000px;}
.y86{bottom:1165.080000px;}
.y15{bottom:1165.455000px;}
.y18{bottom:1166.955000px;}
.ya5{bottom:1168.080000px;}
.y2e{bottom:1169.955000px;}
.y85{bottom:1184.955000px;}
.y17{bottom:1186.455000px;}
.h2{height:43.875000px;}
.h7{height:44.534180px;}
.h8{height:53.709961px;}
.h10{height:54.430664px;}
.hc{height:59.677734px;}
.h1{height:65.645508px;}
.hf{height:67.579102px;}
.h15{height:67.837600px;}
.ha{height:71.613281px;}
.h11{height:74.953125px;}
.h9{height:79.866211px;}
.h6{height:86.009766px;}
.h12{height:92.153320px;}
.hd{height:93.691406px;}
.h3{height:95.484375px;}
.h4{height:98.296875px;}
.h13{height:105.123047px;}
.he{height:107.419922px;}
.h14{height:109.145508px;}
.h5{height:110.583984px;}
.hb{height:112.429688px;}
.h0{height:1263.000000px;}
.w3{width:219.450000px;}
.w5{width:219.480000px;}
.w4{width:219.495000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:74.287500px;}
.x16{left:82.912487px;}
.x4{left:109.950000px;}
.x13{left:115.912487px;}
.x14{left:121.912487px;}
.x33{left:125.287487px;}
.x17{left:128.287487px;}
.x2{left:159.450000px;}
.x15{left:168.074987px;}
.x1e{left:172.949987px;}
.x34{left:186.449987px;}
.x11{left:201.074987px;}
.x29{left:204.449987px;}
.x32{left:209.699987px;}
.x18{left:213.449987px;}
.x6{left:220.200000px;}
.xa{left:231.119987px;}
.x35{left:240.494987px;}
.x25{left:258.869987px;}
.x36{left:267.494987px;}
.x1a{left:279.494987px;}
.x1f{left:283.244987px;}
.xf{left:293.745000px;}
.x26{left:299.744987px;}
.x28{left:301.619987px;}
.x21{left:309.524987px;}
.x2a{left:339.524987px;}
.x9{left:344.024987px;}
.x2b{left:348.149987px;}
.x1d{left:349.649987px;}
.x23{left:356.024987px;}
.x12{left:376.649987px;}
.x3{left:378.900000px;}
.x1c{left:386.774987px;}
.x8{left:389.399987px;}
.x22{left:392.774987px;}
.x20{left:397.694987px;}
.xd{left:404.069987px;}
.x31{left:416.819987px;}
.x2c{left:419.069987px;}
.x2d{left:433.319987px;}
.xc{left:437.444987px;}
.x2e{left:440.444987px;}
.x7{left:489.224987px;}
.x2f{left:508.349987px;}
.x10{left:513.225000px;}
.x30{left:572.129987px;}
.x5{left:598.395000px;}
.x19{left:633.254987px;}
.x1{left:635.894987px;}
.x24{left:733.424987px;}
.x1b{left:788.219987px;}
.xb{left:797.579987px;}
.x27{left:818.594987px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.000000pt;}
.v5{vertical-align:17.333333pt;}
.v1{vertical-align:21.333333pt;}
.v6{vertical-align:38.666667pt;}
.v4{vertical-align:44.000000pt;}
.ls2c{letter-spacing:-0.501333pt;}
.lsd{letter-spacing:-0.485333pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls11{letter-spacing:-0.410667pt;}
.ls38{letter-spacing:-0.400000pt;}
.ls5{letter-spacing:-0.373333pt;}
.ls7{letter-spacing:-0.362667pt;}
.ls2f{letter-spacing:-0.357333pt;}
.ls19{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:-0.266667pt;}
.ls20{letter-spacing:-0.250667pt;}
.ls1d{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.133333pt;}
.lse{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.117333pt;}
.ls35{letter-spacing:-0.101333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.074667pt;}
.ls2a{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.138667pt;}
.ls9{letter-spacing:0.154667pt;}
.ls2d{letter-spacing:0.170667pt;}
.ls0{letter-spacing:0.202667pt;}
.ls2e{letter-spacing:0.234667pt;}
.ls16{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.464000pt;}
.ls12{letter-spacing:0.549333pt;}
.ls24{letter-spacing:0.629333pt;}
.ls30{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.661333pt;}
.ls18{letter-spacing:1.061333pt;}
.ls1b{letter-spacing:1.173333pt;}
.ls36{letter-spacing:1.216000pt;}
.lsa{letter-spacing:1.664000pt;}
.ls2b{letter-spacing:1.760000pt;}
.ls26{letter-spacing:1.962667pt;}
.ls37{letter-spacing:2.741333pt;}
.ls27{letter-spacing:3.296000pt;}
.ls29{letter-spacing:3.349333pt;}
.ls21{letter-spacing:12.778667pt;}
.ls22{letter-spacing:12.885333pt;}
.ls28{letter-spacing:15.296000pt;}
.ls23{letter-spacing:16.176000pt;}
.ls25{letter-spacing:19.136000pt;}
.ls34{letter-spacing:34.357333pt;}
.ls15{letter-spacing:35.093333pt;}
.ls32{letter-spacing:35.690667pt;}
.ls33{letter-spacing:37.024000pt;}
.ls13{letter-spacing:49.312000pt;}
.ls1c{letter-spacing:61.008000pt;}
.ls1a{letter-spacing:61.034667pt;}
.lsc{letter-spacing:66.997333pt;}
.ls1e{letter-spacing:75.690667pt;}
.ls1f{letter-spacing:90.357333pt;}
.ls1{letter-spacing:130.848000pt;}
.ls17{letter-spacing:133.408000pt;}
.ls3{letter-spacing:755.034667pt;}
.ws27{word-spacing:-59.306667pt;}
.ws23{word-spacing:-58.901333pt;}
.ws1d{word-spacing:-58.666667pt;}
.ws26{word-spacing:-58.309333pt;}
.ws19{word-spacing:-58.165333pt;}
.ws18{word-spacing:-45.888000pt;}
.ws1e{word-spacing:-45.834667pt;}
.ws1b{word-spacing:-44.170667pt;}
.ws1a{word-spacing:-42.677333pt;}
.ws1f{word-spacing:-42.490667pt;}
.ws22{word-spacing:-42.384000pt;}
.ws1c{word-spacing:-41.504000pt;}
.ws25{word-spacing:-39.285333pt;}
.ws24{word-spacing:-38.922667pt;}
.wse{word-spacing:-22.357333pt;}
.ws10{word-spacing:-18.320000pt;}
.wsf{word-spacing:-18.080000pt;}
.ws0{word-spacing:-16.874667pt;}
.ws7{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.669333pt;}
.ws9{word-spacing:-15.184000pt;}
.ws16{word-spacing:-14.464000pt;}
.wsa{word-spacing:-14.336000pt;}
.ws13{word-spacing:-14.320000pt;}
.wsb{word-spacing:-14.016000pt;}
.ws3{word-spacing:-13.258667pt;}
.ws28{word-spacing:-13.157333pt;}
.wsc{word-spacing:-13.141333pt;}
.ws12{word-spacing:-13.125333pt;}
.ws17{word-spacing:-13.098667pt;}
.wsd{word-spacing:-12.848000pt;}
.ws21{word-spacing:-12.672000pt;}
.ws20{word-spacing:-12.357333pt;}
.ws2{word-spacing:-12.053333pt;}
.ws5{word-spacing:-11.786667pt;}
.ws15{word-spacing:-11.680000pt;}
.ws11{word-spacing:-10.848000pt;}
.ws14{word-spacing:-10.512000pt;}
.ws6{word-spacing:-10.485333pt;}
.ws4{word-spacing:-10.474667pt;}
.ws1{word-spacing:0.000000pt;}
._1c{margin-left:-13.797333pt;}
._24{margin-left:-12.864000pt;}
._1f{margin-left:-11.392000pt;}
._21{margin-left:-10.474667pt;}
._1b{margin-left:-5.738667pt;}
._25{margin-left:-4.320000pt;}
._10{margin-left:-2.992000pt;}
._b{margin-left:-1.877333pt;}
._1{margin-left:-0.938667pt;}
._0{width:0.938667pt;}
._2{width:2.432000pt;}
._12{width:3.930667pt;}
._11{width:5.280000pt;}
._c{width:6.688000pt;}
._13{width:7.626667pt;}
._d{width:8.581333pt;}
._17{width:10.266667pt;}
._18{width:11.312000pt;}
._e{width:12.202667pt;}
._22{width:13.381333pt;}
._34{width:14.272000pt;}
._29{width:15.205333pt;}
._f{width:16.133333pt;}
._1d{width:17.077333pt;}
._3a{width:18.048000pt;}
._32{width:19.418667pt;}
._2c{width:20.592000pt;}
._2b{width:21.706667pt;}
._20{width:39.962667pt;}
._23{width:43.429333pt;}
._3c{width:55.440000pt;}
._3b{width:56.672000pt;}
._1e{width:67.637333pt;}
._37{width:79.130667pt;}
._5{width:97.962667pt;}
._33{width:114.805333pt;}
._35{width:119.621333pt;}
._36{width:120.736000pt;}
._39{width:162.154667pt;}
._38{width:163.445333pt;}
._3{width:172.362667pt;}
._4{width:178.848000pt;}
._30{width:305.184000pt;}
._31{width:306.160000pt;}
._7{width:463.008000pt;}
._6{width:755.008000pt;}
._2e{width:1028.501333pt;}
._19{width:1035.114667pt;}
._14{width:1045.834667pt;}
._26{width:1047.114667pt;}
._28{width:1056.448000pt;}
._16{width:1059.114667pt;}
._1a{width:1066.330667pt;}
._8{width:1071.114667pt;}
._2d{width:1072.634667pt;}
._15{width:1087.706667pt;}
._2a{width:1096.298667pt;}
._9{width:1098.362667pt;}
._27{width:1099.301333pt;}
._a{width:1121.888000pt;}
._2f{width:1972.784000pt;}
.fs9{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs4{font-size:74.666667pt;}
.fs8{font-size:80.000000pt;}
.fs1{font-size:85.333333pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:9.000000pt;}
.y2f{bottom:78.700000pt;}
.y19{bottom:79.033333pt;}
.y4{bottom:84.700000pt;}
.y2{bottom:114.700000pt;}
.y150{bottom:137.040000pt;}
.y16b{bottom:143.040000pt;}
.y104{bottom:153.360000pt;}
.y69{bottom:156.400000pt;}
.yd6{bottom:157.066667pt;}
.y120{bottom:159.733333pt;}
.ye5{bottom:162.066667pt;}
.yee{bottom:164.400000pt;}
.y16a{bottom:166.066667pt;}
.y14f{bottom:172.400000pt;}
.y112{bottom:177.400000pt;}
.y14e{bottom:182.066667pt;}
.y11f{bottom:183.066667pt;}
.yd5{bottom:183.733333pt;}
.ye4{bottom:185.400000pt;}
.y169{bottom:189.400000pt;}
.y103{bottom:192.733333pt;}
.y68{bottom:195.400000pt;}
.y111{bottom:200.733333pt;}
.yed{bottom:203.733333pt;}
.y11e{bottom:206.400000pt;}
.y168{bottom:212.733333pt;}
.y14{bottom:213.400000pt;}
.ybb{bottom:215.400000pt;}
.y102{bottom:216.066667pt;}
.y14d{bottom:223.733333pt;}
.ye3{bottom:224.400000pt;}
.yd4{bottom:226.733333pt;}
.y13{bottom:232.400000pt;}
.y14c{bottom:233.400000pt;}
.y67{bottom:234.733333pt;}
.y167{bottom:236.066667pt;}
.y101{bottom:239.400000pt;}
.y110{bottom:240.066667pt;}
.yba{bottom:242.066667pt;}
.yec{bottom:243.066667pt;}
.y11d{bottom:245.733333pt;}
.y12{bottom:255.066667pt;}
.ye2{bottom:259.733333pt;}
.y100{bottom:262.733333pt;}
.yb9{bottom:269.106667pt;}
.yd3{bottom:269.440000pt;}
.y166{bottom:275.440000pt;}
.y66{bottom:275.773333pt;}
.y11{bottom:278.106667pt;}
.ya4{bottom:278.440000pt;}
.y14b{bottom:278.773333pt;}
.y180{bottom:282.093333pt;}
.yeb{bottom:282.426667pt;}
.y11c{bottom:284.773333pt;}
.y175{bottom:295.106667pt;}
.yd2{bottom:296.440000pt;}
.y165{bottom:298.773333pt;}
.yff{bottom:301.773333pt;}
.y10{bottom:310.773333pt;}
.y65{bottom:311.106667pt;}
.yb8{bottom:311.773333pt;}
.y14a{bottom:317.106667pt;}
.yea{bottom:321.760000pt;}
.yd1{bottom:323.440000pt;}
.y11b{bottom:324.093333pt;}
.y44{bottom:324.426667pt;}
.yfe{bottom:325.106667pt;}
.y7a{bottom:327.426667pt;}
.ya3{bottom:333.760000pt;}
.y174{bottom:334.440000pt;}
.y17f{bottom:337.440000pt;}
.y164{bottom:345.093333pt;}
.y64{bottom:346.773333pt;}
.y43{bottom:347.440000pt;}
.yfd{bottom:348.426667pt;}
.yd0{bottom:350.106667pt;}
.yb7{bottom:354.773333pt;}
.y149{bottom:355.773333pt;}
.y173{bottom:357.773333pt;}
.ye9{bottom:360.773333pt;}
.y11a{bottom:363.440000pt;}
.yf{bottom:364.773333pt;}
.y79{bottom:366.773333pt;}
.y47{bottom:370.773333pt;}
.yfc{bottom:371.773333pt;}
.ye1{bottom:375.106667pt;}
.ycf{bottom:377.106667pt;}
.y172{bottom:380.773333pt;}
.yb6{bottom:381.773333pt;}
.y63{bottom:382.106667pt;}
.y163{bottom:384.466667pt;}
.ya2{bottom:389.133333pt;}
.y17e{bottom:392.466667pt;}
.yfb{bottom:395.133333pt;}
.y148{bottom:395.466667pt;}
.ye8{bottom:400.133333pt;}
.ye0{bottom:402.133333pt;}
.y42{bottom:402.800000pt;}
.yce{bottom:403.800000pt;}
.yf3{bottom:404.133333pt;}
.y78{bottom:405.800000pt;}
.y162{bottom:407.800000pt;}
.ya1{bottom:412.466667pt;}
.y17d{bottom:415.800000pt;}
.y62{bottom:417.800000pt;}
.ye{bottom:419.133333pt;}
.yb5{bottom:424.466667pt;}
.y41{bottom:426.133333pt;}
.yf2{bottom:427.466667pt;}
.ydf{bottom:428.800000pt;}
.ycd{bottom:430.800000pt;}
.y161{bottom:431.133333pt;}
.y147{bottom:433.800000pt;}
.yfa{bottom:435.133333pt;}
.ya0{bottom:435.466667pt;}
.y94{bottom:435.800000pt;}
.yf6{bottom:438.800000pt;}
.ye7{bottom:439.466667pt;}
.y77{bottom:445.133333pt;}
.y40{bottom:449.466667pt;}
.yf1{bottom:450.466667pt;}
.y171{bottom:450.800000pt;}
.y61{bottom:453.133333pt;}
.y160{bottom:454.133333pt;}
.yde{bottom:455.800000pt;}
.ycc{bottom:457.466667pt;}
.y140{bottom:458.133333pt;}
.y9f{bottom:458.800000pt;}
.yf5{bottom:462.133333pt;}
.yd{bottom:463.466667pt;}
.yb4{bottom:467.466667pt;}
.y12f{bottom:468.133333pt;}
.y17c{bottom:471.133333pt;}
.y3f{bottom:472.466667pt;}
.y146{bottom:473.466667pt;}
.yf0{bottom:473.800000pt;}
.y170{bottom:474.133333pt;}
.y93{bottom:475.133333pt;}
.ye6{bottom:478.800000pt;}
.y50{bottom:479.800000pt;}
.ydd{bottom:482.800000pt;}
.y76{bottom:484.466667pt;}
.yf9{bottom:487.133333pt;}
.y60{bottom:488.133333pt;}
.y2d{bottom:488.800000pt;}
.y15f{bottom:493.466667pt;}
.yb3{bottom:494.133333pt;}
.y17b{bottom:494.466667pt;}
.y46{bottom:495.800000pt;}
.y12c{bottom:497.466667pt;}
.y9e{bottom:498.173333pt;}
.yf4{bottom:501.506667pt;}
.y4f{bottom:503.173333pt;}
.y12e{bottom:503.506667pt;}
.y84{bottom:508.840000pt;}
.ydc{bottom:509.506667pt;}
.ycb{bottom:511.173333pt;}
.y145{bottom:511.840000pt;}
.y5f{bottom:512.506667pt;}
.yef{bottom:513.173333pt;}
.y15e{bottom:516.840000pt;}
.y12b{bottom:520.506667pt;}
.y9d{bottom:521.506667pt;}
.y2c{bottom:522.840000pt;}
.y75{bottom:523.840000pt;}
.y3e{bottom:527.840000pt;}
.y92{bottom:533.840000pt;}
.y5e{bottom:535.840000pt;}
.ydb{bottom:536.506667pt;}
.yb2{bottom:537.173333pt;}
.yca{bottom:538.173333pt;}
.yf8{bottom:539.506667pt;}
.y15d{bottom:540.173333pt;}
.y2b{bottom:540.840000pt;}
.y4e{bottom:542.506667pt;}
.y12a{bottom:543.840000pt;}
.y83{bottom:548.173333pt;}
.y17a{bottom:549.840000pt;}
.y3d{bottom:551.173333pt;}
.y135{bottom:554.506667pt;}
.y2a{bottom:558.506667pt;}
.y5d{bottom:559.840000pt;}
.y91{bottom:560.840000pt;}
.y74{bottom:563.173333pt;}
.y15c{bottom:563.506667pt;}
.yc9{bottom:565.173333pt;}
.y129{bottom:567.173333pt;}
.y9c{bottom:572.173333pt;}
.y12d{bottom:572.840000pt;}
.y3c{bottom:574.506667pt;}
.y13f{bottom:575.840000pt;}
.y29{bottom:576.506667pt;}
.yf7{bottom:578.840000pt;}
.yb1{bottom:579.840000pt;}
.y5c{bottom:586.173333pt;}
.yda{bottom:586.506667pt;}
.y15b{bottom:586.840000pt;}
.y82{bottom:587.506667pt;}
.y128{bottom:590.506667pt;}
.yc8{bottom:591.840000pt;}
.y134{bottom:593.840000pt;}
.y179{bottom:596.173333pt;}
.y3b{bottom:597.840000pt;}
.y13e{bottom:599.173333pt;}
.y73{bottom:602.506667pt;}
.yb0{bottom:606.840000pt;}
.y15a{bottom:609.840000pt;}
.y123{bottom:610.173333pt;}
.y127{bottom:613.866667pt;}
.y90{bottom:614.533333pt;}
.y133{bottom:617.200000pt;}
.yc7{bottom:618.866667pt;}
.y178{bottom:619.533333pt;}
.y3a{bottom:620.866667pt;}
.y5b{bottom:621.533333pt;}
.y13d{bottom:622.533333pt;}
.y9b{bottom:624.533333pt;}
.y28{bottom:626.533333pt;}
.y81{bottom:626.866667pt;}
.y144{bottom:629.866667pt;}
.yaf{bottom:633.533333pt;}
.y10f{bottom:633.866667pt;}
.y126{bottom:636.866667pt;}
.y132{bottom:640.533333pt;}
.y8f{bottom:641.200000pt;}
.y72{bottom:641.533333pt;}
.yc{bottom:642.533333pt;}
.y45{bottom:644.200000pt;}
.y27{bottom:644.533333pt;}
.yc6{bottom:645.533333pt;}
.y13c{bottom:645.866667pt;}
.y159{bottom:649.200000pt;}
.y122{bottom:649.533333pt;}
.y143{bottom:652.866667pt;}
.y5a{bottom:656.533333pt;}
.y10e{bottom:656.866667pt;}
.y125{bottom:660.200000pt;}
.yae{bottom:660.533333pt;}
.y26{bottom:662.200000pt;}
.y80{bottom:666.200000pt;}
.y9a{bottom:667.200000pt;}
.y13b{bottom:668.866667pt;}
.yc5{bottom:672.533333pt;}
.y177{bottom:674.866667pt;}
.y39{bottom:676.200000pt;}
.y131{bottom:679.866667pt;}
.y25{bottom:680.200000pt;}
.y71{bottom:680.866667pt;}
.y59{bottom:681.866667pt;}
.y124{bottom:683.533333pt;}
.y121{bottom:684.866667pt;}
.y8e{bottom:692.200000pt;}
.y99{bottom:694.200000pt;}
.y158{bottom:695.866667pt;}
.yb{bottom:696.533333pt;}
.y10d{bottom:697.200000pt;}
.y24{bottom:698.200000pt;}
.yc4{bottom:699.200000pt;}
.y38{bottom:699.533333pt;}
.yad{bottom:703.533333pt;}
.y7f{bottom:705.533333pt;}
.y16f{bottom:706.866667pt;}
.y58{bottom:707.866667pt;}
.y13a{bottom:708.200000pt;}
.y130{bottom:715.200000pt;}
.y70{bottom:720.200000pt;}
.y98{bottom:721.200000pt;}
.y176{bottom:721.533333pt;}
.y37{bottom:722.866667pt;}
.yc3{bottom:726.240000pt;}
.y16e{bottom:730.226667pt;}
.y139{bottom:731.560000pt;}
.y157{bottom:735.240000pt;}
.y119{bottom:736.573333pt;}
.y10c{bottom:737.560000pt;}
.ya{bottom:741.893333pt;}
.y57{bottom:742.573333pt;}
.y7e{bottom:744.560000pt;}
.y36{bottom:746.240000pt;}
.y23{bottom:747.893333pt;}
.yc2{bottom:753.226667pt;}
.y16d{bottom:753.560000pt;}
.y138{bottom:754.893333pt;}
.y6f{bottom:759.560000pt;}
.y118{bottom:759.893333pt;}
.y8d{bottom:763.893333pt;}
.y22{bottom:765.893333pt;}
.y56{bottom:768.893333pt;}
.y35{bottom:769.573333pt;}
.y9{bottom:771.226667pt;}
.yac{bottom:773.240000pt;}
.y156{bottom:774.560000pt;}
.y97{bottom:774.893333pt;}
.y16c{bottom:776.560000pt;}
.y10b{bottom:776.893333pt;}
.y137{bottom:778.226667pt;}
.yc1{bottom:779.893333pt;}
.y117{bottom:782.893333pt;}
.y21{bottom:783.893333pt;}
.y8c{bottom:790.893333pt;}
.y34{bottom:792.560000pt;}
.y6e{bottom:798.893333pt;}
.yab{bottom:799.893333pt;}
.y10a{bottom:800.226667pt;}
.y96{bottom:801.560000pt;}
.y20{bottom:801.893333pt;}
.y55{bottom:804.226667pt;}
.y116{bottom:806.226667pt;}
.yc0{bottom:806.893333pt;}
.y8{bottom:807.226667pt;}
.y4d{bottom:808.560000pt;}
.y155{bottom:813.560000pt;}
.y142{bottom:815.893333pt;}
.y8b{bottom:817.560000pt;}
.y1f{bottom:819.560000pt;}
.y7d{bottom:823.226667pt;}
.y109{bottom:823.560000pt;}
.y136{bottom:824.560000pt;}
.y95{bottom:828.560000pt;}
.y4c{bottom:831.893333pt;}
.ybf{bottom:833.560000pt;}
.y6d{bottom:838.226667pt;}
.y141{bottom:839.226667pt;}
.y54{bottom:839.893333pt;}
.yaa{bottom:842.933333pt;}
.y8a{bottom:844.600000pt;}
.y115{bottom:845.600000pt;}
.y108{bottom:846.933333pt;}
.y33{bottom:847.933333pt;}
.y154{bottom:851.933333pt;}
.y4b{bottom:855.266667pt;}
.y7{bottom:857.266667pt;}
.ybe{bottom:860.600000pt;}
.y7c{bottom:862.600000pt;}
.y114{bottom:868.933333pt;}
.y1e{bottom:869.600000pt;}
.y107{bottom:870.266667pt;}
.y32{bottom:871.266667pt;}
.y53{bottom:875.600000pt;}
.y6c{bottom:877.266667pt;}
.y4a{bottom:878.600000pt;}
.ya9{bottom:885.600000pt;}
.ybd{bottom:887.266667pt;}
.y1d{bottom:887.600000pt;}
.y153{bottom:890.266667pt;}
.y31{bottom:894.600000pt;}
.y89{bottom:898.266667pt;}
.y152{bottom:899.933333pt;}
.y7b{bottom:901.933333pt;}
.y6{bottom:903.266667pt;}
.y1c{bottom:905.266667pt;}
.y106{bottom:909.266667pt;}
.y52{bottom:910.933333pt;}
.ya8{bottom:912.600000pt;}
.ybc{bottom:914.266667pt;}
.yd9{bottom:914.600000pt;}
.y6b{bottom:916.600000pt;}
.y30{bottom:917.933333pt;}
.y113{bottom:919.600000pt;}
.y1b{bottom:923.266667pt;}
.y88{bottom:925.266667pt;}
.y105{bottom:932.600000pt;}
.ya7{bottom:939.600000pt;}
.y1a{bottom:941.266667pt;}
.yd8{bottom:941.600000pt;}
.y5{bottom:942.600000pt;}
.y51{bottom:946.600000pt;}
.y151{bottom:948.600000pt;}
.y6a{bottom:955.960000pt;}
.yd7{bottom:968.293333pt;}
.y87{bottom:970.293333pt;}
.y49{bottom:971.960000pt;}
.y1{bottom:977.960000pt;}
.y16{bottom:986.293333pt;}
.ya6{bottom:990.293333pt;}
.y48{bottom:995.293333pt;}
.y86{bottom:1035.626667pt;}
.y15{bottom:1035.960000pt;}
.y18{bottom:1037.293333pt;}
.ya5{bottom:1038.293333pt;}
.y2e{bottom:1039.960000pt;}
.y85{bottom:1053.293333pt;}
.y17{bottom:1054.626667pt;}
.h2{height:39.000000pt;}
.h7{height:39.585938pt;}
.h8{height:47.742188pt;}
.h10{height:48.382812pt;}
.hc{height:53.046875pt;}
.h1{height:58.351562pt;}
.hf{height:60.070312pt;}
.h15{height:60.300089pt;}
.ha{height:63.656250pt;}
.h11{height:66.625000pt;}
.h9{height:70.992188pt;}
.h6{height:76.453125pt;}
.h12{height:81.914062pt;}
.hd{height:83.281250pt;}
.h3{height:84.875000pt;}
.h4{height:87.375000pt;}
.h13{height:93.442708pt;}
.he{height:95.484375pt;}
.h14{height:97.018229pt;}
.h5{height:98.296875pt;}
.hb{height:99.937500pt;}
.h0{height:1122.666667pt;}
.w3{width:195.066667pt;}
.w5{width:195.093333pt;}
.w4{width:195.106667pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:66.033333pt;}
.x16{left:73.699988pt;}
.x4{left:97.733333pt;}
.x13{left:103.033322pt;}
.x14{left:108.366655pt;}
.x33{left:111.366655pt;}
.x17{left:114.033322pt;}
.x2{left:141.733333pt;}
.x15{left:149.399988pt;}
.x1e{left:153.733322pt;}
.x34{left:165.733322pt;}
.x11{left:178.733322pt;}
.x29{left:181.733322pt;}
.x32{left:186.399988pt;}
.x18{left:189.733322pt;}
.x6{left:195.733333pt;}
.xa{left:205.439988pt;}
.x35{left:213.773322pt;}
.x25{left:230.106655pt;}
.x36{left:237.773322pt;}
.x1a{left:248.439988pt;}
.x1f{left:251.773322pt;}
.xf{left:261.106667pt;}
.x26{left:266.439988pt;}
.x28{left:268.106655pt;}
.x21{left:275.133322pt;}
.x2a{left:301.799988pt;}
.x9{left:305.799988pt;}
.x2b{left:309.466655pt;}
.x1d{left:310.799988pt;}
.x23{left:316.466655pt;}
.x12{left:334.799988pt;}
.x3{left:336.800000pt;}
.x1c{left:343.799988pt;}
.x8{left:346.133322pt;}
.x22{left:349.133322pt;}
.x20{left:353.506655pt;}
.xd{left:359.173322pt;}
.x31{left:370.506655pt;}
.x2c{left:372.506655pt;}
.x2d{left:385.173322pt;}
.xc{left:388.839988pt;}
.x2e{left:391.506655pt;}
.x7{left:434.866655pt;}
.x2f{left:451.866655pt;}
.x10{left:456.200000pt;}
.x30{left:508.559988pt;}
.x5{left:531.906667pt;}
.x19{left:562.893322pt;}
.x1{left:565.239988pt;}
.x24{left:651.933322pt;}
.x1b{left:700.639988pt;}
.xb{left:708.959988pt;}
.x27{left:727.639988pt;}
}




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