
    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_98a1919ad58578ce5d9c2118.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3f58837f7fbb9ef969223447.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_13be082979ad4b4659dfa152.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861328;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_65e52d21fde14304c3ccc298.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861328;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_7bee8eb4e263d369e7ba8811.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.731445;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_67fec2fbf9c533fc53e5df60.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_92182813b0fce692de50489d.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7b83cc374e1b10d1285704ce.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_44106d7e118233b51dfa09ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.895996;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_55f5a7700fb940c1da55722d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.861328;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_108d6181cdd1174fe120302d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_aa2a2d94e957f30a3bfb5516.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.746094;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_e42fb05030bcdf02add6b1ba.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.808105;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_72de4ee555d70f2a7810f9b6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.861816;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_baec303cfdd7d31b7651b575.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_349c087dbebedf5d941911e7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.861816;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;}
.v2{vertical-align:26.586914px;}
.v1{vertical-align:28.198264px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000002px;}
.ls5{letter-spacing:0.000033px;}
.ls8{letter-spacing:0.433560px;}
.ls4{letter-spacing:4.489401px;}
.ls7{letter-spacing:41.449219px;}
.ls6{letter-spacing:59.941384px;}
.ls1{letter-spacing:88.160157px;}
.ls2{letter-spacing:697.489403px;}
.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;}
}
.ws2{word-spacing:-14.920899px;}
.ws4{word-spacing:-9.495117px;}
.ws5{word-spacing:-8.952539px;}
.ws3{word-spacing:-0.066000px;}
.ws0{word-spacing:-0.057000px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-8.524372px;}
._d{margin-left:-7.511446px;}
._17{margin-left:-6.410190px;}
._8{margin-left:-4.736169px;}
._5{margin-left:-3.490586px;}
._0{margin-left:-1.808487px;}
._13{width:1.092972px;}
._4{width:2.292298px;}
._b{width:3.550858px;}
._a{width:4.687037px;}
._e{width:6.083639px;}
._9{width:8.904669px;}
._f{width:10.122080px;}
._c{width:12.563313px;}
._3{width:13.997282px;}
._2{width:17.934973px;}
._20{width:21.657533px;}
._12{width:22.668160px;}
._10{width:26.164142px;}
._11{width:27.603486px;}
._16{width:35.389132px;}
._15{width:36.687848px;}
._14{width:40.399817px;}
._1f{width:48.568655px;}
._1e{width:50.044151px;}
._1d{width:53.014160px;}
._1c{width:54.259871px;}
._1b{width:58.317093px;}
._1a{width:71.849197px;}
._19{width:80.265900px;}
._6{width:754.993036px;}
._7{width:1019.206441px;}
._1{width:1052.883347px;}
.fc6{color:rgb(19,115,51);}
.fc5{color:rgb(31,77,120);}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(46,116,181);}
.fc7{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:39.600001px;}
.fsa{font-size:41.999999px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.000002px;}
.fs7{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs3{font-size:72.000000px;}
.fs9{font-size:78.000003px;}
.fs1{font-size:83.999997px;}
.fs8{font-size:96.000003px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.yae{bottom:4.124258px;}
.yd7{bottom:4.124267px;}
.y4{bottom:4.125000px;}
.yda{bottom:4.125004px;}
.y14{bottom:4.125091px;}
.yb0{bottom:4.125732px;}
.y119{bottom:4.126470px;}
.y176{bottom:11.999999px;}
.y5{bottom:12.795559px;}
.yad{bottom:24.265868px;}
.yd9{bottom:24.267334px;}
.y178{bottom:26.753906px;}
.y49{bottom:38.316284px;}
.y37{bottom:38.316467px;}
.y71{bottom:38.316650px;}
.y18{bottom:38.316833px;}
.yff{bottom:38.317382px;}
.y6f{bottom:56.849858px;}
.y15{bottom:56.850038px;}
.y34{bottom:56.850218px;}
.y122{bottom:56.850578px;}
.y96{bottom:58.457519px;}
.y70{bottom:58.457887px;}
.yfe{bottom:58.458251px;}
.y48{bottom:58.458253px;}
.y2{bottom:58.458400px;}
.y36{bottom:58.458436px;}
.y17{bottom:58.458527px;}
.y124{bottom:58.458983px;}
.y193{bottom:58.460449px;}
.y13{bottom:75.224947px;}
.y12{bottom:102.512783px;}
.y16c{bottom:134.096198px;}
.y11{bottom:134.542238px;}
.ya7{bottom:134.715092px;}
.yfc{bottom:136.937990px;}
.y6e{bottom:141.474248px;}
.y192{bottom:144.571283px;}
.yd0{bottom:146.797106px;}
.y145{bottom:151.688963px;}
.y16b{bottom:155.581050px;}
.ya6{bottom:156.199217px;}
.yfb{bottom:158.421394px;}
.y121{bottom:161.771499px;}
.y6d{bottom:162.958733px;}
.y191{bottom:166.056143px;}
.y10{bottom:167.280943px;}
.y139{bottom:167.802246px;}
.ycf{bottom:168.281240px;}
.y16a{bottom:177.064448px;}
.ya5{bottom:177.683356px;}
.yfa{bottom:179.906258px;}
.y120{bottom:181.302246px;}
.y144{bottom:184.677246px;}
.yf{bottom:185.835660px;}
.y138{bottom:187.333009px;}
.y190{bottom:187.538078px;}
.yce{bottom:189.766103px;}
.y12e{bottom:194.802246px;}
.ya4{bottom:199.168216px;}
.y11f{bottom:200.833009px;}
.yf9{bottom:201.390391px;}
.y6c{bottom:202.442867px;}
.y143{bottom:204.208009px;}
.y137{bottom:206.863774px;}
.y169{bottom:210.547846px;}
.ycd{bottom:211.250237px;}
.y12d{bottom:214.333009px;}
.y11e{bottom:220.363774px;}
.ya3{bottom:220.652348px;}
.ye{bottom:221.609625px;}
.yf8{bottom:222.875251px;}
.y142{bottom:223.738774px;}
.y6b{bottom:223.926997px;}
.y136{bottom:226.395999px;}
.y18f{bottom:227.024415px;}
.y168{bottom:232.034175px;}
.ycc{bottom:232.734362px;}
.y12c{bottom:233.863774px;}
.y11d{bottom:239.895999px;}
.y141{bottom:243.270999px;}
.yf7{bottom:244.360111px;}
.y6a{bottom:245.411862px;}
.y135{bottom:245.926759px;}
.y18e{bottom:248.507813px;}
.y12b{bottom:253.395999px;}
.y167{bottom:253.517573px;}
.ycb{bottom:254.218501px;}
.y11c{bottom:259.426759px;}
.ya2{bottom:259.639898px;}
.y140{bottom:262.801759px;}
.y134{bottom:265.458987px;}
.yf6{bottom:265.844243px;}
.y69{bottom:266.896358px;}
.y12a{bottom:272.926759px;}
.y95{bottom:274.762568px;}
.yca{bottom:275.703361px;}
.y11b{bottom:278.958987px;}
.ya1{bottom:279.171390px;}
.y18d{bottom:281.992674px;}
.y13f{bottom:282.333987px;}
.y133{bottom:284.988283px;}
.y166{bottom:287.002448px;}
.y68{bottom:288.380858px;}
.y129{bottom:292.458987px;}
.y94{bottom:296.247068px;}
.yc9{bottom:297.187493px;}
.y11a{bottom:298.488283px;}
.ya0{bottom:298.702152px;}
.yf5{bottom:299.327652px;}
.y132{bottom:300.673830px;}
.y13e{bottom:301.863283px;}
.y18c{bottom:303.477533px;}
.y165{bottom:308.485840px;}
.y67{bottom:309.864978px;}
.y128{bottom:311.988283px;}
.y118{bottom:314.173830px;}
.y13d{bottom:317.548830px;}
.y93{bottom:317.731201px;}
.yf4{bottom:320.812486px;}
.yd{bottom:322.300965px;}
.y18b{bottom:324.962393px;}
.y127{bottom:327.673830px;}
.y164{bottom:329.970705px;}
.yc8{bottom:330.672365px;}
.y66{bottom:331.349117px;}
.y92{bottom:339.215335px;}
.yf3{bottom:342.296644px;}
.y9f{bottom:346.262700px;}
.y18a{bottom:346.444328px;}
.y163{bottom:351.454103px;}
.yc7{bottom:352.156499px;}
.y65{bottom:352.833613px;}
.y91{bottom:360.699829px;}
.yf2{bottom:363.781501px;}
.yc6{bottom:373.640633px;}
.y64{bottom:374.318109px;}
.y33{bottom:374.881163px;}
.y189{bottom:379.929200px;}
.y90{bottom:382.184692px;}
.y162{bottom:384.940433px;}
.yf1{bottom:385.266368px;}
.yc5{bottom:395.124766px;}
.y188{bottom:401.414063px;}
.y8f{bottom:403.669187px;}
.y161{bottom:406.423823px;}
.yf0{bottom:406.750493px;}
.y32{bottom:408.365483px;}
.y63{bottom:414.299554px;}
.yc4{bottom:416.609626px;}
.y8e{bottom:425.153318px;}
.yef{bottom:428.235356px;}
.y187{bottom:434.897454px;}
.yc3{bottom:438.093755px;}
.y160{bottom:439.907221px;}
.y31{bottom:441.849788px;}
.yee{bottom:449.718761px;}
.y8d{bottom:456.134763px;}
.y62{bottom:456.234015px;}
.y186{bottom:456.383783px;}
.yc2{bottom:459.578618px;}
.y15f{bottom:461.393550px;}
.yed{bottom:471.203615px;}
.y30{bottom:475.831242px;}
.y185{bottom:480.353026px;}
.y15e{bottom:482.876948px;}
.yec{bottom:492.687019px;}
.yc1{bottom:493.062740px;}
.y8c{bottom:497.075316px;}
.y2f{bottom:498.771794px;}
.y61{bottom:501.115726px;}
.yeb{bottom:514.171883px;}
.yc0{bottom:514.546874px;}
.y15d{bottom:516.361823px;}
.y8b{bottom:518.559818px;}
.y2e{bottom:520.256108px;}
.y184{bottom:527.118155px;}
.yea{bottom:535.656016px;}
.ybf{bottom:536.031008px;}
.y15c{bottom:537.845215px;}
.y8a{bottom:540.375121px;}
.y183{bottom:548.601559px;}
.y60{bottom:549.558838px;}
.y2d{bottom:553.740413px;}
.ye9{bottom:557.140876px;}
.ybe{bottom:557.515862px;}
.y15b{bottom:559.330080px;}
.y89{bottom:562.830317px;}
.y182{bottom:570.087882px;}
.y131{bottom:572.550300px;}
.y5f{bottom:572.722042px;}
.ye8{bottom:578.625736px;}
.ybd{bottom:579.000001px;}
.y15a{bottom:580.813478px;}
.y88{bottom:584.314456px;}
.y117{bottom:584.925300px;}
.y2c{bottom:586.727787px;}
.y13c{bottom:589.425300px;}
.y181{bottom:591.569818px;}
.y5e{bottom:595.884518px;}
.y126{bottom:598.425300px;}
.y115{bottom:598.924079px;}
.ye7{bottom:600.109868px;}
.ybc{bottom:600.484861px;}
.y87{bottom:605.798585px;}
.y2b{bottom:606.259100px;}
.y180{bottom:613.054681px;}
.y159{bottom:614.299808px;}
.y5d{bottom:619.047363px;}
.y114{bottom:620.408942px;}
.ybb{bottom:621.968993px;}
.y2a{bottom:626.287358px;}
.y86{bottom:627.283448px;}
.ye6{bottom:633.593266px;}
.y17f{bottom:634.539545px;}
.y158{bottom:635.783210px;}
.y113{bottom:641.893067px;}
.y5c{bottom:642.210572px;}
.ye5{bottom:655.078126px;}
.yba{bottom:655.453133px;}
.y17e{bottom:656.024408px;}
.y157{bottom:657.268073px;}
.y29{bottom:659.771663px;}
.y85{bottom:660.767579px;}
.y112{bottom:663.377935px;}
.y5b{bottom:665.373046px;}
.y17d{bottom:676.166018px;}
.ye4{bottom:676.562254px;}
.yb9{bottom:676.937266px;}
.y84{bottom:682.252073px;}
.y111{bottom:684.861335px;}
.y5a{bottom:688.535888px;}
.y156{bottom:690.752933px;}
.y28{bottom:691.913273px;}
.ye3{bottom:698.047126px;}
.yb8{bottom:698.422126px;}
.y17c{bottom:700.135261px;}
.y83{bottom:703.736567px;}
.y110{bottom:706.346198px;}
.y59{bottom:711.699098px;}
.y155{bottom:712.236323px;}
.y9e{bottom:715.480958px;}
.ye2{bottom:719.531986px;}
.yb7{bottom:719.906255px;}
.y82{bottom:725.220706px;}
.y27{bottom:725.397773px;}
.y58{bottom:734.861577px;}
.y9d{bottom:735.247563px;}
.y10f{bottom:739.830311px;}
.ye1{bottom:741.016115px;}
.yb6{bottom:741.391118px;}
.y46{bottom:745.457513px;}
.y26{bottom:745.539188px;}
.y154{bottom:745.721198px;}
.y81{bottom:746.704835px;}
.y17b{bottom:746.983889px;}
.y9c{bottom:753.557378px;}
.y57{bottom:758.024404px;}
.y10e{bottom:761.315183px;}
.ye0{bottom:762.500978px;}
.yc{bottom:764.390809px;}
.y25{bottom:765.680788px;}
.y153{bottom:767.204585px;}
.y80{bottom:768.189698px;}
.y17a{bottom:768.552248px;}
.y9b{bottom:771.868655px;}
.y45{bottom:774.442013px;}
.yb5{bottom:774.875243px;}
.y56{bottom:781.187622px;}
.y10d{bottom:782.799308px;}
.y177{bottom:785.695317px;}
.y24{bottom:785.822573px;}
.y152{bottom:788.689448px;}
.y9a{bottom:790.179204px;}
.yb4{bottom:794.374511px;}
.y44{bottom:794.583429px;}
.ydf{bottom:795.984368px;}
.y7f{bottom:799.171144px;}
.y179{bottom:800.449224px;}
.yb{bottom:802.810731px;}
.y10c{bottom:804.284172px;}
.y55{bottom:804.350098px;}
.y99{bottom:808.489019px;}
.yde{bottom:815.485101px;}
.y23{bottom:817.964168px;}
.yb3{bottom:817.999511px;}
.y43{bottom:819.224859px;}
.y151{bottom:822.174323px;}
.y98{bottom:824.175293px;}
.y10b{bottom:825.767567px;}
.y54{bottom:827.512942px;}
.y175{bottom:837.465819px;}
.ydd{bottom:839.110101px;}
.y22{bottom:839.448488px;}
.y7e{bottom:840.111308px;}
.y97{bottom:841.050293px;}
.yb2{bottom:841.624511px;}
.y150{bottom:843.659175px;}
.y42{bottom:843.866829px;}
.y10a{bottom:847.252435px;}
.y53{bottom:850.676147px;}
.ya{bottom:850.961112px;}
.y19b{bottom:854.047853px;}
.y21{bottom:859.590083px;}
.y7d{bottom:861.595467px;}
.ydc{bottom:862.735101px;}
.y14f{bottom:865.142573px;}
.yb1{bottom:865.249511px;}
.y41{bottom:868.508244px;}
.y109{bottom:868.735835px;}
.y52{bottom:873.838623px;}
.y7c{bottom:883.080323px;}
.ydb{bottom:886.360101px;}
.yaf{bottom:888.874511px;}
.y108{bottom:890.220698px;}
.y125{bottom:890.548829px;}
.y20{bottom:891.731693px;}
.y174{bottom:892.034183px;}
.y40{bottom:892.521418px;}
.y19a{bottom:893.534183px;}
.y51{bottom:897.001463px;}
.y9{bottom:898.047049px;}
.y14e{bottom:898.625979px;}
.y130{bottom:899.548829px;}
.y12f{bottom:900.673829px;}
.y7b{bottom:904.564808px;}
.y116{bottom:906.298828px;}
.yd8{bottom:907.625974px;}
.yac{bottom:910.142580px;}
.y13b{bottom:916.423829px;}
.y3f{bottom:916.623054px;}
.y14d{bottom:920.112308px;}
.y50{bottom:920.164673px;}
.y173{bottom:923.512215px;}
.y107{bottom:923.705573px;}
.y1f{bottom:923.873288px;}
.y7a{bottom:926.049316px;}
.y13a{bottom:927.673829px;}
.yd6{bottom:927.769041px;}
.yab{bottom:930.283448px;}
.y199{bottom:933.017572px;}
.y8{bottom:934.478710px;}
.y3e{bottom:941.265009px;}
.y106{bottom:943.205573px;}
.y4f{bottom:943.327148px;}
.y79{bottom:947.533441px;}
.y14c{bottom:953.595698px;}
.y198{bottom:954.503907px;}
.y1e{bottom:956.014898px;}
.y172{bottom:965.714362px;}
.y3d{bottom:965.906439px;}
.y4e{bottom:966.489990px;}
.yd5{bottom:966.501713px;}
.y105{bottom:966.830573px;}
.yaa{bottom:969.017573px;}
.y78{bottom:969.017584px;}
.y7{bottom:973.822450px;}
.y14b{bottom:975.080573px;}
.y197{bottom:975.985840px;}
.yd4{bottom:987.986573px;}
.y1d{bottom:988.156493px;}
.y4d{bottom:989.653199px;}
.y104{bottom:990.455573px;}
.y77{bottom:990.502078px;}
.ya9{bottom:990.502448px;}
.y3c{bottom:990.547854px;}
.y196{bottom:997.470703px;}
.y171{bottom:999.987304px;}
.y14a{bottom:1008.565429px;}
.yd3{bottom:1009.470703px;}
.y6{bottom:1011.674996px;}
.y76{bottom:1011.986572px;}
.y4c{bottom:1012.815673px;}
.y103{bottom:1014.080566px;}
.y3b{bottom:1015.189819px;}
.y1c{bottom:1020.298096px;}
.y170{bottom:1021.470703px;}
.y149{bottom:1030.048828px;}
.yd2{bottom:1030.955566px;}
.y75{bottom:1033.470706px;}
.y4b{bottom:1035.978515px;}
.y195{bottom:1036.955566px;}
.y102{bottom:1037.705566px;}
.y16f{bottom:1042.955566px;}
.y3a{bottom:1048.674133px;}
.y1b{bottom:1052.439697px;}
.y74{bottom:1054.954838px;}
.y194{bottom:1058.440429px;}
.y148{bottom:1063.533691px;}
.yd1{bottom:1064.439697px;}
.y39{bottom:1072.643921px;}
.y16e{bottom:1076.438965px;}
.y101{bottom:1076.438966px;}
.y73{bottom:1076.439698px;}
.y147{bottom:1085.017090px;}
.y1a{bottom:1085.924011px;}
.ya8{bottom:1097.923828px;}
.y72{bottom:1097.924194px;}
.y146{bottom:1116.495117px;}
.y16d{bottom:1119.407227px;}
.y100{bottom:1119.407959px;}
.y19{bottom:1119.408325px;}
.y38{bottom:1119.408508px;}
.y4a{bottom:1119.408691px;}
.y123{bottom:1135.423829px;}
.yfd{bottom:1135.424561px;}
.y16{bottom:1135.424927px;}
.y1{bottom:1135.424996px;}
.y35{bottom:1135.425109px;}
.y47{bottom:1135.425293px;}
.y3{bottom:1166.595554px;}
.h1e{height:20.140869px;}
.h3{height:20.141602px;}
.hc{height:20.141693px;}
.h1d{height:20.142334px;}
.h31{height:35.891601px;}
.h1c{height:40.282470px;}
.h1f{height:40.283936px;}
.ha{height:42.360353px;}
.hf{height:44.589843px;}
.he{height:45.117189px;}
.h13{height:47.437501px;}
.h30{height:47.988281px;}
.h2{height:49.048829px;}
.h20{height:49.048846px;}
.h8{height:49.218750px;}
.h32{height:50.645508px;}
.h16{height:53.320315px;}
.h5{height:53.507813px;}
.h18{height:56.016211px;}
.h4{height:57.421873px;}
.h17{height:59.411154px;}
.h12{height:65.625002px;}
.h7{height:73.828125px;}
.h6{height:82.031248px;}
.h9{height:89.179685px;}
.h14{height:127.199700px;}
.h10{height:127.199895px;}
.hb{height:127.200075px;}
.h21{height:127.200435px;}
.h26{height:127.201170px;}
.h15{height:127.574707px;}
.h11{height:127.574891px;}
.h1{height:127.575004px;}
.hd{height:127.575073px;}
.h22{height:127.575439px;}
.h27{height:127.576171px;}
.h2e{height:206.625000px;}
.h2f{height:217.875000px;}
.h23{height:228.000732px;}
.h2a{height:233.625000px;}
.h2b{height:234.750000px;}
.h28{height:243.750000px;}
.h25{height:269.626470px;}
.h2d{height:270.751470px;}
.h29{height:291.000000px;}
.h19{height:293.250000px;}
.h1a{height:310.125000px;}
.h24{height:320.250000px;}
.h2c{height:325.875000px;}
.h1b{height:350.625000px;}
.h0{height:1263.000000px;}
.we{width:93.375000px;}
.w14{width:101.250000px;}
.wd{width:103.500000px;}
.wc{width:103.500012px;}
.wf{width:112.499954px;}
.w7{width:129.374954px;}
.w9{width:130.500023px;}
.w6{width:142.875000px;}
.w5{width:142.875023px;}
.wb{width:145.124954px;}
.wa{width:145.125000px;}
.w8{width:156.374954px;}
.w2{width:240.750000px;}
.w15{width:302.624910px;}
.w13{width:311.625030px;}
.w4{width:359.999910px;}
.w3{width:360.000030px;}
.w11{width:367.874910px;}
.w10{width:721.124910px;}
.w12{width:728.999910px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x10{left:6.750000px;}
.x1f{left:10.567826px;}
.x12{left:13.190743px;}
.x25{left:14.909597px;}
.x19{left:18.765507px;}
.x21{left:27.022678px;}
.x14{left:32.528724px;}
.x16{left:39.887710px;}
.x18{left:47.659713px;}
.xd{left:78.299996px;}
.x1{left:85.049996px;}
.x30{left:86.174995px;}
.x1a{left:92.924995px;}
.xa{left:112.049996px;}
.xc{left:117.674996px;}
.x3{left:120.375000px;}
.xb{left:139.049996px;}
.x20{left:182.925007px;}
.x11{left:222.300018px;}
.x1b{left:224.550018px;}
.x8{left:259.424996px;}
.x2a{left:263.250000px;}
.x29{left:274.500000px;}
.x22{left:287.550015px;}
.x2{left:317.925015px;}
.x2e{left:321.750000px;}
.x2f{left:329.625000px;}
.x26{left:347.625000px;}
.xe{left:355.500000px;}
.x2d{left:364.500000px;}
.x13{left:366.300015px;}
.x1c{left:370.800015px;}
.x7{left:384.689358px;}
.x23{left:392.175015px;}
.x31{left:398.925015px;}
.x6{left:432.674996px;}
.xf{left:439.425015px;}
.x24{left:486.675015px;}
.x32{left:501.300015px;}
.x15{left:510.300015px;}
.x1d{left:517.050015px;}
.x4{left:558.674996px;}
.x17{left:640.799970px;}
.x2b{left:655.312500px;}
.x1e{left:663.299970px;}
.x27{left:680.062500px;}
.x2c{left:684.000000px;}
.x5{left:688.894162px;}
.x28{left:791.149687px;}
.x9{left:799.506502px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.632812pt;}
.v1{vertical-align:25.065124pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000001pt;}
.ls5{letter-spacing:0.000030pt;}
.ls8{letter-spacing:0.385386pt;}
.ls4{letter-spacing:3.990579pt;}
.ls7{letter-spacing:36.843750pt;}
.ls6{letter-spacing:53.281230pt;}
.ls1{letter-spacing:78.364584pt;}
.ls2{letter-spacing:619.990581pt;}
.ws2{word-spacing:-13.263021pt;}
.ws4{word-spacing:-8.440104pt;}
.ws5{word-spacing:-7.957813pt;}
.ws3{word-spacing:-0.058667pt;}
.ws0{word-spacing:-0.050667pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-7.577219pt;}
._d{margin-left:-6.676841pt;}
._17{margin-left:-5.697947pt;}
._8{margin-left:-4.209928pt;}
._5{margin-left:-3.102743pt;}
._0{margin-left:-1.607544pt;}
._13{width:0.971530pt;}
._4{width:2.037598pt;}
._b{width:3.156318pt;}
._a{width:4.166255pt;}
._e{width:5.407679pt;}
._9{width:7.915261pt;}
._f{width:8.997404pt;}
._c{width:11.167389pt;}
._3{width:12.442028pt;}
._2{width:15.942198pt;}
._20{width:19.251140pt;}
._12{width:20.149476pt;}
._10{width:23.257015pt;}
._11{width:24.536432pt;}
._16{width:31.457006pt;}
._15{width:32.611420pt;}
._14{width:35.910948pt;}
._1f{width:43.172137pt;}
._1e{width:44.483690pt;}
._1d{width:47.123698pt;}
._1c{width:48.230997pt;}
._1b{width:51.837416pt;}
._1a{width:63.865953pt;}
._19{width:71.347467pt;}
._6{width:671.104921pt;}
._7{width:905.961281pt;}
._1{width:935.896308pt;}
.fsb{font-size:35.200001pt;}
.fsa{font-size:37.333332pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.666668pt;}
.fs7{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs3{font-size:64.000000pt;}
.fs9{font-size:69.333336pt;}
.fs1{font-size:74.666664pt;}
.fs8{font-size:85.333336pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:3.666007pt;}
.yd7{bottom:3.666015pt;}
.y4{bottom:3.666666pt;}
.yda{bottom:3.666670pt;}
.y14{bottom:3.666748pt;}
.yb0{bottom:3.667317pt;}
.y119{bottom:3.667973pt;}
.y176{bottom:10.666666pt;}
.y5{bottom:11.373830pt;}
.yad{bottom:21.569660pt;}
.yd9{bottom:21.570963pt;}
.y178{bottom:23.781250pt;}
.y49{bottom:34.058919pt;}
.y37{bottom:34.059082pt;}
.y71{bottom:34.059244pt;}
.y18{bottom:34.059407pt;}
.yff{bottom:34.059895pt;}
.y6f{bottom:50.533207pt;}
.y15{bottom:50.533367pt;}
.y34{bottom:50.533527pt;}
.y122{bottom:50.533847pt;}
.y96{bottom:51.962239pt;}
.y70{bottom:51.962566pt;}
.yfe{bottom:51.962890pt;}
.y48{bottom:51.962891pt;}
.y2{bottom:51.963022pt;}
.y36{bottom:51.963054pt;}
.y17{bottom:51.963135pt;}
.y124{bottom:51.963540pt;}
.y193{bottom:51.964843pt;}
.y13{bottom:66.866619pt;}
.y12{bottom:91.122474pt;}
.y16c{bottom:119.196620pt;}
.y11{bottom:119.593101pt;}
.ya7{bottom:119.746748pt;}
.yfc{bottom:121.722658pt;}
.y6e{bottom:125.754887pt;}
.y192{bottom:128.507807pt;}
.yd0{bottom:130.486316pt;}
.y145{bottom:134.834634pt;}
.y16b{bottom:138.294266pt;}
.ya6{bottom:138.843748pt;}
.yfb{bottom:140.819017pt;}
.y121{bottom:143.796888pt;}
.y6d{bottom:144.852207pt;}
.y191{bottom:147.605461pt;}
.y10{bottom:148.694171pt;}
.y139{bottom:149.157552pt;}
.ycf{bottom:149.583325pt;}
.y16a{bottom:157.390620pt;}
.ya5{bottom:157.940760pt;}
.yfa{bottom:159.916674pt;}
.y120{bottom:161.157552pt;}
.y144{bottom:164.157552pt;}
.yf{bottom:165.187253pt;}
.y138{bottom:166.518231pt;}
.y190{bottom:166.700514pt;}
.yce{bottom:168.680981pt;}
.y12e{bottom:173.157552pt;}
.ya4{bottom:177.038414pt;}
.y11f{bottom:178.518231pt;}
.yf9{bottom:179.013681pt;}
.y6c{bottom:179.949215pt;}
.y143{bottom:181.518231pt;}
.y137{bottom:183.878911pt;}
.y169{bottom:187.153641pt;}
.ycd{bottom:187.777989pt;}
.y12d{bottom:190.518231pt;}
.y11e{bottom:195.878911pt;}
.ya3{bottom:196.135420pt;}
.ye{bottom:196.986333pt;}
.yf8{bottom:198.111334pt;}
.y142{bottom:198.878911pt;}
.y6b{bottom:199.046219pt;}
.y136{bottom:201.240888pt;}
.y18f{bottom:201.799480pt;}
.y168{bottom:206.252600pt;}
.ycc{bottom:206.874989pt;}
.y12c{bottom:207.878911pt;}
.y11d{bottom:213.240888pt;}
.y141{bottom:216.240888pt;}
.yf7{bottom:217.208988pt;}
.y6a{bottom:218.143877pt;}
.y135{bottom:218.601564pt;}
.y18e{bottom:220.895834pt;}
.y12b{bottom:225.240888pt;}
.y167{bottom:225.348954pt;}
.ycb{bottom:225.972001pt;}
.y11c{bottom:230.601564pt;}
.ya2{bottom:230.791020pt;}
.y140{bottom:233.601564pt;}
.y134{bottom:235.963544pt;}
.yf6{bottom:236.305994pt;}
.y69{bottom:237.241207pt;}
.y12a{bottom:242.601564pt;}
.y95{bottom:244.233394pt;}
.yca{bottom:245.069655pt;}
.y11b{bottom:247.963544pt;}
.ya1{bottom:248.152346pt;}
.y18d{bottom:250.660155pt;}
.y13f{bottom:250.963544pt;}
.y133{bottom:253.322919pt;}
.y166{bottom:255.113287pt;}
.y68{bottom:256.338541pt;}
.y129{bottom:259.963544pt;}
.y94{bottom:263.330727pt;}
.yc9{bottom:264.166661pt;}
.y11a{bottom:265.322919pt;}
.ya0{bottom:265.513024pt;}
.yf5{bottom:266.069024pt;}
.y132{bottom:267.265627pt;}
.y13e{bottom:268.322919pt;}
.y18c{bottom:269.757807pt;}
.y165{bottom:274.209635pt;}
.y67{bottom:275.435536pt;}
.y128{bottom:277.322919pt;}
.y118{bottom:279.265627pt;}
.y13d{bottom:282.265627pt;}
.y93{bottom:282.427734pt;}
.yf4{bottom:285.166654pt;}
.yd{bottom:286.489747pt;}
.y18b{bottom:288.855461pt;}
.y127{bottom:291.265627pt;}
.y164{bottom:293.307293pt;}
.yc8{bottom:293.930991pt;}
.y66{bottom:294.532548pt;}
.y92{bottom:301.524742pt;}
.yf3{bottom:304.263684pt;}
.y9f{bottom:307.789067pt;}
.y18a{bottom:307.950514pt;}
.y163{bottom:312.403647pt;}
.yc7{bottom:313.027999pt;}
.y65{bottom:313.629878pt;}
.y91{bottom:320.622070pt;}
.yf2{bottom:323.361334pt;}
.yc6{bottom:332.125007pt;}
.y64{bottom:332.727208pt;}
.y33{bottom:333.227701pt;}
.y189{bottom:337.714844pt;}
.y90{bottom:339.719726pt;}
.y162{bottom:342.169274pt;}
.yf1{bottom:342.458994pt;}
.yc5{bottom:351.222014pt;}
.y188{bottom:356.812500pt;}
.y8f{bottom:358.817055pt;}
.y161{bottom:361.265620pt;}
.yf0{bottom:361.555994pt;}
.y32{bottom:362.991540pt;}
.y63{bottom:368.266270pt;}
.yc4{bottom:370.319667pt;}
.y8e{bottom:377.914061pt;}
.yef{bottom:380.653650pt;}
.y187{bottom:386.575515pt;}
.yc3{bottom:389.416671pt;}
.y160{bottom:391.028641pt;}
.y31{bottom:392.755367pt;}
.yee{bottom:399.750010pt;}
.y8d{bottom:405.453123pt;}
.y62{bottom:405.541347pt;}
.y186{bottom:405.674474pt;}
.yc2{bottom:408.514327pt;}
.y15f{bottom:410.127600pt;}
.yed{bottom:418.847658pt;}
.y30{bottom:422.961104pt;}
.y185{bottom:426.980467pt;}
.y15e{bottom:429.223954pt;}
.yec{bottom:437.944017pt;}
.yc1{bottom:438.277991pt;}
.y8c{bottom:441.844725pt;}
.y2f{bottom:443.352706pt;}
.y61{bottom:445.436201pt;}
.yeb{bottom:457.041674pt;}
.yc0{bottom:457.374999pt;}
.y15d{bottom:458.988287pt;}
.y8b{bottom:460.942060pt;}
.y2e{bottom:462.449874pt;}
.y184{bottom:468.549471pt;}
.yea{bottom:476.138681pt;}
.ybf{bottom:476.472007pt;}
.y15c{bottom:478.084635pt;}
.y8a{bottom:480.333441pt;}
.y183{bottom:487.645830pt;}
.y60{bottom:488.496744pt;}
.y2d{bottom:492.213700pt;}
.ye9{bottom:495.236334pt;}
.ybe{bottom:495.569655pt;}
.y15b{bottom:497.182293pt;}
.y89{bottom:500.293615pt;}
.y182{bottom:506.744784pt;}
.y131{bottom:508.933600pt;}
.y5f{bottom:509.086259pt;}
.ye8{bottom:514.333988pt;}
.ybd{bottom:514.666667pt;}
.y15a{bottom:516.278647pt;}
.y88{bottom:519.390627pt;}
.y117{bottom:519.933600pt;}
.y2c{bottom:521.535811pt;}
.y13c{bottom:523.933600pt;}
.y181{bottom:525.839838pt;}
.y5e{bottom:529.675127pt;}
.y126{bottom:531.933600pt;}
.y115{bottom:532.376959pt;}
.ye7{bottom:533.430994pt;}
.ybc{bottom:533.764321pt;}
.y87{bottom:538.487631pt;}
.y2b{bottom:538.896978pt;}
.y180{bottom:544.937494pt;}
.y159{bottom:546.044274pt;}
.y5d{bottom:550.264323pt;}
.y114{bottom:551.474615pt;}
.ybb{bottom:552.861327pt;}
.y2a{bottom:556.699874pt;}
.y86{bottom:557.585287pt;}
.ye6{bottom:563.194014pt;}
.y17f{bottom:564.035151pt;}
.y158{bottom:565.140631pt;}
.y113{bottom:570.571615pt;}
.y5c{bottom:570.853842pt;}
.ye5{bottom:582.291668pt;}
.yba{bottom:582.625007pt;}
.y17e{bottom:583.132807pt;}
.y157{bottom:584.238287pt;}
.y29{bottom:586.463700pt;}
.y85{bottom:587.348959pt;}
.y112{bottom:589.669275pt;}
.y5b{bottom:591.442707pt;}
.y17d{bottom:601.036460pt;}
.ye4{bottom:601.388670pt;}
.yb9{bottom:601.722014pt;}
.y84{bottom:606.446287pt;}
.y111{bottom:608.765631pt;}
.y5a{bottom:612.031901pt;}
.y156{bottom:614.002607pt;}
.y28{bottom:615.034020pt;}
.ye3{bottom:620.486334pt;}
.yb8{bottom:620.819667pt;}
.y17c{bottom:622.342454pt;}
.y83{bottom:625.543615pt;}
.y110{bottom:627.863287pt;}
.y59{bottom:632.621420pt;}
.y155{bottom:633.098954pt;}
.y9e{bottom:635.983074pt;}
.ye2{bottom:639.583987pt;}
.yb7{bottom:639.916671pt;}
.y82{bottom:644.640627pt;}
.y27{bottom:644.798021pt;}
.y58{bottom:653.210290pt;}
.y9d{bottom:653.553389pt;}
.y10f{bottom:657.626943pt;}
.ye1{bottom:658.680991pt;}
.yb6{bottom:659.014327pt;}
.y46{bottom:662.628900pt;}
.y26{bottom:662.701501pt;}
.y154{bottom:662.863287pt;}
.y81{bottom:663.737631pt;}
.y17b{bottom:663.985679pt;}
.y9c{bottom:669.828780pt;}
.y57{bottom:673.799470pt;}
.y10e{bottom:676.724607pt;}
.ye0{bottom:677.778647pt;}
.yc{bottom:679.458497pt;}
.y25{bottom:680.605145pt;}
.y153{bottom:681.959631pt;}
.y80{bottom:682.835287pt;}
.y17a{bottom:683.157554pt;}
.y9b{bottom:686.105471pt;}
.y45{bottom:688.392900pt;}
.yb5{bottom:688.777994pt;}
.y56{bottom:694.388997pt;}
.y10d{bottom:695.821607pt;}
.y177{bottom:698.395837pt;}
.y24{bottom:698.508954pt;}
.y152{bottom:701.057287pt;}
.y9a{bottom:702.381514pt;}
.yb4{bottom:706.110676pt;}
.y44{bottom:706.296381pt;}
.ydf{bottom:707.541661pt;}
.y7f{bottom:710.374350pt;}
.y179{bottom:711.510421pt;}
.yb{bottom:713.609538pt;}
.y10c{bottom:714.919264pt;}
.y55{bottom:714.977864pt;}
.y99{bottom:718.656905pt;}
.yde{bottom:724.875645pt;}
.y23{bottom:727.079260pt;}
.yb3{bottom:727.110676pt;}
.y43{bottom:728.199875pt;}
.y151{bottom:730.821620pt;}
.y98{bottom:732.600260pt;}
.y10b{bottom:734.015615pt;}
.y54{bottom:735.567059pt;}
.y175{bottom:744.414061pt;}
.ydd{bottom:745.875645pt;}
.y22{bottom:746.176434pt;}
.y7e{bottom:746.765607pt;}
.y97{bottom:747.600260pt;}
.yb2{bottom:748.110676pt;}
.y150{bottom:749.919266pt;}
.y42{bottom:750.103848pt;}
.y10a{bottom:753.113275pt;}
.y53{bottom:756.156575pt;}
.ya{bottom:756.409877pt;}
.y19b{bottom:759.153647pt;}
.y21{bottom:764.080074pt;}
.y7d{bottom:765.862637pt;}
.ydc{bottom:766.875645pt;}
.y14f{bottom:769.015620pt;}
.yb1{bottom:769.110676pt;}
.y41{bottom:772.007328pt;}
.y109{bottom:772.209631pt;}
.y52{bottom:776.745442pt;}
.y7c{bottom:784.960287pt;}
.ydb{bottom:787.875645pt;}
.yaf{bottom:790.110676pt;}
.y108{bottom:791.307287pt;}
.y125{bottom:791.598959pt;}
.y20{bottom:792.650394pt;}
.y174{bottom:792.919274pt;}
.y40{bottom:793.352371pt;}
.y19a{bottom:794.252607pt;}
.y51{bottom:797.334633pt;}
.y9{bottom:798.264043pt;}
.y14e{bottom:798.778648pt;}
.y130{bottom:799.598959pt;}
.y12f{bottom:800.598959pt;}
.y7b{bottom:804.057607pt;}
.y116{bottom:805.598959pt;}
.yd8{bottom:806.778644pt;}
.yac{bottom:809.015627pt;}
.y13b{bottom:814.598959pt;}
.y3f{bottom:814.776048pt;}
.y14d{bottom:817.877607pt;}
.y50{bottom:817.924153pt;}
.y173{bottom:820.899747pt;}
.y107{bottom:821.071620pt;}
.y1f{bottom:821.220700pt;}
.y7a{bottom:823.154947pt;}
.y13a{bottom:824.598959pt;}
.yd6{bottom:824.683592pt;}
.yab{bottom:826.918621pt;}
.y199{bottom:829.348952pt;}
.y8{bottom:830.647742pt;}
.y3e{bottom:836.680008pt;}
.y106{bottom:838.404954pt;}
.y4f{bottom:838.513020pt;}
.y79{bottom:842.251947pt;}
.y14c{bottom:847.640620pt;}
.y198{bottom:848.447917pt;}
.y1e{bottom:849.791020pt;}
.y172{bottom:858.412767pt;}
.y3d{bottom:858.583501pt;}
.y4e{bottom:859.102213pt;}
.yd5{bottom:859.112634pt;}
.y105{bottom:859.404954pt;}
.yaa{bottom:861.348954pt;}
.y78{bottom:861.348963pt;}
.y7{bottom:865.619956pt;}
.y14b{bottom:866.738287pt;}
.y197{bottom:867.542968pt;}
.yd4{bottom:878.210287pt;}
.y1d{bottom:878.361327pt;}
.y4d{bottom:879.691732pt;}
.y104{bottom:880.404954pt;}
.y77{bottom:880.446291pt;}
.ya9{bottom:880.446620pt;}
.y3c{bottom:880.486981pt;}
.y196{bottom:886.640624pt;}
.y171{bottom:888.877603pt;}
.y14a{bottom:896.502604pt;}
.yd3{bottom:897.307291pt;}
.y6{bottom:899.266663pt;}
.y76{bottom:899.543619pt;}
.y4c{bottom:900.280598pt;}
.y103{bottom:901.404947pt;}
.y3b{bottom:902.390950pt;}
.y1c{bottom:906.931640pt;}
.y170{bottom:907.973958pt;}
.y149{bottom:915.598958pt;}
.yd2{bottom:916.404947pt;}
.y75{bottom:918.640627pt;}
.y4b{bottom:920.869791pt;}
.y195{bottom:921.738280pt;}
.y102{bottom:922.404947pt;}
.y16f{bottom:927.071614pt;}
.y3a{bottom:932.154785pt;}
.y1b{bottom:935.501953pt;}
.y74{bottom:937.737634pt;}
.y194{bottom:940.835937pt;}
.y148{bottom:945.363281pt;}
.yd1{bottom:946.168619pt;}
.y39{bottom:953.461263pt;}
.y16e{bottom:956.834635pt;}
.y101{bottom:956.834637pt;}
.y73{bottom:956.835287pt;}
.y147{bottom:964.459635pt;}
.y1a{bottom:965.265787pt;}
.ya8{bottom:975.932291pt;}
.y72{bottom:975.932617pt;}
.y146{bottom:992.440104pt;}
.y16d{bottom:995.028646pt;}
.y100{bottom:995.029297pt;}
.y19{bottom:995.029622pt;}
.y38{bottom:995.029785pt;}
.y4a{bottom:995.029947pt;}
.y123{bottom:1009.265625pt;}
.yfd{bottom:1009.266276pt;}
.y16{bottom:1009.266601pt;}
.y1{bottom:1009.266663pt;}
.y35{bottom:1009.266764pt;}
.y47{bottom:1009.266927pt;}
.y3{bottom:1036.973826pt;}
.h1e{height:17.902995pt;}
.h3{height:17.903646pt;}
.hc{height:17.903727pt;}
.h1d{height:17.904297pt;}
.h31{height:31.903645pt;}
.h1c{height:35.806640pt;}
.h1f{height:35.807943pt;}
.ha{height:37.653647pt;}
.hf{height:39.635416pt;}
.he{height:40.104168pt;}
.h13{height:42.166668pt;}
.h30{height:42.656250pt;}
.h2{height:43.598959pt;}
.h20{height:43.598974pt;}
.h8{height:43.750000pt;}
.h32{height:45.018229pt;}
.h16{height:47.395835pt;}
.h5{height:47.562500pt;}
.h18{height:49.792188pt;}
.h4{height:51.041665pt;}
.h17{height:52.809915pt;}
.h12{height:58.333335pt;}
.h7{height:65.625000pt;}
.h6{height:72.916665pt;}
.h9{height:79.270831pt;}
.h14{height:113.066400pt;}
.h10{height:113.066573pt;}
.hb{height:113.066733pt;}
.h21{height:113.067053pt;}
.h26{height:113.067707pt;}
.h15{height:113.399740pt;}
.h11{height:113.399903pt;}
.h1{height:113.400004pt;}
.hd{height:113.400065pt;}
.h22{height:113.400391pt;}
.h27{height:113.401041pt;}
.h2e{height:183.666667pt;}
.h2f{height:193.666667pt;}
.h23{height:202.667317pt;}
.h2a{height:207.666667pt;}
.h2b{height:208.666667pt;}
.h28{height:216.666667pt;}
.h25{height:239.667973pt;}
.h2d{height:240.667973pt;}
.h29{height:258.666667pt;}
.h19{height:260.666667pt;}
.h1a{height:275.666667pt;}
.h24{height:284.666667pt;}
.h2c{height:289.666667pt;}
.h1b{height:311.666667pt;}
.h0{height:1122.666667pt;}
.we{width:83.000000pt;}
.w14{width:90.000000pt;}
.wd{width:92.000000pt;}
.wc{width:92.000011pt;}
.wf{width:99.999959pt;}
.w7{width:114.999959pt;}
.w9{width:116.000020pt;}
.w6{width:127.000000pt;}
.w5{width:127.000020pt;}
.wb{width:128.999959pt;}
.wa{width:129.000000pt;}
.w8{width:138.999959pt;}
.w2{width:214.000000pt;}
.w15{width:268.999920pt;}
.w13{width:277.000027pt;}
.w4{width:319.999920pt;}
.w3{width:320.000027pt;}
.w11{width:326.999920pt;}
.w10{width:640.999920pt;}
.w12{width:647.999920pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x10{left:6.000000pt;}
.x1f{left:9.393623pt;}
.x12{left:11.725105pt;}
.x25{left:13.252975pt;}
.x19{left:16.680450pt;}
.x21{left:24.020158pt;}
.x14{left:28.914421pt;}
.x16{left:35.455742pt;}
.x18{left:42.364189pt;}
.xd{left:69.599996pt;}
.x1{left:75.599996pt;}
.x30{left:76.599996pt;}
.x1a{left:82.599996pt;}
.xa{left:99.599996pt;}
.xc{left:104.599996pt;}
.x3{left:107.000000pt;}
.xb{left:123.599996pt;}
.x20{left:162.600007pt;}
.x11{left:197.600016pt;}
.x1b{left:199.600016pt;}
.x8{left:230.599996pt;}
.x2a{left:234.000000pt;}
.x29{left:244.000000pt;}
.x22{left:255.600013pt;}
.x2{left:282.600013pt;}
.x2e{left:286.000000pt;}
.x2f{left:293.000000pt;}
.x26{left:309.000000pt;}
.xe{left:316.000000pt;}
.x2d{left:324.000000pt;}
.x13{left:325.600013pt;}
.x1c{left:329.600013pt;}
.x7{left:341.946096pt;}
.x23{left:348.600013pt;}
.x31{left:354.600013pt;}
.x6{left:384.599996pt;}
.xf{left:390.600013pt;}
.x24{left:432.600013pt;}
.x32{left:445.600013pt;}
.x15{left:453.600013pt;}
.x1d{left:459.600013pt;}
.x4{left:496.599996pt;}
.x17{left:569.599973pt;}
.x2b{left:582.500000pt;}
.x1e{left:589.599973pt;}
.x27{left:604.500000pt;}
.x2c{left:608.000000pt;}
.x5{left:612.350366pt;}
.x28{left:703.244166pt;}
.x9{left:710.672446pt;}
}




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