
    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_4d4a7e027155f33f55d24e01.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956000;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_ea894cd6097cb446ca2834c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.131348;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_4476810c61614c7e8c163a63.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.007812;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_7ae8ce04bfc43a907e5c0162.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.079102;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_95343b6db644808b66cd2703.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932129;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_a6f40cff98bedc47eb302592.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.098145;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_6c851098410491ac5cf3eb08.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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;}
.v1{vertical-align:25.800000px;}
.v2{vertical-align:45.600000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.042000px;}
.ls7{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.168000px;}
.ls5{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.192000px;}
.lsa{letter-spacing:0.228000px;}
.ls0{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.302400px;}
.ls4{letter-spacing:43.140000px;}
.ls3{letter-spacing:59.940000px;}
.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:-41.760000px;}
.ws0{word-spacing:-33.408000px;}
.ws5{word-spacing:-29.232000px;}
.ws6{word-spacing:-23.385600px;}
.ws2{word-spacing:-19.944000px;}
.ws7{word-spacing:-16.620000px;}
.ws3{word-spacing:-14.958000px;}
.ws4{word-spacing:0.000000px;}
._c{margin-left:-342.288000px;}
._e{margin-left:-90.540000px;}
._2{margin-left:-1.008000px;}
._0{width:1.386000px;}
._1{width:3.222000px;}
._5{width:4.770000px;}
._a{width:5.850000px;}
._9{width:6.876000px;}
._3{width:8.136000px;}
._4{width:9.216000px;}
._7{width:10.656000px;}
._8{width:11.808000px;}
._12{width:13.536000px;}
._10{width:14.544000px;}
._11{width:16.398000px;}
._18{width:17.928000px;}
._17{width:18.936000px;}
._22{width:20.070000px;}
._6{width:21.096000px;}
._14{width:22.176000px;}
._13{width:23.184000px;}
._19{width:27.072000px;}
._1a{width:28.800000px;}
._f{width:59.994000px;}
._b{width:71.376000px;}
._16{width:210.840000px;}
._d{width:312.606000px;}
._1f{width:487.344000px;}
._1b{width:532.218000px;}
._21{width:550.416000px;}
._20{width:586.164000px;}
._1c{width:745.194000px;}
._1e{width:868.314000px;}
._15{width:978.120000px;}
._1d{width:1057.314000px;}
.fc6{color:rgb(237,0,0);}
.fc5{color:rgb(243,110,31);}
.fc4{color:rgb(38,26,26);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(10,55,88);}
.fs4{font-size:38.400000px;}
.fsb{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:67.200000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y1e{bottom:47.641500px;}
.y1d{bottom:114.091500px;}
.y1c{bottom:129.991500px;}
.ye7{bottom:130.591500px;}
.ybe{bottom:130.741500px;}
.y70{bottom:134.791500px;}
.yf9{bottom:135.241500px;}
.ya5{bottom:135.391500px;}
.y12c{bottom:136.741500px;}
.y46{bottom:145.891500px;}
.y8e{bottom:149.191500px;}
.y16b{bottom:152.491500px;}
.ye6{bottom:154.441500px;}
.yf8{bottom:158.941500px;}
.ya4{bottom:159.091500px;}
.ybd{bottom:159.241500px;}
.yba{bottom:159.391500px;}
.y12b{bottom:160.591500px;}
.y6f{bottom:167.341500px;}
.y1b{bottom:167.641500px;}
.y45{bottom:169.741500px;}
.y8d{bottom:172.891500px;}
.y16a{bottom:176.191500px;}
.ybc{bottom:177.091500px;}
.yb9{bottom:177.241500px;}
.ye5{bottom:178.141500px;}
.y6c{bottom:182.791500px;}
.y6e{bottom:182.941500px;}
.y12a{bottom:184.291500px;}
.y1a{bottom:191.491500px;}
.y44{bottom:193.441500px;}
.ybb{bottom:194.941500px;}
.yb8{bottom:195.091500px;}
.y8c{bottom:196.741500px;}
.y147{bottom:197.641500px;}
.y6b{bottom:198.391500px;}
.y169{bottom:200.041500px;}
.yf7{bottom:206.491500px;}
.ya3{bottom:206.641500px;}
.y129{bottom:208.141500px;}
.ye4{bottom:210.391500px;}
.y10a{bottom:212.791500px;}
.y6a{bottom:213.841500px;}
.y6d{bottom:213.991500px;}
.y19{bottom:215.191500px;}
.y43{bottom:217.291500px;}
.y8b{bottom:220.441500px;}
.y146{bottom:221.341500px;}
.y168{bottom:223.741500px;}
.yf6{bottom:230.341500px;}
.ya2{bottom:230.491500px;}
.y109{bottom:230.641500px;}
.y128{bottom:231.841500px;}
.ye3{bottom:234.241500px;}
.y10d{bottom:237.691500px;}
.y42{bottom:240.991500px;}
.y8a{bottom:244.291500px;}
.y145{bottom:245.191500px;}
.y18{bottom:247.441500px;}
.y167{bottom:247.591500px;}
.y108{bottom:248.491500px;}
.y10c{bottom:253.141500px;}
.yf5{bottom:254.041500px;}
.ya1{bottom:254.191500px;}
.y127{bottom:255.691500px;}
.ye2{bottom:257.941500px;}
.y181{bottom:261.991500px;}
.y41{bottom:264.841500px;}
.y107{bottom:266.341500px;}
.y89{bottom:267.991500px;}
.y10b{bottom:268.741500px;}
.y17{bottom:271.291500px;}
.yf4{bottom:277.891500px;}
.ya0{bottom:278.041500px;}
.y126{bottom:279.391500px;}
.ye1{bottom:281.791500px;}
.y180{bottom:285.841500px;}
.y40{bottom:288.541500px;}
.y88{bottom:291.841500px;}
.y65{bottom:293.341500px;}
.y16{bottom:294.991500px;}
.yf3{bottom:301.591500px;}
.y9f{bottom:301.741500px;}
.y125{bottom:303.241500px;}
.ye0{bottom:305.491500px;}
.y3f{bottom:312.391500px;}
.y87{bottom:315.541500px;}
.y166{bottom:315.691500px;}
.y64{bottom:317.041500px;}
.y17f{bottom:318.091500px;}
.y15{bottom:318.841500px;}
.yf2{bottom:325.441500px;}
.y9e{bottom:325.591500px;}
.y124{bottom:326.941500px;}
.ydf{bottom:329.341500px;}
.y3e{bottom:336.091500px;}
.y63{bottom:340.891500px;}
.y17e{bottom:341.791500px;}
.y14{bottom:342.541500px;}
.y165{bottom:345.841500px;}
.y86{bottom:347.791500px;}
.yf1{bottom:349.141500px;}
.y9d{bottom:349.291500px;}
.y123{bottom:350.791500px;}
.yde{bottom:353.041500px;}
.y3d{bottom:359.941500px;}
.y62{bottom:364.591500px;}
.y17d{bottom:365.641500px;}
.y13{bottom:366.391500px;}
.y164{bottom:367.591500px;}
.y85{bottom:371.641500px;}
.yf0{bottom:372.991500px;}
.y9c{bottom:373.141500px;}
.y122{bottom:374.491500px;}
.ydd{bottom:376.891500px;}
.y3c{bottom:383.641500px;}
.y61{bottom:388.441500px;}
.y163{bottom:389.341500px;}
.y12{bottom:390.091500px;}
.y84{bottom:395.341500px;}
.y9b{bottom:396.841500px;}
.y121{bottom:398.341500px;}
.y3b{bottom:407.491500px;}
.ydc{bottom:409.141500px;}
.y162{bottom:411.091500px;}
.y60{bottom:412.141500px;}
.y17c{bottom:413.191500px;}
.y11{bottom:413.941500px;}
.y83{bottom:419.191500px;}
.y144{bottom:419.491500px;}
.y120{bottom:422.041500px;}
.y9a{bottom:429.091500px;}
.y3a{bottom:431.191500px;}
.yb7{bottom:432.241500px;}
.ydb{bottom:432.841500px;}
.y5f{bottom:435.991500px;}
.yef{bottom:436.291500px;}
.y17b{bottom:436.891500px;}
.y10{bottom:437.641500px;}
.yb4{bottom:445.741500px;}
.y143{bottom:449.941500px;}
.yb6{bottom:450.091500px;}
.y82{bottom:451.441500px;}
.y99{bottom:452.941500px;}
.y11f{bottom:454.291500px;}
.y161{bottom:454.591500px;}
.y39{bottom:455.041500px;}
.yda{bottom:456.691500px;}
.yf{bottom:461.491500px;}
.yb3{bottom:463.591500px;}
.y142{bottom:465.391500px;}
.yb5{bottom:467.941500px;}
.y5e{bottom:468.241500px;}
.yee{bottom:469.141500px;}
.y81{bottom:475.141500px;}
.y160{bottom:476.341500px;}
.y98{bottom:476.641500px;}
.y11e{bottom:478.141500px;}
.yd9{bottom:480.391500px;}
.y141{bottom:480.991500px;}
.ye{bottom:485.191500px;}
.yed{bottom:486.991500px;}
.y5d{bottom:491.941500px;}
.y17a{bottom:492.991500px;}
.y140{bottom:496.441500px;}
.y15f{bottom:498.091500px;}
.y80{bottom:498.991500px;}
.y97{bottom:500.491500px;}
.y11d{bottom:501.841500px;}
.yd8{bottom:504.241500px;}
.yec{bottom:504.841500px;}
.y38{bottom:512.641500px;}
.y5c{bottom:515.791500px;}
.y179{bottom:516.691500px;}
.y15e{bottom:519.841500px;}
.y7f{bottom:522.691500px;}
.y96{bottom:524.191500px;}
.y11c{bottom:525.691500px;}
.yd7{bottom:527.941500px;}
.y13f{bottom:529.741500px;}
.y5b{bottom:539.491500px;}
.y178{bottom:540.541500px;}
.y15d{bottom:541.591500px;}
.y7e{bottom:546.541500px;}
.y11b{bottom:549.391500px;}
.yd6{bottom:551.791500px;}
.y106{bottom:555.991500px;}
.y69{bottom:562.291500px;}
.y13e{bottom:562.891500px;}
.y5a{bottom:563.341500px;}
.y177{bottom:564.241500px;}
.y37{bottom:571.291500px;}
.y11a{bottom:573.241500px;}
.yd5{bottom:575.491500px;}
.y7d{bottom:578.791500px;}
.y105{bottom:579.841500px;}
.y68{bottom:582.091500px;}
.y15c{bottom:585.091500px;}
.y95{bottom:586.891500px;}
.y59{bottom:587.041500px;}
.y176{bottom:588.091500px;}
.y36{bottom:595.141500px;}
.y13b{bottom:596.191500px;}
.y119{bottom:596.941500px;}
.yd4{bottom:599.341500px;}
.y67{bottom:601.891500px;}
.y7c{bottom:602.491500px;}
.y104{bottom:603.541500px;}
.y13d{bottom:603.991500px;}
.y15b{bottom:606.841500px;}
.y58{bottom:610.891500px;}
.y13a{bottom:611.641500px;}
.y175{bottom:611.791500px;}
.y35{bottom:618.841500px;}
.y13c{bottom:619.441500px;}
.y66{bottom:621.691500px;}
.yd3{bottom:623.041500px;}
.y7b{bottom:626.341500px;}
.y139{bottom:627.241500px;}
.y103{bottom:627.391500px;}
.y118{bottom:629.191500px;}
.yd{bottom:633.091500px;}
.y57{bottom:634.591500px;}
.y174{bottom:635.641500px;}
.y15a{bottom:641.341500px;}
.y34{bottom:642.691500px;}
.yd2{bottom:646.891500px;}
.y7a{bottom:650.041500px;}
.y102{bottom:651.091500px;}
.y94{bottom:653.041500px;}
.yc{bottom:659.341500px;}
.y138{bottom:660.391500px;}
.y159{bottom:663.091500px;}
.y33{bottom:666.391500px;}
.yd1{bottom:670.591500px;}
.y93{bottom:672.841500px;}
.y79{bottom:673.891500px;}
.y101{bottom:674.941500px;}
.y117{bottom:676.741500px;}
.y173{bottom:683.191500px;}
.y158{bottom:684.841500px;}
.yb{bottom:685.741500px;}
.y32{bottom:690.241500px;}
.y18f{bottom:691.483500px;}
.y92{bottom:692.641500px;}
.y137{bottom:693.691500px;}
.yd0{bottom:694.441500px;}
.y78{bottom:697.591500px;}
.y100{bottom:698.641500px;}
.y116{bottom:700.591500px;}
.y56{bottom:702.241500px;}
.y157{bottom:706.591500px;}
.y136{bottom:709.141500px;}
.ya{bottom:711.991500px;}
.y91{bottom:712.441500px;}
.y18e{bottom:713.533500px;}
.y172{bottom:715.441500px;}
.ycf{bottom:718.141500px;}
.y77{bottom:721.441500px;}
.y31{bottom:722.491500px;}
.y115{bottom:724.291500px;}
.y156{bottom:728.341500px;}
.y90{bottom:732.241500px;}
.y18d{bottom:735.583500px;}
.y55{bottom:736.141500px;}
.y9{bottom:738.391500px;}
.y171{bottom:739.141500px;}
.yce{bottom:741.991500px;}
.y135{bottom:742.441500px;}
.y52{bottom:745.891500px;}
.y30{bottom:746.191500px;}
.y114{bottom:748.141500px;}
.y155{bottom:750.091500px;}
.yeb{bottom:750.691500px;}
.y8f{bottom:752.041500px;}
.y54{bottom:756.091500px;}
.y18c{bottom:757.633500px;}
.y134{bottom:757.891500px;}
.yb2{bottom:762.241500px;}
.y170{bottom:762.991500px;}
.y51{bottom:763.141500px;}
.y8{bottom:764.641500px;}
.yea{bottom:768.541500px;}
.y2f{bottom:770.041500px;}
.y113{bottom:771.841500px;}
.ycd{bottom:774.241500px;}
.y53{bottom:775.891500px;}
.y18b{bottom:779.683500px;}
.yb1{bottom:785.941500px;}
.ye9{bottom:786.391500px;}
.y16f{bottom:786.691500px;}
.y133{bottom:791.191500px;}
.y76{bottom:793.291500px;}
.y154{bottom:793.591500px;}
.y2e{bottom:793.741500px;}
.y112{bottom:795.691500px;}
.ycc{bottom:797.941500px;}
.ye8{bottom:804.241500px;}
.y7{bottom:808.891500px;}
.y16e{bottom:810.541500px;}
.y50{bottom:814.141500px;}
.y153{bottom:815.341500px;}
.y2d{bottom:817.591500px;}
.y111{bottom:819.391500px;}
.ycb{bottom:821.791500px;}
.y73{bottom:822.991500px;}
.y132{bottom:824.341500px;}
.y75{bottom:825.391500px;}
.y4d{bottom:832.441500px;}
.yb0{bottom:833.641500px;}
.y4f{bottom:834.091500px;}
.y16d{bottom:834.241500px;}
.y72{bottom:838.591500px;}
.y74{bottom:840.841500px;}
.y2c{bottom:841.291500px;}
.y110{bottom:843.241500px;}
.yca{bottom:845.491500px;}
.y4e{bottom:853.891500px;}
.yaf{bottom:856.141500px;}
.y71{bottom:856.441500px;}
.y131{bottom:857.641500px;}
.y6{bottom:861.241500px;}
.y2b{bottom:865.141500px;}
.y10f{bottom:866.941500px;}
.yc9{bottom:869.341500px;}
.yae{bottom:874.291500px;}
.y18a{bottom:875.941500px;}
.y2a{bottom:888.841500px;}
.y130{bottom:890.791500px;}
.y152{bottom:891.091500px;}
.y4c{bottom:892.141500px;}
.yad{bottom:892.441500px;}
.y16c{bottom:892.891500px;}
.yc8{bottom:893.041500px;}
.y189{bottom:895.741500px;}
.y4b{bottom:900.541500px;}
.yac{bottom:910.591500px;}
.yff{bottom:912.691500px;}
.y151{bottom:912.841500px;}
.y5{bottom:913.741500px;}
.yc7{bottom:916.891500px;}
.y29{bottom:921.091500px;}
.y12f{bottom:924.091500px;}
.yab{bottom:928.741500px;}
.y10e{bottom:929.641500px;}
.y188{bottom:933.541500px;}
.y150{bottom:934.591500px;}
.yfe{bottom:936.391500px;}
.yc6{bottom:940.591500px;}
.y28{bottom:944.941500px;}
.yaa{bottom:946.891500px;}
.y4a{bottom:950.341500px;}
.y187{bottom:953.341500px;}
.y14f{bottom:956.341500px;}
.y49{bottom:958.741500px;}
.y12e{bottom:960.091500px;}
.yfd{bottom:960.241500px;}
.yc5{bottom:964.441500px;}
.ya9{bottom:965.041500px;}
.y4{bottom:966.091500px;}
.y27{bottom:968.641500px;}
.y14e{bottom:978.091500px;}
.y12d{bottom:979.891500px;}
.ya8{bottom:983.191500px;}
.yfc{bottom:983.941500px;}
.yc4{bottom:988.141500px;}
.y186{bottom:988.591500px;}
.y26{bottom:992.491500px;}
.y14d{bottom:999.841500px;}
.y48{bottom:1001.041500px;}
.ya7{bottom:1001.341500px;}
.y185{bottom:1005.841500px;}
.yfb{bottom:1007.791500px;}
.yc3{bottom:1011.991500px;}
.y25{bottom:1016.191500px;}
.y3{bottom:1018.591500px;}
.y184{bottom:1023.091500px;}
.y14c{bottom:1025.791500px;}
.yfa{bottom:1031.491500px;}
.y47{bottom:1034.341500px;}
.yc2{bottom:1035.691500px;}
.y24{bottom:1040.041500px;}
.y183{bottom:1040.341500px;}
.y14b{bottom:1047.541500px;}
.ya6{bottom:1055.341500px;}
.yc1{bottom:1059.541500px;}
.y23{bottom:1063.741500px;}
.y14a{bottom:1069.291500px;}
.y2{bottom:1080.091500px;}
.yc0{bottom:1083.241500px;}
.y22{bottom:1087.591500px;}
.y149{bottom:1091.041500px;}
.y182{bottom:1095.991500px;}
.ybf{bottom:1107.091500px;}
.y21{bottom:1111.291500px;}
.y148{bottom:1112.791500px;}
.y20{bottom:1153.741500px;}
.y1f{bottom:1169.341500px;}
.ha{height:39.128906px;}
.h14{height:44.226562px;}
.h13{height:45.197754px;}
.h9{height:46.828125px;}
.hf{height:47.856445px;}
.h8{height:52.031250px;}
.h6{height:52.787109px;}
.hc{height:53.173828px;}
.h10{height:54.632812px;}
.h11{height:55.832520px;}
.h5{height:56.512500px;}
.h12{height:57.234375px;}
.h7{height:62.437500px;}
.hb{height:78.216797px;}
.hd{height:97.631250px;}
.he{height:98.231250px;}
.h3{height:106.416000px;}
.h4{height:111.738281px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:106.500000px;}
.x38{left:109.200000px;}
.x3e{left:110.700000px;}
.x2d{left:112.050000px;}
.x3b{left:114.900000px;}
.x18{left:116.550000px;}
.x2e{left:118.050000px;}
.x36{left:121.500000px;}
.x14{left:123.900000px;}
.x26{left:125.550000px;}
.x33{left:128.250000px;}
.x1f{left:129.300000px;}
.xf{left:131.850000px;}
.x27{left:134.400000px;}
.xd{left:148.950000px;}
.x2a{left:156.900000px;}
.x39{left:187.950000px;}
.x22{left:191.250000px;}
.x2f{left:206.250000px;}
.x16{left:218.250000px;}
.x11{left:233.550000px;}
.x1e{left:237.900000px;}
.x19{left:241.050000px;}
.x13{left:255.000000px;}
.x24{left:276.600000px;}
.x10{left:292.950000px;}
.x3a{left:320.850000px;}
.x15{left:338.250000px;}
.x3{left:343.350000px;}
.x4{left:347.250000px;}
.x12{left:355.950000px;}
.x5{left:378.000000px;}
.x2{left:388.350000px;}
.x6{left:398.400000px;}
.x9{left:424.950000px;}
.xa{left:430.950000px;}
.xb{left:450.750000px;}
.x31{left:452.100000px;}
.x30{left:453.600000px;}
.x37{left:454.800000px;}
.x34{left:456.300000px;}
.xc{left:458.100000px;}
.x7{left:460.800000px;}
.x20{left:462.750000px;}
.x1a{left:466.050000px;}
.x29{left:467.100000px;}
.x28{left:469.800000px;}
.x8{left:477.900000px;}
.x21{left:480.150000px;}
.x1b{left:483.750000px;}
.x1c{left:486.150000px;}
.x2b{left:488.550000px;}
.x2c{left:496.650000px;}
.x35{left:521.550000px;}
.x17{left:531.600000px;}
.x3d{left:539.250000px;}
.x32{left:546.300000px;}
.x25{left:550.500000px;}
.x1{left:552.450000px;}
.x1d{left:580.950000px;}
.x23{left:599.700000px;}
.x3c{left:622.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.933333pt;}
.v2{vertical-align:40.533333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.037333pt;}
.ls7{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.149333pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.170667pt;}
.lsa{letter-spacing:0.202667pt;}
.ls0{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.268800pt;}
.ls4{letter-spacing:38.346667pt;}
.ls3{letter-spacing:53.280000pt;}
.ws1{word-spacing:-37.120000pt;}
.ws0{word-spacing:-29.696000pt;}
.ws5{word-spacing:-25.984000pt;}
.ws6{word-spacing:-20.787200pt;}
.ws2{word-spacing:-17.728000pt;}
.ws7{word-spacing:-14.773333pt;}
.ws3{word-spacing:-13.296000pt;}
.ws4{word-spacing:0.000000pt;}
._c{margin-left:-304.256000pt;}
._e{margin-left:-80.480000pt;}
._2{margin-left:-0.896000pt;}
._0{width:1.232000pt;}
._1{width:2.864000pt;}
._5{width:4.240000pt;}
._a{width:5.200000pt;}
._9{width:6.112000pt;}
._3{width:7.232000pt;}
._4{width:8.192000pt;}
._7{width:9.472000pt;}
._8{width:10.496000pt;}
._12{width:12.032000pt;}
._10{width:12.928000pt;}
._11{width:14.576000pt;}
._18{width:15.936000pt;}
._17{width:16.832000pt;}
._22{width:17.840000pt;}
._6{width:18.752000pt;}
._14{width:19.712000pt;}
._13{width:20.608000pt;}
._19{width:24.064000pt;}
._1a{width:25.600000pt;}
._f{width:53.328000pt;}
._b{width:63.445333pt;}
._16{width:187.413333pt;}
._d{width:277.872000pt;}
._1f{width:433.194667pt;}
._1b{width:473.082667pt;}
._21{width:489.258667pt;}
._20{width:521.034667pt;}
._1c{width:662.394667pt;}
._1e{width:771.834667pt;}
._15{width:869.440000pt;}
._1d{width:939.834667pt;}
.fs4{font-size:34.133333pt;}
.fsb{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:59.733333pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y1e{bottom:42.348000pt;}
.y1d{bottom:101.414667pt;}
.y1c{bottom:115.548000pt;}
.ye7{bottom:116.081333pt;}
.ybe{bottom:116.214667pt;}
.y70{bottom:119.814667pt;}
.yf9{bottom:120.214667pt;}
.ya5{bottom:120.348000pt;}
.y12c{bottom:121.548000pt;}
.y46{bottom:129.681333pt;}
.y8e{bottom:132.614667pt;}
.y16b{bottom:135.548000pt;}
.ye6{bottom:137.281333pt;}
.yf8{bottom:141.281333pt;}
.ya4{bottom:141.414667pt;}
.ybd{bottom:141.548000pt;}
.yba{bottom:141.681333pt;}
.y12b{bottom:142.748000pt;}
.y6f{bottom:148.748000pt;}
.y1b{bottom:149.014667pt;}
.y45{bottom:150.881333pt;}
.y8d{bottom:153.681333pt;}
.y16a{bottom:156.614667pt;}
.ybc{bottom:157.414667pt;}
.yb9{bottom:157.548000pt;}
.ye5{bottom:158.348000pt;}
.y6c{bottom:162.481333pt;}
.y6e{bottom:162.614667pt;}
.y12a{bottom:163.814667pt;}
.y1a{bottom:170.214667pt;}
.y44{bottom:171.948000pt;}
.ybb{bottom:173.281333pt;}
.yb8{bottom:173.414667pt;}
.y8c{bottom:174.881333pt;}
.y147{bottom:175.681333pt;}
.y6b{bottom:176.348000pt;}
.y169{bottom:177.814667pt;}
.yf7{bottom:183.548000pt;}
.ya3{bottom:183.681333pt;}
.y129{bottom:185.014667pt;}
.ye4{bottom:187.014667pt;}
.y10a{bottom:189.148000pt;}
.y6a{bottom:190.081333pt;}
.y6d{bottom:190.214667pt;}
.y19{bottom:191.281333pt;}
.y43{bottom:193.148000pt;}
.y8b{bottom:195.948000pt;}
.y146{bottom:196.748000pt;}
.y168{bottom:198.881333pt;}
.yf6{bottom:204.748000pt;}
.ya2{bottom:204.881333pt;}
.y109{bottom:205.014667pt;}
.y128{bottom:206.081333pt;}
.ye3{bottom:208.214667pt;}
.y10d{bottom:211.281333pt;}
.y42{bottom:214.214667pt;}
.y8a{bottom:217.148000pt;}
.y145{bottom:217.948000pt;}
.y18{bottom:219.948000pt;}
.y167{bottom:220.081333pt;}
.y108{bottom:220.881333pt;}
.y10c{bottom:225.014667pt;}
.yf5{bottom:225.814667pt;}
.ya1{bottom:225.948000pt;}
.y127{bottom:227.281333pt;}
.ye2{bottom:229.281333pt;}
.y181{bottom:232.881333pt;}
.y41{bottom:235.414667pt;}
.y107{bottom:236.748000pt;}
.y89{bottom:238.214667pt;}
.y10b{bottom:238.881333pt;}
.y17{bottom:241.148000pt;}
.yf4{bottom:247.014667pt;}
.ya0{bottom:247.148000pt;}
.y126{bottom:248.348000pt;}
.ye1{bottom:250.481333pt;}
.y180{bottom:254.081333pt;}
.y40{bottom:256.481333pt;}
.y88{bottom:259.414667pt;}
.y65{bottom:260.748000pt;}
.y16{bottom:262.214667pt;}
.yf3{bottom:268.081333pt;}
.y9f{bottom:268.214667pt;}
.y125{bottom:269.548000pt;}
.ye0{bottom:271.548000pt;}
.y3f{bottom:277.681333pt;}
.y87{bottom:280.481333pt;}
.y166{bottom:280.614667pt;}
.y64{bottom:281.814667pt;}
.y17f{bottom:282.748000pt;}
.y15{bottom:283.414667pt;}
.yf2{bottom:289.281333pt;}
.y9e{bottom:289.414667pt;}
.y124{bottom:290.614667pt;}
.ydf{bottom:292.748000pt;}
.y3e{bottom:298.748000pt;}
.y63{bottom:303.014667pt;}
.y17e{bottom:303.814667pt;}
.y14{bottom:304.481333pt;}
.y165{bottom:307.414667pt;}
.y86{bottom:309.148000pt;}
.yf1{bottom:310.348000pt;}
.y9d{bottom:310.481333pt;}
.y123{bottom:311.814667pt;}
.yde{bottom:313.814667pt;}
.y3d{bottom:319.948000pt;}
.y62{bottom:324.081333pt;}
.y17d{bottom:325.014667pt;}
.y13{bottom:325.681333pt;}
.y164{bottom:326.748000pt;}
.y85{bottom:330.348000pt;}
.yf0{bottom:331.548000pt;}
.y9c{bottom:331.681333pt;}
.y122{bottom:332.881333pt;}
.ydd{bottom:335.014667pt;}
.y3c{bottom:341.014667pt;}
.y61{bottom:345.281333pt;}
.y163{bottom:346.081333pt;}
.y12{bottom:346.748000pt;}
.y84{bottom:351.414667pt;}
.y9b{bottom:352.748000pt;}
.y121{bottom:354.081333pt;}
.y3b{bottom:362.214667pt;}
.ydc{bottom:363.681333pt;}
.y162{bottom:365.414667pt;}
.y60{bottom:366.348000pt;}
.y17c{bottom:367.281333pt;}
.y11{bottom:367.948000pt;}
.y83{bottom:372.614667pt;}
.y144{bottom:372.881333pt;}
.y120{bottom:375.148000pt;}
.y9a{bottom:381.414667pt;}
.y3a{bottom:383.281333pt;}
.yb7{bottom:384.214667pt;}
.ydb{bottom:384.748000pt;}
.y5f{bottom:387.548000pt;}
.yef{bottom:387.814667pt;}
.y17b{bottom:388.348000pt;}
.y10{bottom:389.014667pt;}
.yb4{bottom:396.214667pt;}
.y143{bottom:399.948000pt;}
.yb6{bottom:400.081333pt;}
.y82{bottom:401.281333pt;}
.y99{bottom:402.614667pt;}
.y11f{bottom:403.814667pt;}
.y161{bottom:404.081333pt;}
.y39{bottom:404.481333pt;}
.yda{bottom:405.948000pt;}
.yf{bottom:410.214667pt;}
.yb3{bottom:412.081333pt;}
.y142{bottom:413.681333pt;}
.yb5{bottom:415.948000pt;}
.y5e{bottom:416.214667pt;}
.yee{bottom:417.014667pt;}
.y81{bottom:422.348000pt;}
.y160{bottom:423.414667pt;}
.y98{bottom:423.681333pt;}
.y11e{bottom:425.014667pt;}
.yd9{bottom:427.014667pt;}
.y141{bottom:427.548000pt;}
.ye{bottom:431.281333pt;}
.yed{bottom:432.881333pt;}
.y5d{bottom:437.281333pt;}
.y17a{bottom:438.214667pt;}
.y140{bottom:441.281333pt;}
.y15f{bottom:442.748000pt;}
.y80{bottom:443.548000pt;}
.y97{bottom:444.881333pt;}
.y11d{bottom:446.081333pt;}
.yd8{bottom:448.214667pt;}
.yec{bottom:448.748000pt;}
.y38{bottom:455.681333pt;}
.y5c{bottom:458.481333pt;}
.y179{bottom:459.281333pt;}
.y15e{bottom:462.081333pt;}
.y7f{bottom:464.614667pt;}
.y96{bottom:465.948000pt;}
.y11c{bottom:467.281333pt;}
.yd7{bottom:469.281333pt;}
.y13f{bottom:470.881333pt;}
.y5b{bottom:479.548000pt;}
.y178{bottom:480.481333pt;}
.y15d{bottom:481.414667pt;}
.y7e{bottom:485.814667pt;}
.y11b{bottom:488.348000pt;}
.yd6{bottom:490.481333pt;}
.y106{bottom:494.214667pt;}
.y69{bottom:499.814667pt;}
.y13e{bottom:500.348000pt;}
.y5a{bottom:500.748000pt;}
.y177{bottom:501.548000pt;}
.y37{bottom:507.814667pt;}
.y11a{bottom:509.548000pt;}
.yd5{bottom:511.548000pt;}
.y7d{bottom:514.481333pt;}
.y105{bottom:515.414667pt;}
.y68{bottom:517.414667pt;}
.y15c{bottom:520.081333pt;}
.y95{bottom:521.681333pt;}
.y59{bottom:521.814667pt;}
.y176{bottom:522.748000pt;}
.y36{bottom:529.014667pt;}
.y13b{bottom:529.948000pt;}
.y119{bottom:530.614667pt;}
.yd4{bottom:532.748000pt;}
.y67{bottom:535.014667pt;}
.y7c{bottom:535.548000pt;}
.y104{bottom:536.481333pt;}
.y13d{bottom:536.881333pt;}
.y15b{bottom:539.414667pt;}
.y58{bottom:543.014667pt;}
.y13a{bottom:543.681333pt;}
.y175{bottom:543.814667pt;}
.y35{bottom:550.081333pt;}
.y13c{bottom:550.614667pt;}
.y66{bottom:552.614667pt;}
.yd3{bottom:553.814667pt;}
.y7b{bottom:556.748000pt;}
.y139{bottom:557.548000pt;}
.y103{bottom:557.681333pt;}
.y118{bottom:559.281333pt;}
.yd{bottom:562.748000pt;}
.y57{bottom:564.081333pt;}
.y174{bottom:565.014667pt;}
.y15a{bottom:570.081333pt;}
.y34{bottom:571.281333pt;}
.yd2{bottom:575.014667pt;}
.y7a{bottom:577.814667pt;}
.y102{bottom:578.748000pt;}
.y94{bottom:580.481333pt;}
.yc{bottom:586.081333pt;}
.y138{bottom:587.014667pt;}
.y159{bottom:589.414667pt;}
.y33{bottom:592.348000pt;}
.yd1{bottom:596.081333pt;}
.y93{bottom:598.081333pt;}
.y79{bottom:599.014667pt;}
.y101{bottom:599.948000pt;}
.y117{bottom:601.548000pt;}
.y173{bottom:607.281333pt;}
.y158{bottom:608.748000pt;}
.yb{bottom:609.548000pt;}
.y32{bottom:613.548000pt;}
.y18f{bottom:614.652000pt;}
.y92{bottom:615.681333pt;}
.y137{bottom:616.614667pt;}
.yd0{bottom:617.281333pt;}
.y78{bottom:620.081333pt;}
.y100{bottom:621.014667pt;}
.y116{bottom:622.748000pt;}
.y56{bottom:624.214667pt;}
.y157{bottom:628.081333pt;}
.y136{bottom:630.348000pt;}
.ya{bottom:632.881333pt;}
.y91{bottom:633.281333pt;}
.y18e{bottom:634.252000pt;}
.y172{bottom:635.948000pt;}
.ycf{bottom:638.348000pt;}
.y77{bottom:641.281333pt;}
.y31{bottom:642.214667pt;}
.y115{bottom:643.814667pt;}
.y156{bottom:647.414667pt;}
.y90{bottom:650.881333pt;}
.y18d{bottom:653.852000pt;}
.y55{bottom:654.348000pt;}
.y9{bottom:656.348000pt;}
.y171{bottom:657.014667pt;}
.yce{bottom:659.548000pt;}
.y135{bottom:659.948000pt;}
.y52{bottom:663.014667pt;}
.y30{bottom:663.281333pt;}
.y114{bottom:665.014667pt;}
.y155{bottom:666.748000pt;}
.yeb{bottom:667.281333pt;}
.y8f{bottom:668.481333pt;}
.y54{bottom:672.081333pt;}
.y18c{bottom:673.452000pt;}
.y134{bottom:673.681333pt;}
.yb2{bottom:677.548000pt;}
.y170{bottom:678.214667pt;}
.y51{bottom:678.348000pt;}
.y8{bottom:679.681333pt;}
.yea{bottom:683.148000pt;}
.y2f{bottom:684.481333pt;}
.y113{bottom:686.081333pt;}
.ycd{bottom:688.214667pt;}
.y53{bottom:689.681333pt;}
.y18b{bottom:693.052000pt;}
.yb1{bottom:698.614667pt;}
.ye9{bottom:699.014667pt;}
.y16f{bottom:699.281333pt;}
.y133{bottom:703.281333pt;}
.y76{bottom:705.148000pt;}
.y154{bottom:705.414667pt;}
.y2e{bottom:705.548000pt;}
.y112{bottom:707.281333pt;}
.ycc{bottom:709.281333pt;}
.ye8{bottom:714.881333pt;}
.y7{bottom:719.014667pt;}
.y16e{bottom:720.481333pt;}
.y50{bottom:723.681333pt;}
.y153{bottom:724.748000pt;}
.y2d{bottom:726.748000pt;}
.y111{bottom:728.348000pt;}
.ycb{bottom:730.481333pt;}
.y73{bottom:731.548000pt;}
.y132{bottom:732.748000pt;}
.y75{bottom:733.681333pt;}
.y4d{bottom:739.948000pt;}
.yb0{bottom:741.014667pt;}
.y4f{bottom:741.414667pt;}
.y16d{bottom:741.548000pt;}
.y72{bottom:745.414667pt;}
.y74{bottom:747.414667pt;}
.y2c{bottom:747.814667pt;}
.y110{bottom:749.548000pt;}
.yca{bottom:751.548000pt;}
.y4e{bottom:759.014667pt;}
.yaf{bottom:761.014667pt;}
.y71{bottom:761.281333pt;}
.y131{bottom:762.348000pt;}
.y6{bottom:765.548000pt;}
.y2b{bottom:769.014667pt;}
.y10f{bottom:770.614667pt;}
.yc9{bottom:772.748000pt;}
.yae{bottom:777.148000pt;}
.y18a{bottom:778.614667pt;}
.y2a{bottom:790.081333pt;}
.y130{bottom:791.814667pt;}
.y152{bottom:792.081333pt;}
.y4c{bottom:793.014667pt;}
.yad{bottom:793.281333pt;}
.y16c{bottom:793.681333pt;}
.yc8{bottom:793.814667pt;}
.y189{bottom:796.214667pt;}
.y4b{bottom:800.481333pt;}
.yac{bottom:809.414667pt;}
.yff{bottom:811.281333pt;}
.y151{bottom:811.414667pt;}
.y5{bottom:812.214667pt;}
.yc7{bottom:815.014667pt;}
.y29{bottom:818.748000pt;}
.y12f{bottom:821.414667pt;}
.yab{bottom:825.548000pt;}
.y10e{bottom:826.348000pt;}
.y188{bottom:829.814667pt;}
.y150{bottom:830.748000pt;}
.yfe{bottom:832.348000pt;}
.yc6{bottom:836.081333pt;}
.y28{bottom:839.948000pt;}
.yaa{bottom:841.681333pt;}
.y4a{bottom:844.748000pt;}
.y187{bottom:847.414667pt;}
.y14f{bottom:850.081333pt;}
.y49{bottom:852.214667pt;}
.y12e{bottom:853.414667pt;}
.yfd{bottom:853.548000pt;}
.yc5{bottom:857.281333pt;}
.ya9{bottom:857.814667pt;}
.y4{bottom:858.748000pt;}
.y27{bottom:861.014667pt;}
.y14e{bottom:869.414667pt;}
.y12d{bottom:871.014667pt;}
.ya8{bottom:873.948000pt;}
.yfc{bottom:874.614667pt;}
.yc4{bottom:878.348000pt;}
.y186{bottom:878.748000pt;}
.y26{bottom:882.214667pt;}
.y14d{bottom:888.748000pt;}
.y48{bottom:889.814667pt;}
.ya7{bottom:890.081333pt;}
.y185{bottom:894.081333pt;}
.yfb{bottom:895.814667pt;}
.yc3{bottom:899.548000pt;}
.y25{bottom:903.281333pt;}
.y3{bottom:905.414667pt;}
.y184{bottom:909.414667pt;}
.y14c{bottom:911.814667pt;}
.yfa{bottom:916.881333pt;}
.y47{bottom:919.414667pt;}
.yc2{bottom:920.614667pt;}
.y24{bottom:924.481333pt;}
.y183{bottom:924.748000pt;}
.y14b{bottom:931.148000pt;}
.ya6{bottom:938.081333pt;}
.yc1{bottom:941.814667pt;}
.y23{bottom:945.548000pt;}
.y14a{bottom:950.481333pt;}
.y2{bottom:960.081333pt;}
.yc0{bottom:962.881333pt;}
.y22{bottom:966.748000pt;}
.y149{bottom:969.814667pt;}
.y182{bottom:974.214667pt;}
.ybf{bottom:984.081333pt;}
.y21{bottom:987.814667pt;}
.y148{bottom:989.148000pt;}
.y20{bottom:1025.548000pt;}
.y1f{bottom:1039.414667pt;}
.ha{height:34.781250pt;}
.h14{height:39.312500pt;}
.h13{height:40.175781pt;}
.h9{height:41.625000pt;}
.hf{height:42.539062pt;}
.h8{height:46.250000pt;}
.h6{height:46.921875pt;}
.hc{height:47.265625pt;}
.h10{height:48.562500pt;}
.h11{height:49.628906pt;}
.h5{height:50.233333pt;}
.h12{height:50.875000pt;}
.h7{height:55.500000pt;}
.hb{height:69.526042pt;}
.hd{height:86.783333pt;}
.he{height:87.316667pt;}
.h3{height:94.592000pt;}
.h4{height:99.322917pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:94.666667pt;}
.x38{left:97.066667pt;}
.x3e{left:98.400000pt;}
.x2d{left:99.600000pt;}
.x3b{left:102.133333pt;}
.x18{left:103.600000pt;}
.x2e{left:104.933333pt;}
.x36{left:108.000000pt;}
.x14{left:110.133333pt;}
.x26{left:111.600000pt;}
.x33{left:114.000000pt;}
.x1f{left:114.933333pt;}
.xf{left:117.200000pt;}
.x27{left:119.466667pt;}
.xd{left:132.400000pt;}
.x2a{left:139.466667pt;}
.x39{left:167.066667pt;}
.x22{left:170.000000pt;}
.x2f{left:183.333333pt;}
.x16{left:194.000000pt;}
.x11{left:207.600000pt;}
.x1e{left:211.466667pt;}
.x19{left:214.266667pt;}
.x13{left:226.666667pt;}
.x24{left:245.866667pt;}
.x10{left:260.400000pt;}
.x3a{left:285.200000pt;}
.x15{left:300.666667pt;}
.x3{left:305.200000pt;}
.x4{left:308.666667pt;}
.x12{left:316.400000pt;}
.x5{left:336.000000pt;}
.x2{left:345.200000pt;}
.x6{left:354.133333pt;}
.x9{left:377.733333pt;}
.xa{left:383.066667pt;}
.xb{left:400.666667pt;}
.x31{left:401.866667pt;}
.x30{left:403.200000pt;}
.x37{left:404.266667pt;}
.x34{left:405.600000pt;}
.xc{left:407.200000pt;}
.x7{left:409.600000pt;}
.x20{left:411.333333pt;}
.x1a{left:414.266667pt;}
.x29{left:415.200000pt;}
.x28{left:417.600000pt;}
.x8{left:424.800000pt;}
.x21{left:426.800000pt;}
.x1b{left:430.000000pt;}
.x1c{left:432.133333pt;}
.x2b{left:434.266667pt;}
.x2c{left:441.466667pt;}
.x35{left:463.600000pt;}
.x17{left:472.533333pt;}
.x3d{left:479.333333pt;}
.x32{left:485.600000pt;}
.x25{left:489.333333pt;}
.x1{left:491.066667pt;}
.x1d{left:516.400000pt;}
.x23{left:533.066667pt;}
.x3c{left:553.600000pt;}
}




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