
    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_9d55acdf285bfd25345e7032.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_01f9e9b37ef867cc242a9d89.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_3720cc4097194b1111c6c001.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_7f0d4adaf59a722e4ffb6add.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_5b9524416f710f26116cf5f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_09c2abe559355a9591e0df50.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_0554216165938a9f1d57be2b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.871094;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_0efdd60c45b5d67aa76fc0e3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.756836;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_ce77a3390a0539a9239d1bf9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.677246;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_b4ca96261625e463b3ef83f1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677246;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;}
.m6{transform:matrix(0.000000,-0.250075,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250075,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250075,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-82.799967px;}
.v6{vertical-align:-73.439971px;}
.v9{vertical-align:-53.279979px;}
.v5{vertical-align:-37.439985px;}
.vb{vertical-align:-7.919997px;}
.v8{vertical-align:-2.879999px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.439999px;}
.va{vertical-align:9.359996px;}
.v1{vertical-align:33.839986px;}
.v2{vertical-align:69.119972px;}
.v7{vertical-align:71.999971px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012060px;}
.ls13{letter-spacing:0.034440px;}
.lsf{letter-spacing:0.050547px;}
.ls0{letter-spacing:0.068862px;}
.ls1{letter-spacing:0.068906px;}
.ls16{letter-spacing:0.069038px;}
.lse{letter-spacing:0.136740px;}
.ls12{letter-spacing:0.147781px;}
.ls10{letter-spacing:0.217800px;}
.lsa{letter-spacing:0.277560px;}
.ls4{letter-spacing:0.277566px;}
.ls3{letter-spacing:0.308340px;}
.ls7{letter-spacing:0.375720px;}
.ls5{letter-spacing:0.418463px;}
.ls9{letter-spacing:0.733440px;}
.ls14{letter-spacing:1.029660px;}
.ls11{letter-spacing:2.198579px;}
.ls8{letter-spacing:135.653346px;}
.ls15{letter-spacing:339.262664px;}
.lsc{letter-spacing:340.474784px;}
.lsb{letter-spacing:370.282652px;}
.lsd{letter-spacing:400.350560px;}
.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;}
}
.ws9{word-spacing:-44.819982px;}
.wse{word-spacing:-18.069031px;}
.ws1{word-spacing:-18.068899px;}
.wsd{word-spacing:-18.068855px;}
.ws0{word-spacing:-17.999993px;}
.wsb{word-spacing:-16.613273px;}
.ws7{word-spacing:-14.939994px;}
.ws4{word-spacing:-12.195046px;}
.ws8{word-spacing:-12.059995px;}
.wsc{word-spacing:-10.859183px;}
.wsa{word-spacing:-10.808636px;}
.ws3{word-spacing:-9.719996px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:180.696580px;}
.ws6{word-spacing:185.015029px;}
._55{margin-left:-2632.732819px;}
._34{margin-left:-3.040301px;}
._2{margin-left:-1.478838px;}
._0{width:1.272472px;}
._8{width:2.992328px;}
._9{width:4.260857px;}
._a{width:5.728184px;}
._4{width:6.916133px;}
._3{width:7.949315px;}
._1{width:9.080280px;}
._6{width:10.891859px;}
._5{width:12.068250px;}
._28{width:13.594221px;}
._29{width:14.711370px;}
._2e{width:16.567036px;}
._7{width:19.628506px;}
._2f{width:20.852748px;}
._2a{width:22.319611px;}
._2b{width:23.369356px;}
._46{width:24.427364px;}
._47{width:25.477703px;}
._2c{width:26.925100px;}
._44{width:30.377082px;}
._45{width:31.929723px;}
._23{width:35.557365px;}
._4b{width:37.348459px;}
._4c{width:38.550811px;}
._68{width:54.206692px;}
._1f{width:64.716059px;}
._63{width:70.833460px;}
._3e{width:93.474211px;}
._21{width:137.273446px;}
._20{width:138.716052px;}
._4e{width:142.490123px;}
._36{width:155.707626px;}
._e{width:159.090002px;}
._33{width:197.949172px;}
._32{width:205.834219px;}
._35{width:211.631506px;}
._30{width:218.789566px;}
._31{width:223.828386px;}
._57{width:227.015445px;}
._11{width:239.510447px;}
._d{width:244.932262px;}
._16{width:253.003238px;}
._3b{width:254.143751px;}
._64{width:265.872622px;}
._10{width:270.278557px;}
._4d{width:274.030869px;}
._c{width:280.283353px;}
._5f{width:281.688367px;}
._13{width:297.003302px;}
._17{width:305.664924px;}
._59{width:320.395454px;}
._37{width:324.318838px;}
._1b{width:326.982284px;}
._14{width:349.664988px;}
._58{width:352.286259px;}
._43{width:353.826938px;}
._3f{width:355.671338px;}
._19{width:358.001894px;}
._5b{width:359.653622px;}
._3c{width:362.940930px;}
._40{width:366.145770px;}
._60{width:367.427381px;}
._48{width:371.140532px;}
._4a{width:372.984331px;}
._53{width:375.354279px;}
._1a{width:381.218684px;}
._56{width:383.929406px;}
._f{width:385.229630px;}
._1d{width:388.735799px;}
._41{width:393.559152px;}
._1e{width:441.397485px;}
._b{width:443.984222px;}
._66{width:467.687953px;}
._5d{width:476.489861px;}
._5a{width:478.521063px;}
._62{width:485.107688px;}
._5c{width:486.200119px;}
._1c{width:490.300388px;}
._61{width:494.135646px;}
._65{width:551.305814px;}
._67{width:553.289656px;}
._5e{width:557.455986px;}
._3a{width:558.701057px;}
._38{width:559.821856px;}
._52{width:574.571050px;}
._4f{width:575.697850px;}
._15{width:585.553686px;}
._18{width:612.353531px;}
._39{width:626.870971px;}
._42{width:669.850437px;}
._12{width:674.579498px;}
._26{width:686.035646px;}
._27{width:690.326884px;}
._24{width:699.019889px;}
._50{width:731.171235px;}
._51{width:738.383233px;}
._54{width:781.667329px;}
._25{width:810.393269px;}
._22{width:990.116779px;}
._49{width:1099.721560px;}
._2d{width:1330.357973px;}
._3d{width:1916.982433px;}
.fc2{color:transparent;}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.879984px;}
.fs3{font-size:48.239981px;}
.fs5{font-size:53.960378px;}
.fs6{font-size:58.457497px;}
.fs0{font-size:59.759976px;}
.fs7{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.fs1{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.ye7{bottom:3.419905px;}
.yea{bottom:3.419908px;}
.y32{bottom:57.599977px;}
.y31{bottom:74.879970px;}
.y13a{bottom:103.139959px;}
.y5d{bottom:104.399958px;}
.y2f{bottom:104.579958px;}
.ybe{bottom:110.159956px;}
.ybd{bottom:112.499955px;}
.y139{bottom:123.839950px;}
.y10d{bottom:129.599948px;}
.y8e{bottom:131.579947px;}
.ybc{bottom:133.199947px;}
.y143{bottom:134.999946px;}
.yf2{bottom:136.799945px;}
.y2d{bottom:143.279943px;}
.y138{bottom:144.539942px;}
.y5c{bottom:145.799942px;}
.y2e{bottom:150.119940px;}
.y10c{bottom:150.299940px;}
.y8d{bottom:151.919939px;}
.ybb{bottom:153.899938px;}
.y142{bottom:155.699938px;}
.yef{bottom:157.139937px;}
.yf1{bottom:157.499937px;}
.y2c{bottom:161.279935px;}
.y137{bottom:165.239934px;}
.y5b{bottom:165.779934px;}
.y8c{bottom:169.919932px;}
.y10b{bottom:170.999932px;}
.yba{bottom:174.599930px;}
.yee{bottom:175.139930px;}
.y141{bottom:176.039930px;}
.y2a{bottom:179.279928px;}
.y5a{bottom:183.059927px;}
.yf0{bottom:184.859926px;}
.y136{bottom:185.939926px;}
.y2b{bottom:186.119926px;}
.y8b{bottom:187.919925px;}
.yed{bottom:193.139923px;}
.yb9{bottom:195.299922px;}
.y29{bottom:197.279921px;}
.y59{bottom:200.339920px;}
.y135{bottom:204.299918px;}
.y8a{bottom:205.919918px;}
.y134{bottom:206.639917px;}
.yec{bottom:211.139916px;}
.y10a{bottom:212.399915px;}
.yb7{bottom:213.659915px;}
.y140{bottom:215.099914px;}
.y28{bottom:215.279914px;}
.yb8{bottom:215.999914px;}
.y58{bottom:217.619913px;}
.y132{bottom:224.999910px;}
.ye9{bottom:225.900000px;}
.yeb{bottom:226.979909px;}
.y133{bottom:227.339909px;}
.ye8{bottom:229.319908px;}
.y57{bottom:231.119908px;}
.y27{bottom:233.279907px;}
.y89{bottom:233.459907px;}
.y109{bottom:234.719906px;}
.ye6{bottom:235.260000px;}
.y13f{bottom:235.799906px;}
.yb6{bottom:236.699905px;}
.ye5{bottom:238.679905px;}
.y26{bottom:242.099903px;}
.ye4{bottom:244.979902px;}
.ye3{bottom:247.319901px;}
.y131{bottom:248.039901px;}
.y13e{bottom:256.499897px;}
.y108{bottom:256.679897px;}
.yb5{bottom:257.039897px;}
.y87{bottom:269.279892px;}
.y130{bottom:270.359892px;}
.ye1{bottom:274.499890px;}
.yb4{bottom:275.039890px;}
.y88{bottom:276.119890px;}
.y13d{bottom:277.199889px;}
.y24{bottom:277.739889px;}
.y107{bottom:278.639889px;}
.ye2{bottom:281.339887px;}
.y25{bottom:284.579886px;}
.ye0{bottom:289.259884px;}
.ydf{bottom:291.599883px;}
.y12f{bottom:292.499883px;}
.yb3{bottom:293.039883px;}
.y85{bottom:295.559882px;}
.y13c{bottom:297.899881px;}
.y106{bottom:300.599880px;}
.y86{bottom:302.399879px;}
.y23{bottom:304.739878px;}
.y84{bottom:309.059876px;}
.yb2{bottom:311.039876px;}
.y12e{bottom:314.459874px;}
.yde{bottom:318.599873px;}
.y105{bottom:322.559871px;}
.y22{bottom:325.439870px;}
.y7e{bottom:325.799870px;}
.yb1{bottom:326.879869px;}
.yaf{bottom:329.219868px;}
.yb0{bottom:329.939868px;}
.y12d{bottom:336.419865px;}
.ydd{bottom:339.299864px;}
.y104{bottom:344.699862px;}
.y21{bottom:346.139862px;}
.y7d{bottom:351.539859px;}
.y56{bottom:358.199857px;}
.y12c{bottom:358.379857px;}
.ydc{bottom:359.999856px;}
.yae{bottom:363.239855px;}
.yac{bottom:365.219854px;}
.yad{bottom:365.579854px;}
.y20{bottom:366.839853px;}
.y75{bottom:372.959851px;}
.y103{bottom:373.859850px;}
.y55{bottom:378.899848px;}
.y12b{bottom:380.339848px;}
.ydb{bottom:380.699848px;}
.yab{bottom:383.219847px;}
.y1f{bottom:387.179845px;}
.y12a{bottom:398.159841px;}
.y54{bottom:399.599840px;}
.y102{bottom:400.139840px;}
.y129{bottom:400.499840px;}
.yda{bottom:401.399839px;}
.y122{bottom:403.199839px;}
.y125{bottom:406.799837px;}
.y76{bottom:407.699837px;}
.y126{bottom:409.139836px;}
.ya9{bottom:410.219836px;}
.y127{bottom:415.439834px;}
.yaa{bottom:417.059833px;}
.y101{bottom:417.419833px;}
.y128{bottom:417.779833px;}
.y7f{bottom:418.319833px;}
.y53{bottom:420.299832px;}
.y121{bottom:420.479832px;}
.yd9{bottom:422.099831px;}
.y124{bottom:422.459831px;}
.y1e{bottom:426.239830px;}
.ya8{bottom:427.499829px;}
.y100{bottom:430.919828px;}
.y120{bottom:437.759825px;}
.y123{bottom:439.739824px;}
.y52{bottom:440.999824px;}
.y77{bottom:441.539823px;}
.yd8{bottom:442.799823px;}
.y1d{bottom:446.939821px;}
.ya7{bottom:454.499818px;}
.yd7{bottom:461.159816px;}
.y51{bottom:461.699815px;}
.yd6{bottom:463.499815px;}
.y11e{bottom:466.919813px;}
.y1c{bottom:467.639813px;}
.ya6{bottom:472.859811px;}
.y11f{bottom:473.759810px;}
.ya5{bottom:475.199810px;}
.y78{bottom:476.279809px;}
.yd5{bottom:481.859807px;}
.y50{bottom:482.399807px;}
.y11d{bottom:484.019806px;}
.yd4{bottom:484.199806px;}
.y1b{bottom:488.339805px;}
.ya4{bottom:495.899802px;}
.y11c{bottom:498.959800px;}
.y11b{bottom:501.299799px;}
.yd3{bottom:502.559799px;}
.y4f{bottom:503.099799px;}
.yd2{bottom:504.899798px;}
.y1a{bottom:509.039796px;}
.y79{bottom:510.119796px;}
.ya3{bottom:516.599793px;}
.y4e{bottom:523.799790px;}
.yd1{bottom:525.599790px;}
.y11a{bottom:528.299789px;}
.y19{bottom:529.379788px;}
.ya2{bottom:537.299785px;}
.yd0{bottom:543.959782px;}
.y4d{bottom:544.499782px;}
.y7a{bottom:544.859782px;}
.ycf{bottom:546.299781px;}
.y119{bottom:548.999780px;}
.y83{bottom:551.699779px;}
.yff{bottom:557.279777px;}
.ya1{bottom:557.999777px;}
.y4c{bottom:565.199774px;}
.y82{bottom:566.279773px;}
.yce{bottom:566.999773px;}
.y18{bottom:568.439773px;}
.y118{bottom:569.699772px;}
.yfe{bottom:575.279770px;}
.y7b{bottom:578.699769px;}
.y81{bottom:580.859768px;}
.y4b{bottom:585.899766px;}
.ycd{bottom:587.699765px;}
.y17{bottom:589.139764px;}
.y117{bottom:590.399764px;}
.y80{bottom:595.439762px;}
.yfd{bottom:595.979762px;}
.ya0{bottom:599.399760px;}
.y4a{bottom:606.599757px;}
.ycc{bottom:608.399757px;}
.y16{bottom:609.839756px;}
.y116{bottom:611.099756px;}
.y7c{bottom:613.439755px;}
.yfc{bottom:616.679753px;}
.y9f{bottom:620.099752px;}
.y49{bottom:627.299749px;}
.ycb{bottom:629.099748px;}
.y15{bottom:630.539748px;}
.y115{bottom:631.799747px;}
.yfb{bottom:637.379745px;}
.y73{bottom:637.919745px;}
.y9e{bottom:640.799744px;}
.y74{bottom:644.759742px;}
.y48{bottom:647.999741px;}
.yca{bottom:649.799740px;}
.y14{bottom:651.239740px;}
.y72{bottom:651.419739px;}
.y114{bottom:652.499739px;}
.yfa{bottom:658.079737px;}
.y9d{bottom:661.499735px;}
.y6c{bottom:668.159733px;}
.y47{bottom:668.699733px;}
.yc9{bottom:670.499732px;}
.y12{bottom:671.939731px;}
.y113{bottom:673.199731px;}
.yf9{bottom:678.779728px;}
.y13{bottom:680.219728px;}
.y9c{bottom:682.199727px;}
.y46{bottom:689.039724px;}
.yc8{bottom:691.199724px;}
.y11{bottom:692.639723px;}
.y6b{bottom:693.899722px;}
.yf8{bottom:699.479720px;}
.y9b{bottom:702.899719px;}
.yc7{bottom:711.899715px;}
.y10{bottom:712.979715px;}
.y112{bottom:714.599714px;}
.y63{bottom:715.319714px;}
.y45{bottom:719.099712px;}
.yf7{bottom:719.819712px;}
.y9a{bottom:723.599711px;}
.yc6{bottom:732.599707px;}
.y44{bottom:734.759706px;}
.y111{bottom:735.299706px;}
.y43{bottom:737.099705px;}
.y99{bottom:744.299702px;}
.yf6{bottom:749.159700px;}
.y64{bottom:750.059700px;}
.yf{bottom:750.419700px;}
.yc5{bottom:750.959700px;}
.yc4{bottom:753.299699px;}
.y41{bottom:755.099698px;}
.y110{bottom:755.999698px;}
.y6d{bottom:760.679696px;}
.y42{bottom:761.939695px;}
.y98{bottom:764.639694px;}
.ye{bottom:764.819694px;}
.yf5{bottom:766.439693px;}
.yc2{bottom:771.659691px;}
.y40{bottom:772.919691px;}
.yc3{bottom:773.999690px;}
.y10f{bottom:776.339689px;}
.yd{bottom:782.099687px;}
.yf4{bottom:783.719687px;}
.y65{bottom:783.899686px;}
.y97{bottom:794.699682px;}
.yf3{bottom:797.219681px;}
.yc{bottom:799.199680px;}
.y3f{bottom:800.099680px;}
.y96{bottom:815.399674px;}
.yb{bottom:816.839673px;}
.y66{bottom:818.639673px;}
.y3e{bottom:827.099669px;}
.yc1{bottom:833.759666px;}
.ya{bottom:834.119666px;}
.y95{bottom:836.099666px;}
.y3d{bottom:847.799661px;}
.y9{bottom:851.399659px;}
.y67{bottom:852.479659px;}
.y94{bottom:856.799657px;}
.y3c{bottom:868.499653px;}
.y8{bottom:868.679653px;}
.y93{bottom:877.499649px;}
.y7{bottom:886.319645px;}
.y68{bottom:887.219645px;}
.y3b{bottom:889.199644px;}
.y13b{bottom:895.859642px;}
.y71{bottom:896.219642px;}
.y92{bottom:898.199641px;}
.y70{bottom:909.719636px;}
.y3a{bottom:909.899636px;}
.y6{bottom:912.599635px;}
.yc0{bottom:916.559633px;}
.y91{bottom:918.899632px;}
.y69{bottom:921.059632px;}
.y6f{bottom:923.219631px;}
.y39{bottom:930.599628px;}
.y6e{bottom:936.719625px;}
.ybf{bottom:937.259625px;}
.y90{bottom:939.599624px;}
.y38{bottom:951.299619px;}
.y6a{bottom:955.799618px;}
.y10e{bottom:957.959617px;}
.y5{bottom:958.139617px;}
.y8f{bottom:960.299616px;}
.y37{bottom:971.999611px;}
.y62{bottom:980.999608px;}
.y36{bottom:992.699603px;}
.y61{bottom:1001.699599px;}
.y4{bottom:1002.599599px;}
.y35{bottom:1013.399595px;}
.y3{bottom:1022.219591px;}
.y60{bottom:1022.399591px;}
.y34{bottom:1033.739587px;}
.y2{bottom:1041.119584px;}
.y5f{bottom:1043.099583px;}
.y33{bottom:1063.439575px;}
.y5e{bottom:1063.799574px;}
.y1{bottom:1066.139574px;}
.y30{bottom:1120.499552px;}
.h16{height:17.280000px;}
.hf{height:37.387586px;}
.h11{height:38.139594px;}
.ha{height:38.158578px;}
.hd{height:39.183734px;}
.h10{height:40.503510px;}
.h13{height:40.550609px;}
.h17{height:45.895763px;}
.h15{height:47.321348px;}
.h9{height:47.344903px;}
.h6{height:50.312792px;}
.he{height:58.621969px;}
.h4{height:58.651148px;}
.h12{height:60.091148px;}
.h1{height:60.226851px;}
.h5{height:62.327788px;}
.h19{height:68.011145px;}
.h1a{height:69.586847px;}
.h8{height:70.664034px;}
.h7{height:72.562471px;}
.h3{height:75.093720px;}
.hb{height:96.167774px;}
.h2{height:96.508086px;}
.h18{height:96.887774px;}
.hc{height:131.447760px;}
.h14{height:134.327759px;}
.h0{height:1188.000000px;}
.w1{width:4.860000px;}
.w2{width:5.040000px;}
.w3{width:5.220000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:107.999957px;}
.x6a{left:109.260453px;}
.x67{left:111.779955px;}
.x21{left:114.840083px;}
.x1f{left:116.459953px;}
.x84{left:118.799952px;}
.x16{left:121.499618px;}
.x3c{left:124.379950px;}
.x85{left:127.079949px;}
.x11{left:130.139948px;}
.x17{left:135.000776px;}
.x7a{left:138.599943px;}
.x14{left:140.939944px;}
.x3d{left:142.379943px;}
.x68{left:144.360905px;}
.x15{left:145.619942px;}
.x30{left:148.139643px;}
.x83{left:160.199936px;}
.x58{left:165.779934px;}
.x19{left:169.199932px;}
.x53{left:182.879927px;}
.x70{left:189.359924px;}
.x54{left:192.959923px;}
.x2d{left:200.339920px;}
.x3e{left:201.599967px;}
.x6f{left:204.120419px;}
.x6{left:206.099918px;}
.xc{left:208.259855px;}
.x55{left:211.679915px;}
.x12{left:217.439913px;}
.x26{left:219.599912px;}
.x13{left:222.299911px;}
.x23{left:231.119908px;}
.x65{left:235.799906px;}
.x6c{left:238.141489px;}
.x3b{left:240.479904px;}
.x4c{left:249.839900px;}
.x7b{left:253.259805px;}
.x5a{left:255.599880px;}
.x18{left:257.580227px;}
.x7c{left:260.639796px;}
.x4d{left:268.739893px;}
.x34{left:275.039890px;}
.x5e{left:281.700000px;}
.x24{left:287.459908px;}
.x5f{left:292.139883px;}
.x35{left:298.799880px;}
.x37{left:311.759382px;}
.x87{left:313.019875px;}
.x59{left:315.179874px;}
.x36{left:318.779872px;}
.x71{left:320.939872px;}
.x88{left:331.919867px;}
.x9{left:339.659864px;}
.x72{left:340.919864px;}
.x20{left:350.279684px;}
.xd{left:351.719768px;}
.x2{left:363.959854px;}
.x7{left:368.819852px;}
.x6b{left:372.061339px;}
.x8{left:374.939850px;}
.x1{left:376.739849px;}
.x3f{left:377.999790px;}
.x22{left:399.419241px;}
.x1c{left:403.019839px;}
.x3{left:407.339837px;}
.x60{left:408.780000px;}
.x1d{left:419.039832px;}
.x25{left:421.199832px;}
.x2b{left:423.539831px;}
.x5c{left:427.139984px;}
.x3a{left:435.960457px;}
.x33{left:446.940159px;}
.x5d{left:454.499818px;}
.x1e{left:457.019817px;}
.x4{left:458.999816px;}
.x89{left:470.879812px;}
.x50{left:472.679811px;}
.xe{left:476.459655px;}
.x77{left:484.559806px;}
.x78{left:489.419804px;}
.x51{left:491.399803px;}
.x40{left:506.159669px;}
.x73{left:530.099788px;}
.x79{left:531.719825px;}
.x74{left:546.119782px;}
.x7d{left:552.599779px;}
.x61{left:559.440000px;}
.xa{left:569.879772px;}
.xb{left:574.739770px;}
.x1a{left:585.179766px;}
.xf{left:586.439649px;}
.x1b{left:587.699765px;}
.x38{left:597.599761px;}
.x86{left:598.859760px;}
.x39{left:602.459759px;}
.x4a{left:608.579757px;}
.x62{left:610.199756px;}
.x4e{left:617.579753px;}
.x69{left:620.459752px;}
.x75{left:625.139750px;}
.x4b{left:627.299749px;}
.x56{left:635.399746px;}
.x4f{left:636.479745px;}
.x76{left:641.159744px;}
.x63{left:644.399742px;}
.x41{left:650.699740px;}
.x57{left:654.299738px;}
.x42{left:657.539737px;}
.x5b{left:658.619737px;}
.x43{left:661.679735px;}
.x7f{left:663.119694px;}
.x64{left:665.999734px;}
.x6d{left:670.679732px;}
.x6e{left:675.719730px;}
.x80{left:677.339729px;}
.x27{left:692.279723px;}
.x2c{left:693.359723px;}
.x44{left:695.879722px;}
.x2e{left:709.199716px;}
.x52{left:711.179716px;}
.x2f{left:714.059714px;}
.x10{left:716.219548px;}
.x45{left:717.659713px;}
.x66{left:719.279712px;}
.x46{left:724.499710px;}
.x28{left:729.539708px;}
.x7e{left:733.139707px;}
.x81{left:734.399706px;}
.x31{left:761.399695px;}
.x29{left:764.639694px;}
.x32{left:766.259693px;}
.x2a{left:769.499692px;}
.x47{left:780.659688px;}
.x48{left:791.819683px;}
.x82{left:795.599682px;}
.x49{left:810.179676px;}
@media print{
.v4{vertical-align:-73.599971pt;}
.v6{vertical-align:-65.279974pt;}
.v9{vertical-align:-47.359981pt;}
.v5{vertical-align:-33.279987pt;}
.vb{vertical-align:-7.039997pt;}
.v8{vertical-align:-2.559999pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.279999pt;}
.va{vertical-align:8.319997pt;}
.v1{vertical-align:30.079988pt;}
.v2{vertical-align:61.439975pt;}
.v7{vertical-align:63.999974pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010720pt;}
.ls13{letter-spacing:0.030613pt;}
.lsf{letter-spacing:0.044931pt;}
.ls0{letter-spacing:0.061211pt;}
.ls1{letter-spacing:0.061250pt;}
.ls16{letter-spacing:0.061367pt;}
.lse{letter-spacing:0.121547pt;}
.ls12{letter-spacing:0.131361pt;}
.ls10{letter-spacing:0.193600pt;}
.lsa{letter-spacing:0.246720pt;}
.ls4{letter-spacing:0.246725pt;}
.ls3{letter-spacing:0.274080pt;}
.ls7{letter-spacing:0.333973pt;}
.ls5{letter-spacing:0.371967pt;}
.ls9{letter-spacing:0.651946pt;}
.ls14{letter-spacing:0.915253pt;}
.ls11{letter-spacing:1.954293pt;}
.ls8{letter-spacing:120.580752pt;}
.ls15{letter-spacing:301.566813pt;}
.lsc{letter-spacing:302.644252pt;}
.lsb{letter-spacing:329.140135pt;}
.lsd{letter-spacing:355.867164pt;}
.ws9{word-spacing:-39.839984pt;}
.wse{word-spacing:-16.061361pt;}
.ws1{word-spacing:-16.061243pt;}
.wsd{word-spacing:-16.061204pt;}
.ws0{word-spacing:-15.999994pt;}
.wsb{word-spacing:-14.767354pt;}
.ws7{word-spacing:-13.279995pt;}
.ws4{word-spacing:-10.840040pt;}
.ws8{word-spacing:-10.719996pt;}
.wsc{word-spacing:-9.652607pt;}
.wsa{word-spacing:-9.607676pt;}
.ws3{word-spacing:-8.639997pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:160.619182pt;}
.ws6{word-spacing:164.457803pt;}
._55{margin-left:-2340.206950pt;}
._34{margin-left:-2.702490pt;}
._2{margin-left:-1.314523pt;}
._0{width:1.131086pt;}
._8{width:2.659847pt;}
._9{width:3.787428pt;}
._a{width:5.091719pt;}
._4{width:6.147674pt;}
._3{width:7.066058pt;}
._1{width:8.071360pt;}
._6{width:9.681653pt;}
._5{width:10.727333pt;}
._28{width:12.083752pt;}
._29{width:13.076773pt;}
._2e{width:14.726254pt;}
._7{width:17.447561pt;}
._2f{width:18.535776pt;}
._2a{width:19.839654pt;}
._2b{width:20.772761pt;}
._46{width:21.713213pt;}
._47{width:22.646847pt;}
._2c{width:23.933422pt;}
._44{width:27.001850pt;}
._45{width:28.381976pt;}
._23{width:31.606547pt;}
._4b{width:33.198630pt;}
._4c{width:34.267387pt;}
._68{width:48.183727pt;}
._1f{width:57.525386pt;}
._63{width:62.963075pt;}
._3e{width:83.088187pt;}
._21{width:122.020841pt;}
._20{width:123.303157pt;}
._4e{width:126.657887pt;}
._36{width:138.406778pt;}
._e{width:141.413335pt;}
._33{width:175.954820pt;}
._32{width:182.963750pt;}
._35{width:188.116894pt;}
._30{width:194.479614pt;}
._31{width:198.958566pt;}
._57{width:201.791507pt;}
._11{width:212.898175pt;}
._d{width:217.717566pt;}
._16{width:224.891767pt;}
._3b{width:225.905557pt;}
._64{width:236.331219pt;}
._10{width:240.247606pt;}
._4d{width:243.582995pt;}
._c{width:249.140758pt;}
._5f{width:250.389660pt;}
._13{width:264.002935pt;}
._17{width:271.702155pt;}
._59{width:284.795959pt;}
._37{width:288.283412pt;}
._1b{width:290.650919pt;}
._14{width:310.813323pt;}
._58{width:313.143341pt;}
._43{width:314.512834pt;}
._3f{width:316.152300pt;}
._19{width:318.223906pt;}
._5b{width:319.692109pt;}
._3c{width:322.614160pt;}
._40{width:325.462907pt;}
._60{width:326.602116pt;}
._48{width:329.902695pt;}
._4a{width:331.541627pt;}
._53{width:333.648248pt;}
._1a{width:338.861052pt;}
._56{width:341.270583pt;}
._f{width:342.426338pt;}
._1d{width:345.542933pt;}
._41{width:349.830357pt;}
._1e{width:392.353320pt;}
._b{width:394.652642pt;}
._66{width:415.722625pt;}
._5d{width:423.546543pt;}
._5a{width:425.352056pt;}
._62{width:431.206834pt;}
._5c{width:432.177884pt;}
._1c{width:435.822567pt;}
._61{width:439.231686pt;}
._65{width:490.049612pt;}
._67{width:491.813028pt;}
._5e{width:495.516432pt;}
._3a{width:496.623161pt;}
._38{width:497.619428pt;}
._52{width:510.729822pt;}
._4f{width:511.731422pt;}
._15{width:520.492165pt;}
._18{width:544.314250pt;}
._39{width:557.218640pt;}
._42{width:595.422611pt;}
._12{width:599.626221pt;}
._26{width:609.809463pt;}
._27{width:613.623896pt;}
._24{width:621.351012pt;}
._50{width:649.929987pt;}
._51{width:656.340651pt;}
._54{width:694.815403pt;}
._25{width:720.349572pt;}
._22{width:880.103804pt;}
._49{width:977.530276pt;}
._2d{width:1182.540420pt;}
._3d{width:1703.984385pt;}
.fs4{font-size:34.559986pt;}
.fs3{font-size:42.879983pt;}
.fs5{font-size:47.964781pt;}
.fs6{font-size:51.962219pt;}
.fs0{font-size:53.119979pt;}
.fs7{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.fs1{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.ye7{bottom:3.039915pt;}
.yea{bottom:3.039918pt;}
.y32{bottom:51.199980pt;}
.y31{bottom:66.559973pt;}
.y13a{bottom:91.679963pt;}
.y5d{bottom:92.799963pt;}
.y2f{bottom:92.959963pt;}
.ybe{bottom:97.919961pt;}
.ybd{bottom:99.999960pt;}
.y139{bottom:110.079956pt;}
.y10d{bottom:115.199954pt;}
.y8e{bottom:116.959953pt;}
.ybc{bottom:118.399953pt;}
.y143{bottom:119.999952pt;}
.yf2{bottom:121.599951pt;}
.y2d{bottom:127.359949pt;}
.y138{bottom:128.479949pt;}
.y5c{bottom:129.599948pt;}
.y2e{bottom:133.439947pt;}
.y10c{bottom:133.599947pt;}
.y8d{bottom:135.039946pt;}
.ybb{bottom:136.799945pt;}
.y142{bottom:138.399945pt;}
.yef{bottom:139.679944pt;}
.yf1{bottom:139.999944pt;}
.y2c{bottom:143.359943pt;}
.y137{bottom:146.879941pt;}
.y5b{bottom:147.359941pt;}
.y8c{bottom:151.039940pt;}
.y10b{bottom:151.999939pt;}
.yba{bottom:155.199938pt;}
.yee{bottom:155.679938pt;}
.y141{bottom:156.479937pt;}
.y2a{bottom:159.359936pt;}
.y5a{bottom:162.719935pt;}
.yf0{bottom:164.319934pt;}
.y136{bottom:165.279934pt;}
.y2b{bottom:165.439934pt;}
.y8b{bottom:167.039933pt;}
.yed{bottom:171.679931pt;}
.yb9{bottom:173.599931pt;}
.y29{bottom:175.359930pt;}
.y59{bottom:178.079929pt;}
.y135{bottom:181.599927pt;}
.y8a{bottom:183.039927pt;}
.y134{bottom:183.679927pt;}
.yec{bottom:187.679925pt;}
.y10a{bottom:188.799924pt;}
.yb7{bottom:189.919924pt;}
.y140{bottom:191.199924pt;}
.y28{bottom:191.359923pt;}
.yb8{bottom:191.999923pt;}
.y58{bottom:193.439923pt;}
.y132{bottom:199.999920pt;}
.ye9{bottom:200.800000pt;}
.yeb{bottom:201.759919pt;}
.y133{bottom:202.079919pt;}
.ye8{bottom:203.839918pt;}
.y57{bottom:205.439918pt;}
.y27{bottom:207.359917pt;}
.y89{bottom:207.519917pt;}
.y109{bottom:208.639917pt;}
.ye6{bottom:209.120000pt;}
.y13f{bottom:209.599916pt;}
.yb6{bottom:210.399916pt;}
.ye5{bottom:212.159915pt;}
.y26{bottom:215.199914pt;}
.ye4{bottom:217.759913pt;}
.ye3{bottom:219.839912pt;}
.y131{bottom:220.479912pt;}
.y13e{bottom:227.999909pt;}
.y108{bottom:228.159909pt;}
.yb5{bottom:228.479909pt;}
.y87{bottom:239.359904pt;}
.y130{bottom:240.319904pt;}
.ye1{bottom:243.999902pt;}
.yb4{bottom:244.479902pt;}
.y88{bottom:245.439902pt;}
.y13d{bottom:246.399901pt;}
.y24{bottom:246.879901pt;}
.y107{bottom:247.679901pt;}
.ye2{bottom:250.079900pt;}
.y25{bottom:252.959899pt;}
.ye0{bottom:257.119897pt;}
.ydf{bottom:259.199896pt;}
.y12f{bottom:259.999896pt;}
.yb3{bottom:260.479896pt;}
.y85{bottom:262.719895pt;}
.y13c{bottom:264.799894pt;}
.y106{bottom:267.199893pt;}
.y86{bottom:268.799892pt;}
.y23{bottom:270.879892pt;}
.y84{bottom:274.719890pt;}
.yb2{bottom:276.479889pt;}
.y12e{bottom:279.519888pt;}
.yde{bottom:283.199887pt;}
.y105{bottom:286.719885pt;}
.y22{bottom:289.279884pt;}
.y7e{bottom:289.599884pt;}
.yb1{bottom:290.559884pt;}
.yaf{bottom:292.639883pt;}
.yb0{bottom:293.279883pt;}
.y12d{bottom:299.039880pt;}
.ydd{bottom:301.599879pt;}
.y104{bottom:306.399877pt;}
.y21{bottom:307.679877pt;}
.y7d{bottom:312.479875pt;}
.y56{bottom:318.399873pt;}
.y12c{bottom:318.559873pt;}
.ydc{bottom:319.999872pt;}
.yae{bottom:322.879871pt;}
.yac{bottom:324.639870pt;}
.yad{bottom:324.959870pt;}
.y20{bottom:326.079870pt;}
.y75{bottom:331.519867pt;}
.y103{bottom:332.319867pt;}
.y55{bottom:336.799865pt;}
.y12b{bottom:338.079865pt;}
.ydb{bottom:338.399865pt;}
.yab{bottom:340.639864pt;}
.y1f{bottom:344.159862pt;}
.y12a{bottom:353.919858pt;}
.y54{bottom:355.199858pt;}
.y102{bottom:355.679858pt;}
.y129{bottom:355.999858pt;}
.yda{bottom:356.799857pt;}
.y122{bottom:358.399857pt;}
.y125{bottom:361.599855pt;}
.y76{bottom:362.399855pt;}
.y126{bottom:363.679855pt;}
.ya9{bottom:364.639854pt;}
.y127{bottom:369.279852pt;}
.yaa{bottom:370.719852pt;}
.y101{bottom:371.039852pt;}
.y128{bottom:371.359851pt;}
.y7f{bottom:371.839851pt;}
.y53{bottom:373.599851pt;}
.y121{bottom:373.759850pt;}
.yd9{bottom:375.199850pt;}
.y124{bottom:375.519850pt;}
.y1e{bottom:378.879848pt;}
.ya8{bottom:379.999848pt;}
.y100{bottom:383.039847pt;}
.y120{bottom:389.119844pt;}
.y123{bottom:390.879844pt;}
.y52{bottom:391.999843pt;}
.y77{bottom:392.479843pt;}
.yd8{bottom:393.599843pt;}
.y1d{bottom:397.279841pt;}
.ya7{bottom:403.999838pt;}
.yd7{bottom:409.919836pt;}
.y51{bottom:410.399836pt;}
.yd6{bottom:411.999835pt;}
.y11e{bottom:415.039834pt;}
.y1c{bottom:415.679834pt;}
.ya6{bottom:420.319832pt;}
.y11f{bottom:421.119832pt;}
.ya5{bottom:422.399831pt;}
.y78{bottom:423.359831pt;}
.yd5{bottom:428.319829pt;}
.y50{bottom:428.799828pt;}
.y11d{bottom:430.239828pt;}
.yd4{bottom:430.399828pt;}
.y1b{bottom:434.079826pt;}
.ya4{bottom:440.799824pt;}
.y11c{bottom:443.519823pt;}
.y11b{bottom:445.599822pt;}
.yd3{bottom:446.719821pt;}
.y4f{bottom:447.199821pt;}
.yd2{bottom:448.799820pt;}
.y1a{bottom:452.479819pt;}
.y79{bottom:453.439819pt;}
.ya3{bottom:459.199816pt;}
.y4e{bottom:465.599814pt;}
.yd1{bottom:467.199813pt;}
.y11a{bottom:469.599812pt;}
.y19{bottom:470.559812pt;}
.ya2{bottom:477.599809pt;}
.yd0{bottom:483.519807pt;}
.y4d{bottom:483.999806pt;}
.y7a{bottom:484.319806pt;}
.ycf{bottom:485.599806pt;}
.y119{bottom:487.999805pt;}
.y83{bottom:490.399804pt;}
.yff{bottom:495.359802pt;}
.ya1{bottom:495.999802pt;}
.y4c{bottom:502.399799pt;}
.y82{bottom:503.359799pt;}
.yce{bottom:503.999798pt;}
.y18{bottom:505.279798pt;}
.y118{bottom:506.399797pt;}
.yfe{bottom:511.359795pt;}
.y7b{bottom:514.399794pt;}
.y81{bottom:516.319793pt;}
.y4b{bottom:520.799792pt;}
.ycd{bottom:522.399791pt;}
.y17{bottom:523.679791pt;}
.y117{bottom:524.799790pt;}
.y80{bottom:529.279788pt;}
.yfd{bottom:529.759788pt;}
.ya0{bottom:532.799787pt;}
.y4a{bottom:539.199784pt;}
.ycc{bottom:540.799784pt;}
.y16{bottom:542.079783pt;}
.y116{bottom:543.199783pt;}
.y7c{bottom:545.279782pt;}
.yfc{bottom:548.159781pt;}
.y9f{bottom:551.199780pt;}
.y49{bottom:557.599777pt;}
.ycb{bottom:559.199776pt;}
.y15{bottom:560.479776pt;}
.y115{bottom:561.599775pt;}
.yfb{bottom:566.559773pt;}
.y73{bottom:567.039773pt;}
.y9e{bottom:569.599772pt;}
.y74{bottom:573.119771pt;}
.y48{bottom:575.999770pt;}
.yca{bottom:577.599769pt;}
.y14{bottom:578.879768pt;}
.y72{bottom:579.039768pt;}
.y114{bottom:579.999768pt;}
.yfa{bottom:584.959766pt;}
.y9d{bottom:587.999765pt;}
.y6c{bottom:593.919762pt;}
.y47{bottom:594.399762pt;}
.yc9{bottom:595.999762pt;}
.y12{bottom:597.279761pt;}
.y113{bottom:598.399761pt;}
.yf9{bottom:603.359759pt;}
.y13{bottom:604.639758pt;}
.y9c{bottom:606.399757pt;}
.y46{bottom:612.479755pt;}
.yc8{bottom:614.399754pt;}
.y11{bottom:615.679754pt;}
.y6b{bottom:616.799753pt;}
.yf8{bottom:621.759751pt;}
.y9b{bottom:624.799750pt;}
.yc7{bottom:632.799747pt;}
.y10{bottom:633.759746pt;}
.y112{bottom:635.199746pt;}
.y63{bottom:635.839746pt;}
.y45{bottom:639.199744pt;}
.yf7{bottom:639.839744pt;}
.y9a{bottom:643.199743pt;}
.yc6{bottom:651.199740pt;}
.y44{bottom:653.119739pt;}
.y111{bottom:653.599739pt;}
.y43{bottom:655.199738pt;}
.y99{bottom:661.599735pt;}
.yf6{bottom:665.919734pt;}
.y64{bottom:666.719733pt;}
.yf{bottom:667.039733pt;}
.yc5{bottom:667.519733pt;}
.yc4{bottom:669.599732pt;}
.y41{bottom:671.199732pt;}
.y110{bottom:671.999731pt;}
.y6d{bottom:676.159730pt;}
.y42{bottom:677.279729pt;}
.y98{bottom:679.679728pt;}
.ye{bottom:679.839728pt;}
.yf5{bottom:681.279727pt;}
.yc2{bottom:685.919726pt;}
.y40{bottom:687.039725pt;}
.yc3{bottom:687.999725pt;}
.y10f{bottom:690.079724pt;}
.yd{bottom:695.199722pt;}
.yf4{bottom:696.639721pt;}
.y65{bottom:696.799721pt;}
.y97{bottom:706.399717pt;}
.yf3{bottom:708.639717pt;}
.yc{bottom:710.399716pt;}
.y3f{bottom:711.199716pt;}
.y96{bottom:724.799710pt;}
.yb{bottom:726.079710pt;}
.y66{bottom:727.679709pt;}
.y3e{bottom:735.199706pt;}
.yc1{bottom:741.119704pt;}
.ya{bottom:741.439703pt;}
.y95{bottom:743.199703pt;}
.y3d{bottom:753.599699pt;}
.y9{bottom:756.799697pt;}
.y67{bottom:757.759697pt;}
.y94{bottom:761.599695pt;}
.y3c{bottom:771.999691pt;}
.y8{bottom:772.159691pt;}
.y93{bottom:779.999688pt;}
.y7{bottom:787.839685pt;}
.y68{bottom:788.639685pt;}
.y3b{bottom:790.399684pt;}
.y13b{bottom:796.319681pt;}
.y71{bottom:796.639681pt;}
.y92{bottom:798.399681pt;}
.y70{bottom:808.639677pt;}
.y3a{bottom:808.799676pt;}
.y6{bottom:811.199676pt;}
.yc0{bottom:814.719674pt;}
.y91{bottom:816.799673pt;}
.y69{bottom:818.719673pt;}
.y6f{bottom:820.639672pt;}
.y39{bottom:827.199669pt;}
.y6e{bottom:832.639667pt;}
.ybf{bottom:833.119667pt;}
.y90{bottom:835.199666pt;}
.y38{bottom:845.599662pt;}
.y6a{bottom:849.599660pt;}
.y10e{bottom:851.519659pt;}
.y5{bottom:851.679659pt;}
.y8f{bottom:853.599659pt;}
.y37{bottom:863.999654pt;}
.y62{bottom:871.999651pt;}
.y36{bottom:882.399647pt;}
.y61{bottom:890.399644pt;}
.y4{bottom:891.199644pt;}
.y35{bottom:900.799640pt;}
.y3{bottom:908.639637pt;}
.y60{bottom:908.799636pt;}
.y34{bottom:918.879632pt;}
.y2{bottom:925.439630pt;}
.y5f{bottom:927.199629pt;}
.y33{bottom:945.279622pt;}
.y5e{bottom:945.599622pt;}
.y1{bottom:947.679621pt;}
.y30{bottom:995.999602pt;}
.h16{height:15.360000pt;}
.hf{height:33.233410pt;}
.h11{height:33.901861pt;}
.ha{height:33.918736pt;}
.hd{height:34.829986pt;}
.h10{height:36.003120pt;}
.h13{height:36.044986pt;}
.h17{height:40.796234pt;}
.h15{height:42.063421pt;}
.h9{height:42.084358pt;}
.h6{height:44.722482pt;}
.he{height:52.108417pt;}
.h4{height:52.134354pt;}
.h12{height:53.414354pt;}
.h1{height:53.534979pt;}
.h5{height:55.402478pt;}
.h19{height:60.454351pt;}
.h1a{height:61.854975pt;}
.h8{height:62.812475pt;}
.h7{height:64.499974pt;}
.h3{height:66.749973pt;}
.hb{height:85.482466pt;}
.h2{height:85.784966pt;}
.h18{height:86.122466pt;}
.hc{height:116.842453pt;}
.h14{height:119.402452pt;}
.h0{height:1056.000000pt;}
.w1{width:4.320000pt;}
.w2{width:4.480000pt;}
.w3{width:4.640000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:95.999962pt;}
.x6a{left:97.120403pt;}
.x67{left:99.359960pt;}
.x21{left:102.080074pt;}
.x1f{left:103.519959pt;}
.x84{left:105.599958pt;}
.x16{left:107.999660pt;}
.x3c{left:110.559956pt;}
.x85{left:112.959955pt;}
.x11{left:115.679954pt;}
.x17{left:120.000690pt;}
.x7a{left:123.199949pt;}
.x14{left:125.279950pt;}
.x3d{left:126.559949pt;}
.x68{left:128.320804pt;}
.x15{left:129.439948pt;}
.x30{left:131.679682pt;}
.x83{left:142.399943pt;}
.x58{left:147.359941pt;}
.x19{left:150.399940pt;}
.x53{left:162.559935pt;}
.x70{left:168.319933pt;}
.x54{left:171.519931pt;}
.x2d{left:178.079929pt;}
.x3e{left:179.199970pt;}
.x6f{left:181.440372pt;}
.x6{left:183.199927pt;}
.xc{left:185.119871pt;}
.x55{left:188.159925pt;}
.x12{left:193.279923pt;}
.x26{left:195.199922pt;}
.x13{left:197.599921pt;}
.x23{left:205.439918pt;}
.x65{left:209.599916pt;}
.x6c{left:211.681323pt;}
.x3b{left:213.759914pt;}
.x4c{left:222.079911pt;}
.x7b{left:225.119827pt;}
.x5a{left:227.199893pt;}
.x18{left:228.960202pt;}
.x7c{left:231.679819pt;}
.x4d{left:238.879904pt;}
.x34{left:244.479902pt;}
.x5e{left:250.400000pt;}
.x24{left:255.519918pt;}
.x5f{left:259.679896pt;}
.x35{left:265.599894pt;}
.x37{left:277.119451pt;}
.x87{left:278.239889pt;}
.x59{left:280.159888pt;}
.x36{left:283.359887pt;}
.x71{left:285.279886pt;}
.x88{left:295.039882pt;}
.x9{left:301.919879pt;}
.x72{left:303.039879pt;}
.x20{left:311.359719pt;}
.xd{left:312.639793pt;}
.x2{left:323.519871pt;}
.x7{left:327.839869pt;}
.x6b{left:330.721190pt;}
.x8{left:333.279867pt;}
.x1{left:334.879866pt;}
.x3f{left:335.999814pt;}
.x22{left:355.039325pt;}
.x1c{left:358.239857pt;}
.x3{left:362.079855pt;}
.x60{left:363.360000pt;}
.x1d{left:372.479851pt;}
.x25{left:374.399850pt;}
.x2b{left:376.479849pt;}
.x5c{left:379.679986pt;}
.x3a{left:387.520406pt;}
.x33{left:397.280141pt;}
.x5d{left:403.999838pt;}
.x1e{left:406.239838pt;}
.x4{left:407.999837pt;}
.x89{left:418.559833pt;}
.x50{left:420.159832pt;}
.xe{left:423.519693pt;}
.x77{left:430.719828pt;}
.x78{left:435.039826pt;}
.x51{left:436.799825pt;}
.x40{left:449.919706pt;}
.x73{left:471.199812pt;}
.x79{left:472.639845pt;}
.x74{left:485.439806pt;}
.x7d{left:491.199804pt;}
.x61{left:497.280000pt;}
.xa{left:506.559797pt;}
.xb{left:510.879796pt;}
.x1a{left:520.159792pt;}
.xf{left:521.279688pt;}
.x1b{left:522.399791pt;}
.x38{left:531.199788pt;}
.x86{left:532.319787pt;}
.x39{left:535.519786pt;}
.x4a{left:540.959784pt;}
.x62{left:542.399783pt;}
.x4e{left:548.959780pt;}
.x69{left:551.519779pt;}
.x75{left:555.679778pt;}
.x4b{left:557.599777pt;}
.x56{left:564.799774pt;}
.x4f{left:565.759774pt;}
.x76{left:569.919772pt;}
.x63{left:572.799771pt;}
.x41{left:578.399769pt;}
.x57{left:581.599767pt;}
.x42{left:584.479766pt;}
.x5b{left:585.439766pt;}
.x43{left:588.159765pt;}
.x7f{left:589.439728pt;}
.x64{left:591.999763pt;}
.x6d{left:596.159762pt;}
.x6e{left:600.639760pt;}
.x80{left:602.079759pt;}
.x27{left:615.359754pt;}
.x2c{left:616.319753pt;}
.x44{left:618.559753pt;}
.x2e{left:630.399748pt;}
.x52{left:632.159747pt;}
.x2f{left:634.719746pt;}
.x10{left:636.639599pt;}
.x45{left:637.919745pt;}
.x66{left:639.359744pt;}
.x46{left:643.999742pt;}
.x28{left:648.479741pt;}
.x7e{left:651.679739pt;}
.x81{left:652.799739pt;}
.x31{left:676.799729pt;}
.x29{left:679.679728pt;}
.x32{left:681.119728pt;}
.x2a{left:683.999726pt;}
.x47{left:693.919722pt;}
.x48{left:703.839718pt;}
.x82{left:707.199717pt;}
.x49{left:720.159712pt;}
}




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