
    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_e4167ab58be59f7e80d8e50e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_822181a406a6e28a5f887717.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.710938;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_e06b3ff4032528a82dc97fd9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.963379;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_6fef8588b2679566994fbf25.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973633;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_a54098815ba7ab0d6d5d6c41.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.710938;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_31d93767c772fc933e5d0663.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964863;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_f9a2a487ec96666b07749c07.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.032715;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_cb96a20fff3f08bca068d20e.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ef91b827eca536e16e0ddf4e.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9b0724e56232d1ed1caf1738.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971191;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:ffb;src:url('chunks/assets/font_b0d2f85726eae2dce6dfaec7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.759766;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:ffc;src:url('chunks/assets/font_cb96a20fff3f08bca068d20e.woff2')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5c1780c94064244397f67c7b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.720215;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:ffe;src:url('chunks/assets/font_18921e28a38702aa83b5b017.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.710938;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:fff;src:url('chunks/assets/font_6242843d994919fdd79d1f36.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;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:ff10;src:url('chunks/assets/font_fde92c949b15d5e40fe42391.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910645;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:ff11;src:url('chunks/assets/font_be869697ebef80cc9b560417.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.919922;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:ff12;src:url('chunks/assets/font_a0eca7b7182649002b791260.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910645;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:ff13;src:url('chunks/assets/font_15ad3070ca5b7d47a93538ca.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.952148;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:-22.768066px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.516644px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:4.489238px;}
.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;}
}
.ws8{word-spacing:-43.207032px;}
.ws4{word-spacing:-16.593750px;}
.ws9{word-spacing:-16.523438px;}
.ws5{word-spacing:-16.382812px;}
.ws2{word-spacing:-15.210938px;}
.wsa{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.769531px;}
.ws6{word-spacing:-9.914063px;}
.ws7{word-spacing:-9.000000px;}
.ws3{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
._c{margin-left:-8.765758px;}
._9{margin-left:-6.090727px;}
._a{margin-left:-4.066290px;}
._8{margin-left:-2.848630px;}
._0{margin-left:-1.828615px;}
._7{width:1.318361px;}
._d{width:2.343635px;}
._b{width:3.680616px;}
._3{width:5.080077px;}
._1{width:8.419923px;}
._2{width:9.474595px;}
._6{width:35.999999px;}
._4{width:39.972656px;}
._5{width:41.159183px;}
._e{width:697.993636px;}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(17,85,204);}
.fc1{color:rgb(0,35,70);}
.fc2{color:rgb(37,37,37);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.000000px;}
.fs9{font-size:43.200002px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:59.999999px;}
.fs6{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.fsa{font-size:78.000003px;}
.fs2{font-size:83.999997px;}
.fs5{font-size:96.000003px;}
.fs0{font-size:108.000000px;}
.fs4{font-size:119.999997px;}
.fs3{font-size:132.000003px;}
.y0{bottom:0.000000px;}
.y125{bottom:4.124267px;}
.y53{bottom:4.124817px;}
.y56{bottom:4.125000px;}
.y1f{bottom:4.125091px;}
.yae{bottom:4.125366px;}
.y5a{bottom:18.180176px;}
.y1e{bottom:24.266784px;}
.y59{bottom:38.321777px;}
.y82{bottom:57.749993px;}
.yad{bottom:74.891237px;}
.y81{bottom:74.891603px;}
.y126{bottom:74.892336px;}
.y157{bottom:85.693352px;}
.y124{bottom:85.694085px;}
.y80{bottom:85.694087px;}
.y57{bottom:88.799933px;}
.y7f{bottom:96.158198px;}
.y55{bottom:105.941528px;}
.y1c{bottom:116.006290px;}
.y54{bottom:116.744195px;}
.y7e{bottom:121.549808px;}
.y52{bottom:127.208502px;}
.y1b{bottom:132.208927px;}
.yac{bottom:141.351198px;}
.y14c{bottom:141.351564px;}
.y121{bottom:141.351570px;}
.ycc{bottom:147.043575px;}
.y1a{bottom:148.411563px;}
.y51{bottom:152.599733px;}
.yab{bottom:158.599738px;}
.y14b{bottom:158.600099px;}
.ycd{bottom:164.292110px;}
.y120{bottom:164.292121px;}
.y19{bottom:164.614203px;}
.y123{bottom:175.848639px;}
.y109{bottom:177.934573px;}
.y50{bottom:180.398618px;}
.y18{bottom:180.816828px;}
.yaa{bottom:181.540290px;}
.y14a{bottom:181.540650px;}
.y17{bottom:197.019468px;}
.y4f{bottom:198.401730px;}
.y122{bottom:198.789191px;}
.y108{bottom:199.538089px;}
.yef{bottom:210.343506px;}
.y16{bottom:213.222108px;}
.y4e{bottom:216.779477px;}
.ya9{bottom:220.534419px;}
.y107{bottom:221.141604px;}
.y15{bottom:229.424748px;}
.yee{bottom:231.947021px;}
.y4d{bottom:236.207891px;}
.y149{bottom:236.826413px;}
.ya8{bottom:242.137946px;}
.y106{bottom:242.745114px;}
.y14{bottom:245.627373px;}
.yed{bottom:253.550537px;}
.y4c{bottom:254.210636px;}
.y11f{bottom:255.388918px;}
.y7d{bottom:255.912601px;}
.y148{bottom:258.429928px;}
.y13{bottom:262.204931px;}
.ya7{bottom:263.741462px;}
.y105{bottom:263.847654px;}
.y4b{bottom:272.213741px;}
.yec{bottom:275.154053px;}
.y11e{bottom:276.992434px;}
.y147{bottom:280.033444px;}
.y12{bottom:280.207946px;}
.ya6{bottom:285.344978px;}
.y4a{bottom:290.216681px;}
.yeb{bottom:296.757568px;}
.y11{bottom:298.210871px;}
.y11d{bottom:298.595949px;}
.y104{bottom:300.451164px;}
.y7c{bottom:301.510261px;}
.y146{bottom:301.636959px;}
.ya5{bottom:306.948493px;}
.y49{bottom:308.219426px;}
.y10{bottom:316.963809px;}
.yea{bottom:318.361084px;}
.y11c{bottom:320.199459px;}
.y103{bottom:322.054691px;}
.y145{bottom:323.240484px;}
.ycb{bottom:323.627931px;}
.y48{bottom:326.222531px;}
.ya4{bottom:328.552009px;}
.yf{bottom:337.817231px;}
.ye9{bottom:339.964599px;}
.y11b{bottom:341.802982px;}
.y102{bottom:343.658207px;}
.y47{bottom:344.225471px;}
.y144{bottom:344.843991px;}
.yca{bottom:346.136719px;}
.y7b{bottom:347.107906px;}
.ya3{bottom:350.155524px;}
.ye{bottom:355.820246px;}
.ye8{bottom:361.568109px;}
.y46{bottom:362.228216px;}
.y11a{bottom:363.406498px;}
.y101{bottom:365.261723px;}
.y143{bottom:366.447506px;}
.yc9{bottom:368.645509px;}
.ya2{bottom:371.759034px;}
.yd{bottom:373.823186px;}
.y45{bottom:380.231321px;}
.ye7{bottom:382.670649px;}
.y119{bottom:385.010014px;}
.y100{bottom:386.865238px;}
.y142{bottom:388.051022px;}
.yc8{bottom:390.249024px;}
.yc{bottom:392.201117px;}
.y7a{bottom:392.705566px;}
.ya1{bottom:392.861574px;}
.y44{bottom:398.984259px;}
.y118{bottom:406.613529px;}
.yff{bottom:408.468754px;}
.y141{bottom:409.654538px;}
.yc7{bottom:411.852534px;}
.yb{bottom:413.879332px;}
.ye6{bottom:419.274174px;}
.y43{bottom:420.587769px;}
.y117{bottom:428.217039px;}
.ya0{bottom:429.465084px;}
.yfe{bottom:430.072269px;}
.y140{bottom:431.258053px;}
.yc6{bottom:433.456050px;}
.y79{bottom:438.303226px;}
.ye5{bottom:440.877688px;}
.y42{bottom:442.191279px;}
.ya{bottom:444.184021px;}
.y116{bottom:449.820563px;}
.y9f{bottom:451.068604px;}
.yfd{bottom:451.675779px;}
.y13f{bottom:452.861569px;}
.ye4{bottom:462.481204px;}
.y41{bottom:463.794804px;}
.y115{bottom:471.424078px;}
.y9e{bottom:472.672119px;}
.yfc{bottom:473.279289px;}
.y13e{bottom:474.465084px;}
.y9{bottom:480.189789px;}
.y78{bottom:483.900886px;}
.ye3{bottom:484.084719px;}
.y40{bottom:485.398314px;}
.y114{bottom:493.027594px;}
.y9d{bottom:493.669192px;}
.yfb{bottom:494.276367px;}
.y13d{bottom:496.068609px;}
.ye2{bottom:505.688235px;}
.y3f{bottom:506.626652px;}
.y113{bottom:514.631109px;}
.y9c{bottom:514.806153px;}
.y8{bottom:516.195741px;}
.y13c{bottom:522.863519px;}
.y3e{bottom:526.430057px;}
.y77{bottom:529.498528px;}
.y112{bottom:536.234619px;}
.y3d{bottom:546.233282px;}
.y7{bottom:552.201561px;}
.y9b{bottom:552.834954px;}
.y111{bottom:557.670407px;}
.y3c{bottom:566.036312px;}
.y13b{bottom:567.769779px;}
.y76{bottom:574.404789px;}
.y9a{bottom:574.438478px;}
.y6{bottom:584.457418px;}
.y3b{bottom:585.839717px;}
.y13a{bottom:589.373288px;}
.y75{bottom:596.008299px;}
.y99{bottom:596.041993px;}
.y110{bottom:596.390624px;}
.y3a{bottom:605.642942px;}
.y139{bottom:610.976803px;}
.y74{bottom:617.611809px;}
.y98{bottom:617.645509px;}
.yc5{bottom:624.706059px;}
.y39{bottom:625.445987px;}
.y138{bottom:632.580319px;}
.y73{bottom:639.215334px;}
.y97{bottom:639.249024px;}
.y10f{bottom:641.296869px;}
.y38{bottom:645.249392px;}
.yc4{bottom:646.309572px;}
.y137{bottom:654.183834px;}
.y72{bottom:660.818844px;}
.y96{bottom:660.852534px;}
.y10e{bottom:662.900393px;}
.y37{bottom:665.052617px;}
.yc3{bottom:667.913087px;}
.y136{bottom:675.787359px;}
.ye1{bottom:680.063229px;}
.y71{bottom:682.422369px;}
.y10d{bottom:684.503908px;}
.y36{bottom:684.855647px;}
.y95{bottom:687.647458px;}
.yc2{bottom:689.516603px;}
.ye0{bottom:701.666753px;}
.y135{bottom:702.582268px;}
.y70{bottom:704.025879px;}
.y35{bottom:704.659052px;}
.y10c{bottom:706.107424px;}
.yc1{bottom:711.120118px;}
.ydf{bottom:723.270268px;}
.y34{bottom:724.462277px;}
.y6f{bottom:725.629389px;}
.y10b{bottom:727.710939px;}
.y94{bottom:732.553704px;}
.yc0{bottom:732.723634px;}
.yfa{bottom:743.419928px;}
.y33{bottom:744.265322px;}
.yde{bottom:744.873784px;}
.y6e{bottom:747.232914px;}
.y134{bottom:747.488529px;}
.y10a{bottom:749.314454px;}
.y93{bottom:754.157222px;}
.ybf{bottom:755.232424px;}
.y32{bottom:764.068727px;}
.yf9{bottom:764.724607px;}
.ydd{bottom:766.477299px;}
.y6d{bottom:768.461432px;}
.y133{bottom:769.092037px;}
.y92{bottom:775.760738px;}
.ybe{bottom:776.835939px;}
.y31{bottom:783.871952px;}
.yf8{bottom:786.328123px;}
.ydc{bottom:788.080809px;}
.y6c{bottom:788.264642px;}
.y132{bottom:790.695553px;}
.y91{bottom:797.364253px;}
.ybd{bottom:798.439449px;}
.y30{bottom:803.674982px;}
.yf7{bottom:807.931639px;}
.y6b{bottom:808.442874px;}
.ydb{bottom:809.684332px;}
.y131{bottom:812.299069px;}
.y90{bottom:818.967769px;}
.ybc{bottom:820.042969px;}
.y2f{bottom:823.478387px;}
.yf6{bottom:829.535154px;}
.y6a{bottom:829.671392px;}
.yda{bottom:831.287848px;}
.y130{bottom:833.902584px;}
.y8f{bottom:840.571284px;}
.ybb{bottom:841.646484px;}
.y2e{bottom:843.281612px;}
.y69{bottom:849.849609px;}
.yf5{bottom:850.532228px;}
.yd9{bottom:852.891364px;}
.y12f{bottom:855.506109px;}
.y8e{bottom:861.568358px;}
.y2d{bottom:863.084657px;}
.yba{bottom:863.250000px;}
.y68{bottom:871.078127px;}
.yf4{bottom:871.335939px;}
.yd8{bottom:874.494879px;}
.y12e{bottom:882.301018px;}
.y2c{bottom:882.888062px;}
.yb9{bottom:885.758788px;}
.y8d{bottom:888.064454px;}
.y67{bottom:891.256344px;}
.y5{bottom:893.457441px;}
.yd7{bottom:896.098389px;}
.y2b{bottom:902.691287px;}
.yb8{bottom:907.362304px;}
.yf3{bottom:907.939449px;}
.y156{bottom:912.272460px;}
.y66{bottom:912.484862px;}
.yd6{bottom:917.200929px;}
.y2a{bottom:922.494317px;}
.y12d{bottom:927.207279px;}
.y4{bottom:927.213279px;}
.yf2{bottom:929.542969px;}
.yb7{bottom:929.871094px;}
.y65{bottom:932.663079px;}
.y8c{bottom:932.970699px;}
.y155{bottom:933.875976px;}
.y29{bottom:942.297722px;}
.y12c{bottom:948.810790px;}
.yf1{bottom:951.146484px;}
.yb6{bottom:951.474609px;}
.y3{bottom:952.417374px;}
.yd5{bottom:953.804443px;}
.y64{bottom:953.891597px;}
.y8b{bottom:954.574219px;}
.y154{bottom:955.479492px;}
.y28{bottom:962.100947px;}
.y12b{bottom:970.414306px;}
.yb5{bottom:972.471682px;}
.yf0{bottom:972.750000px;}
.y63{bottom:974.069829px;}
.yd4{bottom:975.407959px;}
.y8a{bottom:976.177735px;}
.y2{bottom:976.871469px;}
.y153{bottom:977.083007px;}
.y27{bottom:981.903992px;}
.y12a{bottom:992.017822px;}
.yb4{bottom:993.275389px;}
.y62{bottom:995.298332px;}
.yd3{bottom:997.011475px;}
.y89{bottom:997.781250px;}
.y152{bottom:998.686523px;}
.y1{bottom:1001.474991px;}
.y26{bottom:1001.707305px;}
.y129{bottom:1013.621337px;}
.y61{bottom:1015.476563px;}
.yd2{bottom:1018.614990px;}
.y88{bottom:1019.384766px;}
.y151{bottom:1020.290039px;}
.y25{bottom:1021.510620px;}
.yb3{bottom:1029.878906px;}
.y128{bottom:1035.224853px;}
.y60{bottom:1036.705077px;}
.yd1{bottom:1039.612061px;}
.y87{bottom:1040.988282px;}
.y24{bottom:1041.313659px;}
.y150{bottom:1041.893554px;}
.yb2{bottom:1051.482422px;}
.y127{bottom:1056.660647px;}
.y5f{bottom:1056.883301px;}
.yd0{bottom:1060.749026px;}
.y23{bottom:1061.116973px;}
.y86{bottom:1062.591797px;}
.y14f{bottom:1063.497070px;}
.yb1{bottom:1073.085938px;}
.y5e{bottom:1078.111815px;}
.y22{bottom:1080.920288px;}
.y85{bottom:1084.195313px;}
.y14e{bottom:1085.100585px;}
.yb0{bottom:1094.689453px;}
.y5d{bottom:1097.915037px;}
.ycf{bottom:1098.610109px;}
.y21{bottom:1100.723327px;}
.y84{bottom:1105.798827px;}
.y14d{bottom:1106.097655px;}
.yaf{bottom:1116.292969px;}
.y5c{bottom:1117.718261px;}
.y20{bottom:1120.901550px;}
.y83{bottom:1132.593751px;}
.yce{bottom:1136.471191px;}
.y5b{bottom:1137.896484px;}
.y1d{bottom:1138.005066px;}
.y58{bottom:1155.000000px;}
.h26{height:19.802490px;}
.h15{height:19.803040px;}
.h1b{height:19.803223px;}
.h27{height:20.140869px;}
.h14{height:20.141418px;}
.h16{height:20.141602px;}
.h23{height:20.141968px;}
.h21{height:25.013672px;}
.ha{height:38.390625px;}
.hb{height:40.500000px;}
.h22{height:41.689452px;}
.hc{height:43.347656px;}
.hf{height:43.989259px;}
.h11{height:44.999999px;}
.h18{height:46.921876px;}
.h8{height:48.134764px;}
.h12{height:48.164061px;}
.h1d{height:50.027344px;}
.he{height:50.176759px;}
.h20{height:50.484375px;}
.h2{height:51.187500px;}
.h7{height:52.948243px;}
.h1f{height:54.691408px;}
.h10{height:54.738281px;}
.h9{height:57.761719px;}
.h1c{height:57.796875px;}
.h24{height:63.173674px;}
.h1e{height:63.173677px;}
.h25{height:63.173695px;}
.h3{height:63.861326px;}
.h19{height:65.062502px;}
.h6{height:77.015627px;}
.h1{height:86.642578px;}
.h5{height:96.269529px;}
.h4{height:100.353518px;}
.h17{height:108.000000px;}
.hd{height:124.994934px;}
.h1a{height:137.566410px;}
.h13{height:168.616335px;}
.h0{height:1263.000000px;}
.w3{width:72.000000px;}
.w4{width:300.374910px;}
.w6{width:300.375000px;}
.w5{width:326.250000px;}
.w2{width:326.250030px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xe{left:7.875000px;}
.x1a{left:27.104799px;}
.x10{left:31.271149px;}
.xa{left:85.049996px;}
.x7{left:86.725200px;}
.x12{left:108.000000px;}
.x15{left:109.125000px;}
.xc{left:110.914365px;}
.x6{left:112.108467px;}
.x13{left:135.000000px;}
.x3{left:139.075714px;}
.xd{left:180.674996px;}
.xb{left:245.924996px;}
.x14{left:282.375000px;}
.x9{left:351.705089px;}
.x8{left:369.812814px;}
.x4{left:391.498376px;}
.xf{left:413.550015px;}
.x2{left:425.081696px;}
.x16{left:436.500000px;}
.x11{left:486.675015px;}
.x17{left:509.625000px;}
.x5{left:632.081696px;}
.x19{left:646.875000px;}
.x1{left:665.269162px;}
.x18{left:789.750000px;}
@media print{
.v2{vertical-align:-20.238281pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.348128pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:3.990434pt;}
.ws8{word-spacing:-38.406250pt;}
.ws4{word-spacing:-14.750000pt;}
.ws9{word-spacing:-14.687500pt;}
.ws5{word-spacing:-14.562500pt;}
.ws2{word-spacing:-13.520834pt;}
.wsa{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.239583pt;}
.ws6{word-spacing:-8.812500pt;}
.ws7{word-spacing:-8.000000pt;}
.ws3{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
._c{margin-left:-7.791785pt;}
._9{margin-left:-5.413979pt;}
._a{margin-left:-3.614480pt;}
._8{margin-left:-2.532116pt;}
._0{margin-left:-1.625436pt;}
._7{width:1.171876pt;}
._d{width:2.083231pt;}
._b{width:3.271659pt;}
._3{width:4.515624pt;}
._1{width:7.484376pt;}
._2{width:8.421862pt;}
._6{width:31.999999pt;}
._4{width:35.531250pt;}
._5{width:36.585940pt;}
._e{width:620.438788pt;}
.fsb{font-size:32.000000pt;}
.fs9{font-size:38.400002pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:53.333332pt;}
.fs6{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.fsa{font-size:69.333336pt;}
.fs2{font-size:74.666664pt;}
.fs5{font-size:85.333336pt;}
.fs0{font-size:96.000000pt;}
.fs4{font-size:106.666664pt;}
.fs3{font-size:117.333336pt;}
.y0{bottom:0.000000pt;}
.y125{bottom:3.666015pt;}
.y53{bottom:3.666504pt;}
.y56{bottom:3.666666pt;}
.y1f{bottom:3.666747pt;}
.yae{bottom:3.666992pt;}
.y5a{bottom:16.160157pt;}
.y1e{bottom:21.570475pt;}
.y59{bottom:34.063802pt;}
.y82{bottom:51.333327pt;}
.yad{bottom:66.569989pt;}
.y81{bottom:66.570314pt;}
.y126{bottom:66.570965pt;}
.y157{bottom:76.171869pt;}
.y124{bottom:76.172520pt;}
.y80{bottom:76.172522pt;}
.y57{bottom:78.933274pt;}
.y7f{bottom:85.473954pt;}
.y55{bottom:94.170247pt;}
.y1c{bottom:103.116702pt;}
.y54{bottom:103.772618pt;}
.y7e{bottom:108.044274pt;}
.y52{bottom:113.074224pt;}
.y1b{bottom:117.519046pt;}
.yac{bottom:125.645510pt;}
.y14c{bottom:125.645834pt;}
.y121{bottom:125.645840pt;}
.ycc{bottom:130.705400pt;}
.y1a{bottom:131.921390pt;}
.y51{bottom:135.644207pt;}
.yab{bottom:140.977545pt;}
.y14b{bottom:140.977865pt;}
.ycd{bottom:146.037431pt;}
.y120{bottom:146.037441pt;}
.y19{bottom:146.323736pt;}
.y123{bottom:156.309902pt;}
.y109{bottom:158.164065pt;}
.y50{bottom:160.354327pt;}
.y18{bottom:160.726070pt;}
.yaa{bottom:161.369147pt;}
.y14a{bottom:161.369467pt;}
.y17{bottom:175.128416pt;}
.y4f{bottom:176.357093pt;}
.y122{bottom:176.701503pt;}
.y108{bottom:177.367190pt;}
.yef{bottom:186.972005pt;}
.y16{bottom:189.530763pt;}
.y4e{bottom:192.692868pt;}
.ya9{bottom:196.030595pt;}
.y107{bottom:196.570315pt;}
.y15{bottom:203.933110pt;}
.yee{bottom:206.175130pt;}
.y4d{bottom:209.962570pt;}
.y149{bottom:210.512367pt;}
.ya8{bottom:215.233730pt;}
.y106{bottom:215.773435pt;}
.y14{bottom:218.335443pt;}
.yed{bottom:225.378255pt;}
.y4c{bottom:225.965010pt;}
.y11f{bottom:227.012372pt;}
.y7d{bottom:227.477867pt;}
.y148{bottom:229.715492pt;}
.y13{bottom:233.071050pt;}
.ya7{bottom:234.436855pt;}
.y105{bottom:234.531248pt;}
.y4b{bottom:241.967770pt;}
.yec{bottom:244.581380pt;}
.y11e{bottom:246.215497pt;}
.y147{bottom:248.918617pt;}
.y12{bottom:249.073730pt;}
.ya6{bottom:253.639980pt;}
.y4a{bottom:257.970383pt;}
.yeb{bottom:263.784505pt;}
.y11{bottom:265.076330pt;}
.y11d{bottom:265.418622pt;}
.y104{bottom:267.067702pt;}
.y7c{bottom:268.009121pt;}
.y146{bottom:268.121742pt;}
.ya5{bottom:272.843105pt;}
.y49{bottom:273.972823pt;}
.y10{bottom:281.745608pt;}
.yea{bottom:282.987630pt;}
.y11c{bottom:284.621742pt;}
.y103{bottom:286.270837pt;}
.y145{bottom:287.324875pt;}
.ycb{bottom:287.669272pt;}
.y48{bottom:289.975583pt;}
.ya4{bottom:292.046230pt;}
.yf{bottom:300.281983pt;}
.ye9{bottom:302.190755pt;}
.y11b{bottom:303.824873pt;}
.y102{bottom:305.473962pt;}
.y47{bottom:305.978196pt;}
.y144{bottom:306.527992pt;}
.yca{bottom:307.677084pt;}
.y7b{bottom:308.540361pt;}
.ya3{bottom:311.249355pt;}
.ye{bottom:316.284663pt;}
.ye8{bottom:321.393875pt;}
.y46{bottom:321.980636pt;}
.y11a{bottom:323.027998pt;}
.y101{bottom:324.677087pt;}
.y143{bottom:325.731117pt;}
.yc9{bottom:327.684897pt;}
.ya2{bottom:330.452475pt;}
.yd{bottom:332.287276pt;}
.y45{bottom:337.983396pt;}
.ye7{bottom:340.151688pt;}
.y119{bottom:342.231123pt;}
.y100{bottom:343.880212pt;}
.y142{bottom:344.934242pt;}
.yc8{bottom:346.888022pt;}
.yc{bottom:348.623215pt;}
.y7a{bottom:349.071614pt;}
.ya1{bottom:349.210288pt;}
.y44{bottom:354.652675pt;}
.y118{bottom:361.434248pt;}
.yff{bottom:363.083337pt;}
.y141{bottom:364.137367pt;}
.yc7{bottom:366.091142pt;}
.yb{bottom:367.892739pt;}
.ye6{bottom:372.688155pt;}
.y43{bottom:373.855795pt;}
.y117{bottom:380.637368pt;}
.ya0{bottom:381.746742pt;}
.yfe{bottom:382.286462pt;}
.y140{bottom:383.340492pt;}
.yc6{bottom:385.294267pt;}
.y79{bottom:389.602867pt;}
.ye5{bottom:391.891278pt;}
.y42{bottom:393.058915pt;}
.ya{bottom:394.830241pt;}
.y116{bottom:399.840500pt;}
.y9f{bottom:400.949870pt;}
.yfd{bottom:401.489582pt;}
.y13f{bottom:402.543617pt;}
.ye4{bottom:411.094403pt;}
.y41{bottom:412.262048pt;}
.y115{bottom:419.043625pt;}
.y9e{bottom:420.152995pt;}
.yfc{bottom:420.692702pt;}
.y13e{bottom:421.746742pt;}
.y9{bottom:426.835368pt;}
.y78{bottom:430.134121pt;}
.ye3{bottom:430.297528pt;}
.y40{bottom:431.465168pt;}
.y114{bottom:438.246750pt;}
.y9d{bottom:438.817060pt;}
.yfb{bottom:439.356771pt;}
.y13d{bottom:440.949875pt;}
.ye2{bottom:449.500653pt;}
.y3f{bottom:450.334802pt;}
.y113{bottom:457.449875pt;}
.y9c{bottom:457.605470pt;}
.y8{bottom:458.840659pt;}
.y13c{bottom:464.767572pt;}
.y3e{bottom:467.937828pt;}
.y77{bottom:470.665359pt;}
.y112{bottom:476.652995pt;}
.y3d{bottom:485.540695pt;}
.y7{bottom:490.845832pt;}
.y9b{bottom:491.408848pt;}
.y111{bottom:495.707029pt;}
.y3c{bottom:503.143388pt;}
.y13b{bottom:504.684248pt;}
.y76{bottom:510.582035pt;}
.y9a{bottom:510.611980pt;}
.y6{bottom:519.517705pt;}
.y3b{bottom:520.746415pt;}
.y13a{bottom:523.887367pt;}
.y75{bottom:529.785155pt;}
.y99{bottom:529.815105pt;}
.y110{bottom:530.124999pt;}
.y3a{bottom:538.349282pt;}
.y139{bottom:543.090492pt;}
.y74{bottom:548.988275pt;}
.y98{bottom:549.018230pt;}
.yc5{bottom:555.294275pt;}
.y39{bottom:555.951988pt;}
.y138{bottom:562.293617pt;}
.y73{bottom:568.191408pt;}
.y97{bottom:568.221355pt;}
.y10f{bottom:570.041662pt;}
.y38{bottom:573.555015pt;}
.yc4{bottom:574.497397pt;}
.y137{bottom:581.496742pt;}
.y72{bottom:587.394528pt;}
.y96{bottom:587.424475pt;}
.y10e{bottom:589.244793pt;}
.y37{bottom:591.157882pt;}
.yc3{bottom:593.700522pt;}
.y136{bottom:600.699875pt;}
.ye1{bottom:604.500648pt;}
.y71{bottom:606.597662pt;}
.y10d{bottom:608.447918pt;}
.y36{bottom:608.760575pt;}
.y95{bottom:611.242185pt;}
.yc2{bottom:612.903647pt;}
.ye0{bottom:623.703780pt;}
.y135{bottom:624.517572pt;}
.y70{bottom:625.800782pt;}
.y35{bottom:626.363602pt;}
.y10c{bottom:627.651043pt;}
.yc1{bottom:632.106772pt;}
.ydf{bottom:642.906905pt;}
.y34{bottom:643.966468pt;}
.y6f{bottom:645.003902pt;}
.y10b{bottom:646.854168pt;}
.y94{bottom:651.158848pt;}
.yc0{bottom:651.309897pt;}
.yfa{bottom:660.817713pt;}
.y33{bottom:661.569175pt;}
.yde{bottom:662.110030pt;}
.y6e{bottom:664.207035pt;}
.y134{bottom:664.434248pt;}
.y10a{bottom:666.057292pt;}
.y93{bottom:670.361975pt;}
.ybf{bottom:671.317710pt;}
.y32{bottom:679.172202pt;}
.yf9{bottom:679.755207pt;}
.ydd{bottom:681.313155pt;}
.y6d{bottom:683.076828pt;}
.y133{bottom:683.637367pt;}
.y92{bottom:689.565100pt;}
.ybe{bottom:690.520835pt;}
.y31{bottom:696.775068pt;}
.yf8{bottom:698.958332pt;}
.ydc{bottom:700.516275pt;}
.y6c{bottom:700.679682pt;}
.y132{bottom:702.840492pt;}
.y91{bottom:708.768225pt;}
.ybd{bottom:709.723955pt;}
.y30{bottom:714.377762pt;}
.yf7{bottom:718.161457pt;}
.y6b{bottom:718.615888pt;}
.ydb{bottom:719.719407pt;}
.y131{bottom:722.043617pt;}
.y90{bottom:727.971350pt;}
.ybc{bottom:728.927083pt;}
.y2f{bottom:731.980788pt;}
.yf6{bottom:737.364582pt;}
.y6a{bottom:737.485682pt;}
.yda{bottom:738.922532pt;}
.y130{bottom:741.246742pt;}
.y8f{bottom:747.174475pt;}
.ybb{bottom:748.130208pt;}
.y2e{bottom:749.583655pt;}
.y69{bottom:755.421875pt;}
.yf5{bottom:756.028647pt;}
.yd9{bottom:758.125657pt;}
.y12f{bottom:760.449875pt;}
.y8e{bottom:765.838540pt;}
.y2d{bottom:767.186362pt;}
.yba{bottom:767.333333pt;}
.y68{bottom:774.291668pt;}
.yf4{bottom:774.520834pt;}
.yd8{bottom:777.328782pt;}
.y12e{bottom:784.267572pt;}
.y2c{bottom:784.789388pt;}
.yb9{bottom:787.341145pt;}
.y8d{bottom:789.390625pt;}
.y67{bottom:792.227862pt;}
.y5{bottom:794.184392pt;}
.yd7{bottom:796.531902pt;}
.y2b{bottom:802.392255pt;}
.yb8{bottom:806.544270pt;}
.yf3{bottom:807.057288pt;}
.y156{bottom:810.908854pt;}
.y66{bottom:811.097655pt;}
.yd6{bottom:815.289714pt;}
.y2a{bottom:819.994948pt;}
.y12d{bottom:824.184248pt;}
.y4{bottom:824.189582pt;}
.yf2{bottom:826.260417pt;}
.yb7{bottom:826.552083pt;}
.y65{bottom:829.033848pt;}
.y8c{bottom:829.307288pt;}
.y155{bottom:830.111979pt;}
.y29{bottom:837.597975pt;}
.y12c{bottom:843.387369pt;}
.yf1{bottom:845.463542pt;}
.yb6{bottom:845.755208pt;}
.y3{bottom:846.593222pt;}
.yd5{bottom:847.826172pt;}
.y64{bottom:847.903642pt;}
.y8b{bottom:848.510417pt;}
.y154{bottom:849.315104pt;}
.y28{bottom:855.200842pt;}
.y12b{bottom:862.590494pt;}
.yb5{bottom:864.419273pt;}
.yf0{bottom:864.666667pt;}
.y63{bottom:865.839848pt;}
.yd4{bottom:867.029297pt;}
.y8a{bottom:867.713542pt;}
.y2{bottom:868.330195pt;}
.y153{bottom:868.518229pt;}
.y27{bottom:872.803548pt;}
.y12a{bottom:881.793619pt;}
.yb4{bottom:882.911457pt;}
.y62{bottom:884.709628pt;}
.yd3{bottom:886.232422pt;}
.y89{bottom:886.916667pt;}
.y152{bottom:887.721354pt;}
.y1{bottom:890.199992pt;}
.y26{bottom:890.406494pt;}
.y129{bottom:900.996744pt;}
.y61{bottom:902.645834pt;}
.yd2{bottom:905.435547pt;}
.y88{bottom:906.119792pt;}
.y151{bottom:906.924479pt;}
.y25{bottom:908.009440pt;}
.yb3{bottom:915.447916pt;}
.y128{bottom:920.199870pt;}
.y60{bottom:921.515624pt;}
.yd1{bottom:924.099609pt;}
.y87{bottom:925.322917pt;}
.y24{bottom:925.612142pt;}
.y150{bottom:926.127604pt;}
.yb2{bottom:934.651042pt;}
.y127{bottom:939.253908pt;}
.y5f{bottom:939.451823pt;}
.yd0{bottom:942.888023pt;}
.y23{bottom:943.215087pt;}
.y86{bottom:944.526042pt;}
.y14f{bottom:945.330729pt;}
.yb1{bottom:953.854167pt;}
.y5e{bottom:958.321614pt;}
.y22{bottom:960.818034pt;}
.y85{bottom:963.729167pt;}
.y14e{bottom:964.533854pt;}
.yb0{bottom:973.057292pt;}
.y5d{bottom:975.924478pt;}
.ycf{bottom:976.542319pt;}
.y21{bottom:978.420735pt;}
.y84{bottom:982.932291pt;}
.y14d{bottom:983.197916pt;}
.yaf{bottom:992.260417pt;}
.y5c{bottom:993.527343pt;}
.y20{bottom:996.356934pt;}
.y83{bottom:1006.750001pt;}
.yce{bottom:1010.196614pt;}
.y5b{bottom:1011.463542pt;}
.y1d{bottom:1011.560059pt;}
.y58{bottom:1026.666667pt;}
.h26{height:17.602214pt;}
.h15{height:17.602702pt;}
.h1b{height:17.602865pt;}
.h27{height:17.902995pt;}
.h14{height:17.903483pt;}
.h16{height:17.903646pt;}
.h23{height:17.903971pt;}
.h21{height:22.234375pt;}
.ha{height:34.125000pt;}
.hb{height:36.000000pt;}
.h22{height:37.057291pt;}
.hc{height:38.531250pt;}
.hf{height:39.101563pt;}
.h11{height:39.999999pt;}
.h18{height:41.708334pt;}
.h8{height:42.786457pt;}
.h12{height:42.812499pt;}
.h1d{height:44.468750pt;}
.he{height:44.601564pt;}
.h20{height:44.875000pt;}
.h2{height:45.500000pt;}
.h7{height:47.065105pt;}
.h1f{height:48.614585pt;}
.h10{height:48.656250pt;}
.h9{height:51.343750pt;}
.h1c{height:51.375000pt;}
.h24{height:56.154377pt;}
.h1e{height:56.154379pt;}
.h25{height:56.154395pt;}
.h3{height:56.765623pt;}
.h19{height:57.833335pt;}
.h6{height:68.458335pt;}
.h1{height:77.015625pt;}
.h5{height:85.572915pt;}
.h4{height:89.203127pt;}
.h17{height:96.000000pt;}
.hd{height:111.106608pt;}
.h1a{height:122.281253pt;}
.h13{height:149.881187pt;}
.h0{height:1122.666667pt;}
.w3{width:64.000000pt;}
.w4{width:266.999920pt;}
.w6{width:267.000000pt;}
.w5{width:290.000000pt;}
.w2{width:290.000027pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xe{left:7.000000pt;}
.x1a{left:24.093155pt;}
.x10{left:27.796577pt;}
.xa{left:75.599996pt;}
.x7{left:77.089067pt;}
.x12{left:96.000000pt;}
.x15{left:97.000000pt;}
.xc{left:98.590547pt;}
.x6{left:99.651971pt;}
.x13{left:120.000000pt;}
.x3{left:123.622857pt;}
.xd{left:160.599996pt;}
.xb{left:218.599996pt;}
.x14{left:251.000000pt;}
.x9{left:312.626746pt;}
.x8{left:328.722501pt;}
.x4{left:347.998556pt;}
.xf{left:367.600013pt;}
.x2{left:377.850396pt;}
.x16{left:388.000000pt;}
.x11{left:432.600013pt;}
.x17{left:453.000000pt;}
.x5{left:561.850396pt;}
.x19{left:575.000000pt;}
.x1{left:591.350366pt;}
.x18{left:702.000000pt;}
}




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