
    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_4a68c05e31a0451680c54630.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.108000;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_a99cfd1a1a83af6efacc7b80.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.837402;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_9d29c1054dba05739e12b750.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_0ce2b2d2900a1443d72dcb2a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.703000;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_14eadd1032cb3087957ff677.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.892000;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_0080ae61ed4a594f98bf78e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900000;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_248a5fa3394e90895fcfae13.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.000000;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_e0a17b68fc9723ad0a502c51.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_ab13cb0832ba56eb82f3d853.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_da8dc36974bc242c3d6da28e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.000000;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.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,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);}
.m3{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);}
.m2{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m4{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.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-75.599970px;}
.v3{vertical-align:-1.439999px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.439999px;}
.v4{vertical-align:33.119987px;}
.v2{vertical-align:34.559986px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.031701px;}
.lsa{letter-spacing:0.034519px;}
.ls0{letter-spacing:0.209232px;}
.lsc{letter-spacing:0.418419px;}
.lsb{letter-spacing:0.753120px;}
.ls3{letter-spacing:2.346719px;}
.ls1{letter-spacing:21.306531px;}
.ls4{letter-spacing:40.017044px;}
.ls6{letter-spacing:319.784872px;}
.ls5{letter-spacing:660.281736px;}
.ls7{letter-spacing:772.097691px;}
.ls8{letter-spacing:2001.139059px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.059992px;}
.ws0{word-spacing:-17.999993px;}
.ws2{word-spacing:-16.559993px;}
.ws4{word-spacing:-14.939994px;}
.ws3{word-spacing:0.000000px;}
._3c{margin-left:-16.183974px;}
._1{margin-left:-1.489875px;}
._0{width:1.383605px;}
._2{width:2.863768px;}
._9{width:4.224629px;}
._f{width:5.225746px;}
._e{width:6.292225px;}
._6{width:7.323934px;}
._5{width:8.503266px;}
._7{width:9.553037px;}
._40{width:10.553112px;}
._b{width:11.570044px;}
._a{width:12.642591px;}
._11{width:14.188787px;}
._12{width:15.192261px;}
._41{width:16.263725px;}
._4{width:17.296492px;}
._13{width:18.357492px;}
._14{width:20.258268px;}
._27{width:21.482271px;}
._8{width:22.656519px;}
._3{width:24.386787px;}
._26{width:26.294588px;}
._25{width:27.598355px;}
._15{width:29.013815px;}
._19{width:30.118596px;}
._c{width:31.181437px;}
._d{width:32.445678px;}
._36{width:34.921108px;}
._37{width:36.757070px;}
._34{width:39.275606px;}
._18{width:41.432090px;}
._3d{width:44.794293px;}
._3f{width:51.001286px;}
._1b{width:52.136918px;}
._16{width:53.180158px;}
._17{width:54.596876px;}
._24{width:60.613628px;}
._3a{width:63.388701px;}
._2f{width:68.745388px;}
._21{width:73.650716px;}
._29{width:76.694016px;}
._2e{width:81.988749px;}
._31{width:104.986402px;}
._20{width:110.491998px;}
._1a{width:124.557280px;}
._1c{width:126.815551px;}
._1f{width:128.390699px;}
._23{width:141.755473px;}
._32{width:144.145970px;}
._1d{width:147.461894px;}
._22{width:159.222441px;}
._1e{width:171.597303px;}
._3b{width:179.143760px;}
._30{width:192.036391px;}
._33{width:195.368206px;}
._3e{width:198.413201px;}
._10{width:201.439071px;}
._2c{width:217.207088px;}
._2d{width:247.108335px;}
._28{width:265.146921px;}
._2a{width:268.382786px;}
._35{width:317.843861px;}
._38{width:447.097483px;}
._2b{width:448.986589px;}
._39{width:485.113954px;}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.239981px;}
.fs3{font-size:51.119980px;}
.fs8{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs7{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs2{font-size:77.759969px;}
.fs6{font-size:84.239966px;}
.fs1{font-size:120.239952px;}
.y0{bottom:0.000000px;}
.y2{bottom:97.199961px;}
.y34{bottom:114.479954px;}
.y32{bottom:132.839947px;}
.y88{bottom:133.919946px;}
.y122{bottom:137.879945px;}
.y14e{bottom:138.779944px;}
.y12a{bottom:140.759944px;}
.y10c{bottom:142.559943px;}
.y71{bottom:144.179942px;}
.yf9{bottom:146.339941px;}
.y64{bottom:149.399940px;}
.y31{bottom:151.739939px;}
.y87{bottom:152.819939px;}
.y14d{bottom:156.059938px;}
.y121{bottom:156.959937px;}
.y129{bottom:159.839936px;}
.y10b{bottom:161.639935px;}
.y70{bottom:163.259935px;}
.yf8{bottom:167.039933px;}
.y63{bottom:168.479933px;}
.y30{bottom:170.819932px;}
.y86{bottom:171.899931px;}
.y14c{bottom:173.339931px;}
.y120{bottom:175.499930px;}
.y128{bottom:178.739929px;}
.y180{bottom:180.179928px;}
.y10a{bottom:180.539928px;}
.y6f{bottom:182.159927px;}
.y62{bottom:187.379925px;}
.yf7{bottom:187.739925px;}
.y2f{bottom:189.719924px;}
.y14b{bottom:190.619924px;}
.y85{bottom:190.799924px;}
.yd2{bottom:191.339923px;}
.y11f{bottom:194.579922px;}
.y17f{bottom:197.459921px;}
.y127{bottom:197.639921px;}
.y109{bottom:199.619920px;}
.ycf{bottom:199.799920px;}
.y6e{bottom:201.239920px;}
.y61{bottom:206.279917px;}
.y14a{bottom:207.719917px;}
.yd1{bottom:208.439917px;}
.y2e{bottom:208.619917px;}
.y84{bottom:209.879916px;}
.y11e{bottom:212.219915px;}
.y17e{bottom:214.739914px;}
.y126{bottom:216.719913px;}
.yce{bottom:217.079913px;}
.y108{bottom:218.519913px;}
.y6d{bottom:220.139912px;}
.y149{bottom:224.999910px;}
.y60{bottom:225.359910px;}
.yd0{bottom:225.719910px;}
.y2d{bottom:227.699909px;}
.y83{bottom:228.779908px;}
.y17d{bottom:231.839907px;}
.y125{bottom:235.799906px;}
.y107{bottom:237.419905px;}
.y6c{bottom:239.039904px;}
.y148{bottom:242.279903px;}
.y5f{bottom:244.259902px;}
.y2c{bottom:246.599901px;}
.y82{bottom:247.679901px;}
.y17c{bottom:249.119900px;}
.yf6{bottom:250.379900px;}
.ycb{bottom:251.999899px;}
.y106{bottom:256.499897px;}
.y124{bottom:257.039897px;}
.y6b{bottom:258.119897px;}
.y147{bottom:259.559896px;}
.ycd{bottom:260.639896px;}
.y5e{bottom:263.339895px;}
.y2b{bottom:265.679894px;}
.y17b{bottom:266.399893px;}
.y81{bottom:266.759893px;}
.yf5{bottom:267.659893px;}
.yca{bottom:269.279892px;}
.y105{bottom:275.399890px;}
.y146{bottom:276.839889px;}
.y6a{bottom:277.019889px;}
.ycc{bottom:277.919889px;}
.y123{bottom:280.979888px;}
.y5d{bottom:282.239887px;}
.y17a{bottom:283.679887px;}
.y2a{bottom:284.579886px;}
.y80{bottom:285.659886px;}
.yc9{bottom:286.559885px;}
.y145{bottom:293.939882px;}
.y104{bottom:294.479882px;}
.y69{bottom:296.099882px;}
.y179{bottom:300.959880px;}
.y5c{bottom:301.139880px;}
.y29{bottom:303.659879px;}
.y7f{bottom:304.739878px;}
.yf4{bottom:309.779876px;}
.y144{bottom:311.219876px;}
.y103{bottom:313.379875px;}
.y68{bottom:314.999874px;}
.y178{bottom:318.239873px;}
.y5b{bottom:320.219872px;}
.yc8{bottom:320.939872px;}
.y28{bottom:322.559871px;}
.y7e{bottom:323.639871px;}
.yf3{bottom:327.059869px;}
.y143{bottom:328.499869px;}
.y102{bottom:332.279867px;}
.y67{bottom:334.079866px;}
.y177{bottom:335.339866px;}
.yc7{bottom:338.219865px;}
.y5a{bottom:339.119864px;}
.y27{bottom:341.459863px;}
.y7d{bottom:342.539863px;}
.y142{bottom:345.779862px;}
.y101{bottom:347.219861px;}
.y176{bottom:352.619859px;}
.y66{bottom:354.779858px;}
.y59{bottom:358.199857px;}
.y26{bottom:360.539856px;}
.y7c{bottom:361.619855px;}
.y141{bottom:363.059855px;}
.yc6{bottom:368.999852px;}
.y175{bottom:369.899852px;}
.yf2{bottom:370.439852px;}
.y65{bottom:375.839850px;}
.y58{bottom:377.099849px;}
.y25{bottom:379.439848px;}
.y140{bottom:380.339848px;}
.y7b{bottom:380.699848px;}
.y174{bottom:387.179845px;}
.yf1{bottom:387.719845px;}
.yc5{bottom:388.079845px;}
.y57{bottom:395.999842px;}
.y13f{bottom:397.439841px;}
.y24{bottom:398.519841px;}
.y7a{bottom:401.399839px;}
.y173{bottom:404.459838px;}
.yc4{bottom:408.059837px;}
.y13e{bottom:414.719834px;}
.y56{bottom:415.079834px;}
.y23{bottom:419.039832px;}
.y172{bottom:421.739831px;}
.y79{bottom:421.919831px;}
.yf0{bottom:423.179831px;}
.yc3{bottom:425.339830px;}
.y13d{bottom:431.999827px;}
.y55{bottom:433.979826px;}
.y171{bottom:438.839824px;}
.yef{bottom:440.459824px;}
.y78{bottom:440.999824px;}
.yc2{bottom:442.619823px;}
.y22{bottom:443.699823px;}
.y13c{bottom:449.279820px;}
.y54{bottom:453.059819px;}
.y170{bottom:456.119818px;}
.yee{bottom:458.459817px;}
.y77{bottom:459.899816px;}
.y13b{bottom:466.559813px;}
.y21{bottom:467.639813px;}
.y53{bottom:471.959811px;}
.y16f{bottom:473.399811px;}
.ya1{bottom:474.299810px;}
.yed{bottom:475.559810px;}
.yc1{bottom:476.999809px;}
.y76{bottom:478.799808px;}
.y13a{bottom:483.839806px;}
.y20{bottom:488.339805px;}
.y16e{bottom:490.679804px;}
.y52{bottom:490.859804px;}
.yec{bottom:492.839803px;}
.yc0{bottom:494.279802px;}
.ya0{bottom:497.519801px;}
.y75{bottom:497.879801px;}
.y139{bottom:500.939800px;}
.y16d{bottom:507.959797px;}
.y1f{bottom:508.859796px;}
.y51{bottom:509.939796px;}
.yeb{bottom:510.119796px;}
.ybf{bottom:511.919795px;}
.y9f{bottom:514.799794px;}
.y74{bottom:517.859793px;}
.y138{bottom:518.219793px;}
.y16c{bottom:525.239790px;}
.y50{bottom:528.839788px;}
.y1e{bottom:531.179788px;}
.ybd{bottom:531.359787px;}
.y9e{bottom:531.539787px;}
.y137{bottom:535.499786px;}
.yea{bottom:537.659785px;}
.y73{bottom:541.979783px;}
.y16b{bottom:542.339783px;}
.y9d{bottom:547.559781px;}
.y4f{bottom:547.919781px;}
.ybc{bottom:548.459781px;}
.y136{bottom:552.779779px;}
.y1d{bottom:553.139779px;}
.ye9{bottom:554.939778px;}
.y16a{bottom:559.619776px;}
.y9c{bottom:564.839774px;}
.y72{bottom:565.559774px;}
.ybe{bottom:565.739774px;}
.y4e{bottom:566.819773px;}
.y135{bottom:570.059772px;}
.y1c{bottom:570.419772px;}
.ye8{bottom:572.219771px;}
.y169{bottom:576.899769px;}
.y9b{bottom:582.119767px;}
.yb7{bottom:583.739767px;}
.y4d{bottom:585.719766px;}
.y134{bottom:587.159765px;}
.y1b{bottom:587.699765px;}
.ybb{bottom:589.499764px;}
.ye7{bottom:590.219764px;}
.y168{bottom:594.179762px;}
.y9a{bottom:599.399760px;}
.yb6{bottom:601.019760px;}
.y11d{bottom:602.999759px;}
.y133{bottom:604.439758px;}
.y4c{bottom:604.799758px;}
.y1a{bottom:604.979758px;}
.ye6{bottom:607.499757px;}
.y167{bottom:611.459755px;}
.yb9{bottom:612.719755px;}
.y99{bottom:616.499753px;}
.y132{bottom:621.719751px;}
.y19{bottom:622.079751px;}
.y4b{bottom:623.699751px;}
.ye5{bottom:624.779750px;}
.y166{bottom:628.559749px;}
.yb8{bottom:629.639748px;}
.yba{bottom:629.999748px;}
.y98{bottom:633.779746px;}
.y131{bottom:638.999744px;}
.y18{bottom:639.359744px;}
.y11c{bottom:640.979744px;}
.y4a{bottom:642.779743px;}
.y165{bottom:645.839742px;}
.yb5{bottom:647.999741px;}
.y97{bottom:651.059740px;}
.ye4{bottom:655.379738px;}
.y130{bottom:656.279737px;}
.y17{bottom:656.639737px;}
.y11b{bottom:660.059736px;}
.y49{bottom:661.679735px;}
.y164{bottom:663.119735px;}
.yb4{bottom:665.099734px;}
.y96{bottom:668.339733px;}
.ye3{bottom:672.659731px;}
.y12f{bottom:673.559731px;}
.y16{bottom:673.919730px;}
.y11a{bottom:678.959728px;}
.y163{bottom:680.399728px;}
.y48{bottom:680.759728px;}
.yb3{bottom:682.379727px;}
.y95{bottom:685.619726px;}
.ye2{bottom:689.759724px;}
.y12e{bottom:690.659724px;}
.y15{bottom:691.199724px;}
.y162{bottom:697.679721px;}
.y119{bottom:697.859721px;}
.y47{bottom:699.659720px;}
.yb2{bottom:700.379720px;}
.y94{bottom:702.899719px;}
.ye1{bottom:707.039717px;}
.y14{bottom:708.299717px;}
.y12d{bottom:709.019716px;}
.y161{bottom:714.959714px;}
.y118{bottom:716.939713px;}
.yb1{bottom:717.659713px;}
.y46{bottom:718.559713px;}
.y93{bottom:719.999712px;}
.ye0{bottom:725.399710px;}
.y13{bottom:726.119710px;}
.y160{bottom:732.059707px;}
.y12c{bottom:733.139707px;}
.yb0{bottom:734.939706px;}
.y117{bottom:735.839706px;}
.y92{bottom:737.279705px;}
.y45{bottom:737.639705px;}
.ydf{bottom:744.119702px;}
.y12{bottom:748.619701px;}
.y15f{bottom:749.339700px;}
.yaf{bottom:752.939699px;}
.y91{bottom:754.559698px;}
.y116{bottom:754.919698px;}
.y44{bottom:756.539697px;}
.yde{bottom:761.579695px;}
.y15e{bottom:766.619693px;}
.yae{bottom:770.219692px;}
.y90{bottom:771.839691px;}
.y115{bottom:773.819690px;}
.y11{bottom:774.719690px;}
.y43{bottom:775.619690px;}
.ydd{bottom:780.479688px;}
.y15d{bottom:783.899686px;}
.yad{bottom:787.319685px;}
.y8f{bottom:789.119684px;}
.y114{bottom:792.719683px;}
.y42{bottom:794.519682px;}
.ydc{bottom:799.559680px;}
.y15c{bottom:801.179680px;}
.y10{bottom:804.959678px;}
.yac{bottom:805.319678px;}
.y8e{bottom:806.219678px;}
.y113{bottom:811.799675px;}
.yf{bottom:813.239675px;}
.y41{bottom:813.419675px;}
.ydb{bottom:818.459673px;}
.yab{bottom:822.599671px;}
.y8d{bottom:823.499671px;}
.ye{bottom:825.659670px;}
.y112{bottom:830.699668px;}
.y40{bottom:832.499667px;}
.y15b{bottom:835.559666px;}
.yda{bottom:837.539665px;}
.yaa{bottom:839.879664px;}
.y8c{bottom:840.779664px;}
.yc{bottom:846.359661px;}
.y111{bottom:850.139660px;}
.y3f{bottom:851.399659px;}
.y15a{bottom:852.839659px;}
.yd{bottom:854.639658px;}
.yd9{bottom:856.979657px;}
.ya9{bottom:857.159657px;}
.y8b{bottom:858.059657px;}
.yb{bottom:867.059653px;}
.y159{bottom:870.119652px;}
.y3e{bottom:870.479652px;}
.y110{bottom:870.839652px;}
.ya8{bottom:874.439650px;}
.ya{bottom:875.339650px;}
.y158{bottom:887.399645px;}
.y3d{bottom:889.379644px;}
.yd8{bottom:890.279644px;}
.y10f{bottom:891.179644px;}
.ya7{bottom:892.439643px;}
.y8a{bottom:892.619643px;}
.y9{bottom:897.119641px;}
.yd7{bottom:898.919640px;}
.y157{bottom:904.679638px;}
.y3c{bottom:908.279637px;}
.y89{bottom:909.719636px;}
.y7{bottom:910.439636px;}
.y8{bottom:919.439632px;}
.y156{bottom:921.959631px;}
.y100{bottom:923.579631px;}
.y3b{bottom:927.359629px;}
.y10e{bottom:928.979628px;}
.y6{bottom:936.179626px;}
.y155{bottom:939.059624px;}
.ya6{bottom:939.959624px;}
.yff{bottom:940.859624px;}
.y3a{bottom:946.259621px;}
.y10d{bottom:947.699621px;}
.y154{bottom:956.339617px;}
.ya5{bottom:957.239617px;}
.yfe{bottom:958.319617px;}
.yd6{bottom:959.759616px;}
.y39{bottom:965.339614px;}
.y5{bottom:969.839612px;}
.y153{bottom:973.619611px;}
.yfd{bottom:977.399609px;}
.y12b{bottom:983.879606px;}
.y38{bottom:984.239606px;}
.ya4{bottom:988.019605px;}
.y152{bottom:990.899604px;}
.yfc{bottom:996.299601px;}
.y37{bottom:1003.139599px;}
.y4{bottom:1003.679599px;}
.ya3{bottom:1006.379597px;}
.y151{bottom:1008.179597px;}
.yd4{bottom:1011.779595px;}
.yfb{bottom:1015.379594px;}
.yd3{bottom:1020.419592px;}
.y36{bottom:1022.219591px;}
.ya2{bottom:1023.659591px;}
.y150{bottom:1025.279590px;}
.yd5{bottom:1029.059588px;}
.yfa{bottom:1036.619585px;}
.y3{bottom:1037.339585px;}
.y35{bottom:1041.119584px;}
.y14f{bottom:1042.559583px;}
.y33{bottom:1060.739576px;}
.y1{bottom:1079.999568px;}
.h9{height:40.816064px;}
.h12{height:41.473423px;}
.h5{height:42.933583px;}
.he{height:44.149201px;}
.h7{height:44.819982px;}
.h4{height:45.496782px;}
.hb{height:45.970542px;}
.h11{height:48.059981px;}
.hf{height:49.967980px;}
.h1{height:53.186379px;}
.h8{height:53.265579px;}
.h13{height:54.626378px;}
.hc{height:56.146267px;}
.ha{height:58.462537px;}
.hd{height:58.953576px;}
.h6{height:64.079974px;}
.h3{height:69.206372px;}
.h16{height:74.593410px;}
.h10{height:74.973570px;}
.h2{height:80.140398px;}
.h15{height:87.746365px;}
.h14{height:110.593396px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:121.500819px;}
.x1d{left:122.759950px;}
.xd{left:124.919950px;}
.xe{left:131.039948px;}
.x3e{left:134.999946px;}
.x2b{left:136.259945px;}
.x23{left:139.319944px;}
.x11{left:145.619942px;}
.x1b{left:148.499886px;}
.x1{left:155.339938px;}
.x19{left:156.779937px;}
.x35{left:163.259978px;}
.x16{left:169.199932px;}
.x3a{left:174.059930px;}
.x1e{left:175.499930px;}
.x17{left:178.379929px;}
.x22{left:180.179499px;}
.x12{left:191.339923px;}
.x13{left:197.459921px;}
.x24{left:202.679925px;}
.x3b{left:225.539910px;}
.x4{left:227.159792px;}
.x5{left:231.299787px;}
.x38{left:243.899944px;}
.x6{left:261.899895px;}
.x31{left:265.679940px;}
.x36{left:271.259959px;}
.x1a{left:282.239887px;}
.x1f{left:283.500824px;}
.x20{left:298.979880px;}
.x2c{left:301.320528px;}
.x25{left:308.699831px;}
.x40{left:315.179874px;}
.x21{left:327.959869px;}
.x2f{left:330.479676px;}
.x7{left:333.719867px;}
.x34{left:338.039865px;}
.x8{left:340.199864px;}
.x26{left:369.539731px;}
.x15{left:408.239837px;}
.x33{left:416.160278px;}
.x9{left:431.099828px;}
.xa{left:437.579825px;}
.xb{left:442.439823px;}
.x3{left:445.499822px;}
.x37{left:448.919820px;}
.x2e{left:469.800503px;}
.x27{left:474.479624px;}
.x28{left:519.299576px;}
.xf{left:598.859760px;}
.x10{left:604.079758px;}
.xc{left:622.619751px;}
.x2d{left:636.840711px;}
.x32{left:638.459683px;}
.x29{left:642.779497px;}
.x30{left:645.478918px;}
.x2a{left:648.539498px;}
.x18{left:683.999726px;}
.x3d{left:728.999708px;}
.x3f{left:733.319707px;}
.x14{left:745.379702px;}
.x1c{left:754.559698px;}
.x3c{left:769.499692px;}
.x39{left:770.759692px;}
@media print{
.v5{vertical-align:-67.199973pt;}
.v3{vertical-align:-1.279999pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.279999pt;}
.v4{vertical-align:29.439988pt;}
.v2{vertical-align:30.719988pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.028179pt;}
.lsa{letter-spacing:0.030684pt;}
.ls0{letter-spacing:0.185984pt;}
.lsc{letter-spacing:0.371928pt;}
.lsb{letter-spacing:0.669440pt;}
.ls3{letter-spacing:2.085972pt;}
.ls1{letter-spacing:18.939139pt;}
.ls4{letter-spacing:35.570706pt;}
.ls6{letter-spacing:284.253220pt;}
.ls5{letter-spacing:586.917099pt;}
.ls7{letter-spacing:686.309059pt;}
.ls8{letter-spacing:1778.790275pt;}
.ws1{word-spacing:-18.719993pt;}
.ws0{word-spacing:-15.999994pt;}
.ws2{word-spacing:-14.719994pt;}
.ws4{word-spacing:-13.279995pt;}
.ws3{word-spacing:0.000000pt;}
._3c{margin-left:-14.385754pt;}
._1{margin-left:-1.324333pt;}
._0{width:1.229872pt;}
._2{width:2.545572pt;}
._9{width:3.755226pt;}
._f{width:4.645108pt;}
._e{width:5.593089pt;}
._6{width:6.510164pt;}
._5{width:7.558458pt;}
._7{width:8.491589pt;}
._40{width:9.380544pt;}
._b{width:10.284484pt;}
._a{width:11.237859pt;}
._11{width:12.612255pt;}
._12{width:13.504232pt;}
._41{width:14.456644pt;}
._4{width:15.374660pt;}
._13{width:16.317771pt;}
._14{width:18.007350pt;}
._27{width:19.095352pt;}
._8{width:20.139128pt;}
._3{width:21.677144pt;}
._26{width:23.372967pt;}
._25{width:24.531871pt;}
._15{width:25.790058pt;}
._19{width:26.772086pt;}
._c{width:27.716833pt;}
._d{width:28.840603pt;}
._36{width:31.040985pt;}
._37{width:32.672951pt;}
._34{width:34.911650pt;}
._18{width:36.828524pt;}
._3d{width:39.817149pt;}
._3f{width:45.334476pt;}
._1b{width:46.343927pt;}
._16{width:47.271252pt;}
._17{width:48.530556pt;}
._24{width:53.878781pt;}
._3a{width:56.345512pt;}
._2f{width:61.107012pt;}
._21{width:65.467303pt;}
._29{width:68.172458pt;}
._2e{width:72.878888pt;}
._31{width:93.321247pt;}
._20{width:98.215109pt;}
._1a{width:110.717582pt;}
._1c{width:112.724934pt;}
._1f{width:114.125065pt;}
._23{width:126.004865pt;}
._32{width:128.129751pt;}
._1d{width:131.077239pt;}
._22{width:141.531059pt;}
._1e{width:152.530936pt;}
._3b{width:159.238898pt;}
._30{width:170.699014pt;}
._33{width:173.660627pt;}
._3e{width:176.367289pt;}
._10{width:179.056952pt;}
._2c{width:193.072967pt;}
._2d{width:219.651853pt;}
._28{width:235.686152pt;}
._2a{width:238.562476pt;}
._35{width:282.527876pt;}
._38{width:397.419985pt;}
._2b{width:399.099191pt;}
._39{width:431.212403pt;}
.fs4{font-size:42.879983pt;}
.fs3{font-size:45.439982pt;}
.fs8{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs7{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs2{font-size:69.119972pt;}
.fs6{font-size:74.879970pt;}
.fs1{font-size:106.879957pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:86.399965pt;}
.y34{bottom:101.759959pt;}
.y32{bottom:118.079953pt;}
.y88{bottom:119.039952pt;}
.y122{bottom:122.559951pt;}
.y14e{bottom:123.359951pt;}
.y12a{bottom:125.119950pt;}
.y10c{bottom:126.719949pt;}
.y71{bottom:128.159949pt;}
.yf9{bottom:130.079948pt;}
.y64{bottom:132.799947pt;}
.y31{bottom:134.879946pt;}
.y87{bottom:135.839946pt;}
.y14d{bottom:138.719945pt;}
.y121{bottom:139.519944pt;}
.y129{bottom:142.079943pt;}
.y10b{bottom:143.679943pt;}
.y70{bottom:145.119942pt;}
.yf8{bottom:148.479941pt;}
.y63{bottom:149.759940pt;}
.y30{bottom:151.839939pt;}
.y86{bottom:152.799939pt;}
.y14c{bottom:154.079938pt;}
.y120{bottom:155.999938pt;}
.y128{bottom:158.879936pt;}
.y180{bottom:160.159936pt;}
.y10a{bottom:160.479936pt;}
.y6f{bottom:161.919935pt;}
.y62{bottom:166.559933pt;}
.yf7{bottom:166.879933pt;}
.y2f{bottom:168.639933pt;}
.y14b{bottom:169.439932pt;}
.y85{bottom:169.599932pt;}
.yd2{bottom:170.079932pt;}
.y11f{bottom:172.959931pt;}
.y17f{bottom:175.519930pt;}
.y127{bottom:175.679930pt;}
.y109{bottom:177.439929pt;}
.ycf{bottom:177.599929pt;}
.y6e{bottom:178.879928pt;}
.y61{bottom:183.359927pt;}
.y14a{bottom:184.639926pt;}
.yd1{bottom:185.279926pt;}
.y2e{bottom:185.439926pt;}
.y84{bottom:186.559925pt;}
.y11e{bottom:188.639925pt;}
.y17e{bottom:190.879924pt;}
.y126{bottom:192.639923pt;}
.yce{bottom:192.959923pt;}
.y108{bottom:194.239922pt;}
.y6d{bottom:195.679922pt;}
.y149{bottom:199.999920pt;}
.y60{bottom:200.319920pt;}
.yd0{bottom:200.639920pt;}
.y2d{bottom:202.399919pt;}
.y83{bottom:203.359919pt;}
.y17d{bottom:206.079918pt;}
.y125{bottom:209.599916pt;}
.y107{bottom:211.039916pt;}
.y6c{bottom:212.479915pt;}
.y148{bottom:215.359914pt;}
.y5f{bottom:217.119913pt;}
.y2c{bottom:219.199912pt;}
.y82{bottom:220.159912pt;}
.y17c{bottom:221.439911pt;}
.yf6{bottom:222.559911pt;}
.ycb{bottom:223.999910pt;}
.y106{bottom:227.999909pt;}
.y124{bottom:228.479909pt;}
.y6b{bottom:229.439908pt;}
.y147{bottom:230.719908pt;}
.ycd{bottom:231.679907pt;}
.y5e{bottom:234.079906pt;}
.y2b{bottom:236.159906pt;}
.y17b{bottom:236.799905pt;}
.y81{bottom:237.119905pt;}
.yf5{bottom:237.919905pt;}
.yca{bottom:239.359904pt;}
.y105{bottom:244.799902pt;}
.y146{bottom:246.079902pt;}
.y6a{bottom:246.239902pt;}
.ycc{bottom:247.039901pt;}
.y123{bottom:249.759900pt;}
.y5d{bottom:250.879900pt;}
.y17a{bottom:252.159899pt;}
.y2a{bottom:252.959899pt;}
.y80{bottom:253.919898pt;}
.yc9{bottom:254.719898pt;}
.y145{bottom:261.279895pt;}
.y104{bottom:261.759895pt;}
.y69{bottom:263.199895pt;}
.y179{bottom:267.519893pt;}
.y5c{bottom:267.679893pt;}
.y29{bottom:269.919892pt;}
.y7f{bottom:270.879892pt;}
.yf4{bottom:275.359890pt;}
.y144{bottom:276.639889pt;}
.y103{bottom:278.559889pt;}
.y68{bottom:279.999888pt;}
.y178{bottom:282.879887pt;}
.y5b{bottom:284.639886pt;}
.yc8{bottom:285.279886pt;}
.y28{bottom:286.719885pt;}
.y7e{bottom:287.679885pt;}
.yf3{bottom:290.719884pt;}
.y143{bottom:291.999883pt;}
.y102{bottom:295.359882pt;}
.y67{bottom:296.959881pt;}
.y177{bottom:298.079881pt;}
.yc7{bottom:300.639880pt;}
.y5a{bottom:301.439879pt;}
.y27{bottom:303.519879pt;}
.y7d{bottom:304.479878pt;}
.y142{bottom:307.359877pt;}
.y101{bottom:308.639877pt;}
.y176{bottom:313.439875pt;}
.y66{bottom:315.359874pt;}
.y59{bottom:318.399873pt;}
.y26{bottom:320.479872pt;}
.y7c{bottom:321.439871pt;}
.y141{bottom:322.719871pt;}
.yc6{bottom:327.999869pt;}
.y175{bottom:328.799868pt;}
.yf2{bottom:329.279868pt;}
.y65{bottom:334.079866pt;}
.y58{bottom:335.199866pt;}
.y25{bottom:337.279865pt;}
.y140{bottom:338.079865pt;}
.y7b{bottom:338.399865pt;}
.y174{bottom:344.159862pt;}
.yf1{bottom:344.639862pt;}
.yc5{bottom:344.959862pt;}
.y57{bottom:351.999859pt;}
.y13f{bottom:353.279859pt;}
.y24{bottom:354.239858pt;}
.y7a{bottom:356.799857pt;}
.y173{bottom:359.519856pt;}
.yc4{bottom:362.719855pt;}
.y13e{bottom:368.639853pt;}
.y56{bottom:368.959852pt;}
.y23{bottom:372.479851pt;}
.y172{bottom:374.879850pt;}
.y79{bottom:375.039850pt;}
.yf0{bottom:376.159850pt;}
.yc3{bottom:378.079849pt;}
.y13d{bottom:383.999846pt;}
.y55{bottom:385.759846pt;}
.y171{bottom:390.079844pt;}
.yef{bottom:391.519843pt;}
.y78{bottom:391.999843pt;}
.yc2{bottom:393.439843pt;}
.y22{bottom:394.399842pt;}
.y13c{bottom:399.359840pt;}
.y54{bottom:402.719839pt;}
.y170{bottom:405.439838pt;}
.yee{bottom:407.519837pt;}
.y77{bottom:408.799836pt;}
.y13b{bottom:414.719834pt;}
.y21{bottom:415.679834pt;}
.y53{bottom:419.519832pt;}
.y16f{bottom:420.799832pt;}
.ya1{bottom:421.599831pt;}
.yed{bottom:422.719831pt;}
.yc1{bottom:423.999830pt;}
.y76{bottom:425.599830pt;}
.y13a{bottom:430.079828pt;}
.y20{bottom:434.079826pt;}
.y16e{bottom:436.159826pt;}
.y52{bottom:436.319825pt;}
.yec{bottom:438.079825pt;}
.yc0{bottom:439.359824pt;}
.ya0{bottom:442.239823pt;}
.y75{bottom:442.559823pt;}
.y139{bottom:445.279822pt;}
.y16d{bottom:451.519819pt;}
.y1f{bottom:452.319819pt;}
.y51{bottom:453.279819pt;}
.yeb{bottom:453.439819pt;}
.ybf{bottom:455.039818pt;}
.y9f{bottom:457.599817pt;}
.y74{bottom:460.319816pt;}
.y138{bottom:460.639816pt;}
.y16c{bottom:466.879813pt;}
.y50{bottom:470.079812pt;}
.y1e{bottom:472.159811pt;}
.ybd{bottom:472.319811pt;}
.y9e{bottom:472.479811pt;}
.y137{bottom:475.999810pt;}
.yea{bottom:477.919809pt;}
.y73{bottom:481.759807pt;}
.y16b{bottom:482.079807pt;}
.y9d{bottom:486.719805pt;}
.y4f{bottom:487.039805pt;}
.ybc{bottom:487.519805pt;}
.y136{bottom:491.359803pt;}
.y1d{bottom:491.679803pt;}
.ye9{bottom:493.279803pt;}
.y16a{bottom:497.439801pt;}
.y9c{bottom:502.079799pt;}
.y72{bottom:502.719799pt;}
.ybe{bottom:502.879799pt;}
.y4e{bottom:503.839798pt;}
.y135{bottom:506.719797pt;}
.y1c{bottom:507.039797pt;}
.ye8{bottom:508.639797pt;}
.y169{bottom:512.799795pt;}
.y9b{bottom:517.439793pt;}
.yb7{bottom:518.879792pt;}
.y4d{bottom:520.639792pt;}
.y134{bottom:521.919791pt;}
.y1b{bottom:522.399791pt;}
.ybb{bottom:523.999790pt;}
.ye7{bottom:524.639790pt;}
.y168{bottom:528.159789pt;}
.y9a{bottom:532.799787pt;}
.yb6{bottom:534.239786pt;}
.y11d{bottom:535.999786pt;}
.y133{bottom:537.279785pt;}
.y4c{bottom:537.599785pt;}
.y1a{bottom:537.759785pt;}
.ye6{bottom:539.999784pt;}
.y167{bottom:543.519783pt;}
.yb9{bottom:544.639782pt;}
.y99{bottom:547.999781pt;}
.y132{bottom:552.639779pt;}
.y19{bottom:552.959779pt;}
.y4b{bottom:554.399778pt;}
.ye5{bottom:555.359778pt;}
.y166{bottom:558.719777pt;}
.yb8{bottom:559.679776pt;}
.yba{bottom:559.999776pt;}
.y98{bottom:563.359775pt;}
.y131{bottom:567.999773pt;}
.y18{bottom:568.319773pt;}
.y11c{bottom:569.759772pt;}
.y4a{bottom:571.359771pt;}
.y165{bottom:574.079770pt;}
.yb5{bottom:575.999770pt;}
.y97{bottom:578.719769pt;}
.ye4{bottom:582.559767pt;}
.y130{bottom:583.359767pt;}
.y17{bottom:583.679767pt;}
.y11b{bottom:586.719765pt;}
.y49{bottom:588.159765pt;}
.y164{bottom:589.439764pt;}
.yb4{bottom:591.199764pt;}
.y96{bottom:594.079762pt;}
.ye3{bottom:597.919761pt;}
.y12f{bottom:598.719761pt;}
.y16{bottom:599.039760pt;}
.y11a{bottom:603.519759pt;}
.y163{bottom:604.799758pt;}
.y48{bottom:605.119758pt;}
.yb3{bottom:606.559757pt;}
.y95{bottom:609.439756pt;}
.ye2{bottom:613.119755pt;}
.y12e{bottom:613.919754pt;}
.y15{bottom:614.399754pt;}
.y162{bottom:620.159752pt;}
.y119{bottom:620.319752pt;}
.y47{bottom:621.919751pt;}
.yb2{bottom:622.559751pt;}
.y94{bottom:624.799750pt;}
.ye1{bottom:628.479749pt;}
.y14{bottom:629.599748pt;}
.y12d{bottom:630.239748pt;}
.y161{bottom:635.519746pt;}
.y118{bottom:637.279745pt;}
.yb1{bottom:637.919745pt;}
.y46{bottom:638.719745pt;}
.y93{bottom:639.999744pt;}
.ye0{bottom:644.799742pt;}
.y13{bottom:645.439742pt;}
.y160{bottom:650.719740pt;}
.y12c{bottom:651.679739pt;}
.yb0{bottom:653.279739pt;}
.y117{bottom:654.079738pt;}
.y92{bottom:655.359738pt;}
.y45{bottom:655.679738pt;}
.ydf{bottom:661.439735pt;}
.y12{bottom:665.439734pt;}
.y15f{bottom:666.079734pt;}
.yaf{bottom:669.279732pt;}
.y91{bottom:670.719732pt;}
.y116{bottom:671.039732pt;}
.y44{bottom:672.479731pt;}
.yde{bottom:676.959729pt;}
.y15e{bottom:681.439727pt;}
.yae{bottom:684.639726pt;}
.y90{bottom:686.079726pt;}
.y115{bottom:687.839725pt;}
.y11{bottom:688.639725pt;}
.y43{bottom:689.439724pt;}
.ydd{bottom:693.759722pt;}
.y15d{bottom:696.799721pt;}
.yad{bottom:699.839720pt;}
.y8f{bottom:701.439719pt;}
.y114{bottom:704.639718pt;}
.y42{bottom:706.239718pt;}
.ydc{bottom:710.719716pt;}
.y15c{bottom:712.159715pt;}
.y10{bottom:715.519714pt;}
.yac{bottom:715.839714pt;}
.y8e{bottom:716.639713pt;}
.y113{bottom:721.599711pt;}
.yf{bottom:722.879711pt;}
.y41{bottom:723.039711pt;}
.ydb{bottom:727.519709pt;}
.yab{bottom:731.199708pt;}
.y8d{bottom:731.999707pt;}
.ye{bottom:733.919706pt;}
.y112{bottom:738.399705pt;}
.y40{bottom:739.999704pt;}
.y15b{bottom:742.719703pt;}
.yda{bottom:744.479702pt;}
.yaa{bottom:746.559701pt;}
.y8c{bottom:747.359701pt;}
.yc{bottom:752.319699pt;}
.y111{bottom:755.679698pt;}
.y3f{bottom:756.799697pt;}
.y15a{bottom:758.079697pt;}
.yd{bottom:759.679696pt;}
.yd9{bottom:761.759695pt;}
.ya9{bottom:761.919695pt;}
.y8b{bottom:762.719695pt;}
.yb{bottom:770.719692pt;}
.y159{bottom:773.439691pt;}
.y3e{bottom:773.759690pt;}
.y110{bottom:774.079690pt;}
.ya8{bottom:777.279689pt;}
.ya{bottom:778.079689pt;}
.y158{bottom:788.799684pt;}
.y3d{bottom:790.559684pt;}
.yd8{bottom:791.359683pt;}
.y10f{bottom:792.159683pt;}
.ya7{bottom:793.279683pt;}
.y8a{bottom:793.439683pt;}
.y9{bottom:797.439681pt;}
.yd7{bottom:799.039680pt;}
.y157{bottom:804.159678pt;}
.y3c{bottom:807.359677pt;}
.y89{bottom:808.639677pt;}
.y7{bottom:809.279676pt;}
.y8{bottom:817.279673pt;}
.y156{bottom:819.519672pt;}
.y100{bottom:820.959672pt;}
.y3b{bottom:824.319670pt;}
.y10e{bottom:825.759670pt;}
.y6{bottom:832.159667pt;}
.y155{bottom:834.719666pt;}
.ya6{bottom:835.519666pt;}
.yff{bottom:836.319665pt;}
.y3a{bottom:841.119664pt;}
.y10d{bottom:842.399663pt;}
.y154{bottom:850.079660pt;}
.ya5{bottom:850.879660pt;}
.yfe{bottom:851.839659pt;}
.yd6{bottom:853.119659pt;}
.y39{bottom:858.079657pt;}
.y5{bottom:862.079655pt;}
.y153{bottom:865.439654pt;}
.yfd{bottom:868.799652pt;}
.y12b{bottom:874.559650pt;}
.y38{bottom:874.879650pt;}
.ya4{bottom:878.239649pt;}
.y152{bottom:880.799648pt;}
.yfc{bottom:885.599646pt;}
.y37{bottom:891.679643pt;}
.y4{bottom:892.159643pt;}
.ya3{bottom:894.559642pt;}
.y151{bottom:896.159642pt;}
.yd4{bottom:899.359640pt;}
.yfb{bottom:902.559639pt;}
.yd3{bottom:907.039637pt;}
.y36{bottom:908.639637pt;}
.ya2{bottom:909.919636pt;}
.y150{bottom:911.359635pt;}
.yd5{bottom:914.719634pt;}
.yfa{bottom:921.439631pt;}
.y3{bottom:922.079631pt;}
.y35{bottom:925.439630pt;}
.y14f{bottom:926.719629pt;}
.y33{bottom:942.879623pt;}
.y1{bottom:959.999616pt;}
.h9{height:36.280945pt;}
.h12{height:36.865265pt;}
.h5{height:38.163185pt;}
.he{height:39.243734pt;}
.h7{height:39.839984pt;}
.h4{height:40.441584pt;}
.hb{height:40.862704pt;}
.h11{height:42.719983pt;}
.hf{height:44.415982pt;}
.h1{height:47.276781pt;}
.h8{height:47.347181pt;}
.h13{height:48.556781pt;}
.hc{height:49.907793pt;}
.ha{height:51.966699pt;}
.hd{height:52.403179pt;}
.h6{height:56.959977pt;}
.h3{height:61.516775pt;}
.h16{height:66.305253pt;}
.h10{height:66.643173pt;}
.h2{height:71.235909pt;}
.h15{height:77.996769pt;}
.h14{height:98.305241pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:108.000728pt;}
.x1d{left:109.119956pt;}
.xd{left:111.039956pt;}
.xe{left:116.479953pt;}
.x3e{left:119.999952pt;}
.x2b{left:121.119952pt;}
.x23{left:123.839950pt;}
.x11{left:129.439948pt;}
.x1b{left:131.999899pt;}
.x1{left:138.079945pt;}
.x19{left:139.359944pt;}
.x35{left:145.119980pt;}
.x16{left:150.399940pt;}
.x3a{left:154.719938pt;}
.x1e{left:155.999938pt;}
.x17{left:158.559937pt;}
.x22{left:160.159555pt;}
.x12{left:170.079932pt;}
.x13{left:175.519930pt;}
.x24{left:180.159933pt;}
.x3b{left:200.479920pt;}
.x4{left:201.919815pt;}
.x5{left:205.599811pt;}
.x38{left:216.799951pt;}
.x6{left:232.799907pt;}
.x31{left:236.159947pt;}
.x36{left:241.119963pt;}
.x1a{left:250.879900pt;}
.x1f{left:252.000733pt;}
.x20{left:265.759894pt;}
.x2c{left:267.840469pt;}
.x25{left:274.399850pt;}
.x40{left:280.159888pt;}
.x21{left:291.519883pt;}
.x2f{left:293.759712pt;}
.x7{left:296.639881pt;}
.x34{left:300.479880pt;}
.x8{left:302.399879pt;}
.x26{left:328.479761pt;}
.x15{left:362.879855pt;}
.x33{left:369.920247pt;}
.x9{left:383.199847pt;}
.xa{left:388.959844pt;}
.xb{left:393.279843pt;}
.x3{left:395.999842pt;}
.x37{left:399.039840pt;}
.x2e{left:417.600447pt;}
.x27{left:421.759666pt;}
.x28{left:461.599623pt;}
.xf{left:532.319787pt;}
.x10{left:536.959785pt;}
.xc{left:553.439779pt;}
.x2d{left:566.080632pt;}
.x32{left:567.519718pt;}
.x29{left:571.359553pt;}
.x30{left:573.759038pt;}
.x2a{left:576.479554pt;}
.x18{left:607.999757pt;}
.x3d{left:647.999741pt;}
.x3f{left:651.839739pt;}
.x14{left:662.559735pt;}
.x1c{left:670.719732pt;}
.x3c{left:683.999726pt;}
.x39{left:685.119726pt;}
}




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