
    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_4906d6b30599eaa37b16a43e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.075000;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_d5720fffca31959742b13a89.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.137000;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_3996bf53a2830f3cbe88e14d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.137000;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_61c091344d1a5f44a0e8bbd7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;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_e05f4a75b5ffea4d7ffdb851.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.059000;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_436b46fc2552924c8ec95ce3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_e2514660ef49737af646023a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.137000;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_96600887364c43b66a2917bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.142000;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_74a7cc947eecfde51da15085.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061000;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_e2be9e7f05bca7546869dabb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.140000;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_14501331bcc22e9fec2059d1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-21.000412px;}
.ws2{word-spacing:-18.006785px;}
.ws4{word-spacing:-16.498716px;}
.ws6{word-spacing:-15.001902px;}
.ws8{word-spacing:-10.504681px;}
.ws9{word-spacing:-10.504089px;}
.ws5{word-spacing:-6.996050px;}
.ws7{word-spacing:-5.901460px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:440.130922px;}
._5{margin-left:-1.004753px;}
._8{width:1.021062px;}
._6{width:2.349641px;}
._1{width:4.161606px;}
._2{width:5.257047px;}
._f{width:6.656372px;}
._7{width:7.897266px;}
._3{width:9.106760px;}
._0{width:10.513769px;}
._4{width:11.997690px;}
._31{width:13.066148px;}
._1f{width:14.151655px;}
._a{width:15.284836px;}
._9{width:17.885618px;}
._2d{width:18.932644px;}
._13{width:20.049312px;}
._18{width:22.010196px;}
._26{width:23.487174px;}
._27{width:25.324641px;}
._22{width:26.434251px;}
._e{width:28.149248px;}
._20{width:29.317299px;}
._37{width:30.345184px;}
._30{width:31.461997px;}
._2a{width:32.476784px;}
._1e{width:33.850486px;}
._34{width:34.942399px;}
._b{width:36.502994px;}
._1a{width:38.175572px;}
._d{width:39.658272px;}
._19{width:40.776848px;}
._17{width:42.077514px;}
._10{width:43.758395px;}
._1b{width:45.718998px;}
._3a{width:47.056642px;}
._29{width:48.718821px;}
._28{width:49.766884px;}
._33{width:50.855773px;}
._11{width:52.005260px;}
._2c{width:53.822174px;}
._1c{width:55.191651px;}
._2b{width:57.920164px;}
._21{width:58.976941px;}
._2e{width:60.182583px;}
._12{width:61.384374px;}
._3b{width:63.300704px;}
._46{width:64.805536px;}
._40{width:67.010185px;}
._42{width:70.148246px;}
._39{width:71.371635px;}
._1d{width:72.488459px;}
._48{width:73.720701px;}
._3d{width:75.858064px;}
._24{width:80.760675px;}
._14{width:83.068248px;}
._38{width:85.662203px;}
._16{width:88.224506px;}
._32{width:91.602565px;}
._3c{width:95.394610px;}
._2f{width:96.841726px;}
._15{width:98.302873px;}
._23{width:99.315296px;}
._36{width:100.770771px;}
._41{width:103.207179px;}
._43{width:106.131384px;}
._44{width:109.930481px;}
._25{width:111.369869px;}
._45{width:125.408359px;}
._3e{width:126.756065px;}
._3f{width:136.023270px;}
._35{width:147.752327px;}
._47{width:176.135359px;}
._c{width:449.500121px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs9{font-size:18.675507px;}
.fs3{font-size:25.209812px;}
.fs7{font-size:27.984200px;}
.fsa{font-size:29.750527px;}
.fs5{font-size:32.412211px;}
.fs2{font-size:42.016355px;}
.fsb{font-size:42.018724px;}
.fs4{font-size:54.020354px;}
.fs8{font-size:60.007609px;}
.fs1{font-size:65.994864px;}
.fs6{font-size:72.027138px;}
.fs0{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y128{bottom:5.617766px;}
.y127{bottom:15.534608px;}
.y16{bottom:18.074523px;}
.y17{bottom:22.451227px;}
.y126{bottom:25.451451px;}
.y123{bottom:29.655019px;}
.y14{bottom:32.079975px;}
.y125{bottom:35.368293px;}
.y11f{bottom:35.514983px;}
.y15{bottom:36.456679px;}
.y124{bottom:45.285135px;}
.y12{bottom:46.085427px;}
.y13{bottom:50.462130px;}
.y11e{bottom:53.870950px;}
.y122{bottom:54.744267px;}
.y11d{bottom:71.009182px;}
.y7b{bottom:79.760789px;}
.y4b{bottom:90.315445px;}
.y32{bottom:92.414468px;}
.y7a{bottom:102.269269px;}
.yde{bottom:104.319984px;}
.y4a{bottom:112.823925px;}
.y31{bottom:114.922949px;}
.ydd{bottom:118.325436px;}
.y79{bottom:124.777750px;}
.y99{bottom:127.277504px;}
.y49{bottom:135.332406px;}
.y30{bottom:137.431429px;}
.y129{bottom:143.875725px;}
.y78{bottom:147.286231px;}
.y98{bottom:149.785984px;}
.y11c{bottom:156.159226px;}
.y48{bottom:157.840887px;}
.y2f{bottom:159.939910px;}
.y109{bottom:167.649886px;}
.y77{bottom:169.794711px;}
.yb0{bottom:172.261461px;}
.y97{bottom:172.294465px;}
.y11b{bottom:178.667707px;}
.y47{bottom:180.349367px;}
.y2e{bottom:182.448391px;}
.y12c{bottom:188.400212px;}
.y108{bottom:190.158366px;}
.y76{bottom:192.303192px;}
.y96{bottom:194.802946px;}
.y11a{bottom:201.176187px;}
.y12b{bottom:202.405664px;}
.y46{bottom:202.857848px;}
.y2d{bottom:204.956871px;}
.y107{bottom:212.666847px;}
.y75{bottom:214.811673px;}
.y95{bottom:217.311426px;}
.y119{bottom:223.684668px;}
.y45{bottom:225.366329px;}
.y120{bottom:226.611662px;}
.y2c{bottom:227.465352px;}
.y106{bottom:235.175328px;}
.y74{bottom:237.320153px;}
.y94{bottom:239.819907px;}
.y118{bottom:246.193149px;}
.y44{bottom:247.874809px;}
.y2b{bottom:249.973833px;}
.y105{bottom:257.683808px;}
.y73{bottom:259.828634px;}
.y93{bottom:262.328388px;}
.y117{bottom:268.701629px;}
.y43{bottom:270.383290px;}
.y2a{bottom:272.482313px;}
.y104{bottom:280.192289px;}
.y72{bottom:282.337115px;}
.y12a{bottom:282.621509px;}
.y92{bottom:284.836868px;}
.y116{bottom:291.210110px;}
.y42{bottom:292.891771px;}
.y29{bottom:294.990794px;}
.y103{bottom:302.700770px;}
.y71{bottom:304.845595px;}
.y121{bottom:306.827470px;}
.y91{bottom:307.345349px;}
.y115{bottom:313.718591px;}
.y41{bottom:315.400251px;}
.y28{bottom:317.499275px;}
.y102{bottom:325.209250px;}
.y70{bottom:327.354076px;}
.y90{bottom:329.853830px;}
.y114{bottom:336.227071px;}
.y40{bottom:337.908732px;}
.y27{bottom:340.007755px;}
.y101{bottom:347.717731px;}
.y6f{bottom:349.862557px;}
.y8f{bottom:352.362310px;}
.y113{bottom:358.735552px;}
.y3f{bottom:360.417213px;}
.y26{bottom:362.516236px;}
.y100{bottom:370.226212px;}
.y6e{bottom:372.371037px;}
.y8e{bottom:374.870791px;}
.y112{bottom:381.244033px;}
.y3e{bottom:382.925693px;}
.y25{bottom:385.024717px;}
.yff{bottom:392.734692px;}
.y6d{bottom:394.879518px;}
.y3d{bottom:405.434174px;}
.y24{bottom:407.533197px;}
.yfe{bottom:415.243173px;}
.y6c{bottom:417.387999px;}
.y8d{bottom:419.887752px;}
.y111{bottom:426.260994px;}
.y3c{bottom:427.942655px;}
.y23{bottom:430.041678px;}
.y149{bottom:430.804214px;}
.yfd{bottom:437.751654px;}
.y6b{bottom:439.896479px;}
.y8c{bottom:442.396233px;}
.y110{bottom:448.769475px;}
.y3b{bottom:450.451135px;}
.y22{bottom:452.550159px;}
.y148{bottom:453.312695px;}
.yfc{bottom:460.260134px;}
.y6a{bottom:462.404960px;}
.y8b{bottom:464.904714px;}
.y10f{bottom:471.277955px;}
.y3a{bottom:472.959616px;}
.y21{bottom:475.058639px;}
.yfb{bottom:482.768615px;}
.y69{bottom:484.913441px;}
.y8a{bottom:487.413194px;}
.y39{bottom:495.468097px;}
.y20{bottom:497.567120px;}
.y147{bottom:498.329656px;}
.y68{bottom:507.421921px;}
.y89{bottom:509.921675px;}
.ye2{bottom:517.345325px;}
.y38{bottom:517.976577px;}
.y1f{bottom:520.075600px;}
.y146{bottom:520.838137px;}
.ye0{bottom:526.594985px;}
.y67{bottom:529.930402px;}
.y88{bottom:532.430156px;}
.y37{bottom:540.485058px;}
.y1e{bottom:542.584081px;}
.y145{bottom:543.346617px;}
.y66{bottom:552.438883px;}
.y87{bottom:554.938636px;}
.y36{bottom:562.993539px;}
.y10e{bottom:563.412658px;}
.y1d{bottom:565.092562px;}
.yfa{bottom:570.421544px;}
.y65{bottom:574.947363px;}
.y86{bottom:577.447117px;}
.y144{bottom:584.987307px;}
.y35{bottom:585.502019px;}
.y10d{bottom:585.921139px;}
.y1c{bottom:587.601042px;}
.yf9{bottom:592.930025px;}
.y64{bottom:597.455844px;}
.y143{bottom:605.244939px;}
.y34{bottom:608.010500px;}
.y10c{bottom:608.429619px;}
.yf8{bottom:615.438506px;}
.y63{bottom:619.964325px;}
.y85{bottom:622.464078px;}
.y142{bottom:625.502572px;}
.y1b{bottom:629.543605px;}
.y33{bottom:630.518981px;}
.y10b{bottom:630.938100px;}
.yf7{bottom:637.946986px;}
.y62{bottom:642.472805px;}
.y84{bottom:644.972559px;}
.y141{bottom:645.760204px;}
.y10a{bottom:653.446581px;}
.yc6{bottom:660.227393px;}
.yf6{bottom:660.455467px;}
.y61{bottom:664.981286px;}
.y140{bottom:666.017837px;}
.y83{bottom:667.481040px;}
.y11{bottom:672.234713px;}
.ydc{bottom:678.371025px;}
.yc5{bottom:682.735873px;}
.yf5{bottom:682.963948px;}
.y60{bottom:687.489767px;}
.y82{bottom:689.989520px;}
.y10{bottom:694.743194px;}
.ye1{bottom:699.513936px;}
.ydb{bottom:700.879505px;}
.yc4{bottom:705.244354px;}
.yf4{bottom:705.472428px;}
.y13f{bottom:709.909374px;}
.y5f{bottom:709.998247px;}
.y81{bottom:712.498001px;}
.yaf{bottom:713.381707px;}
.yda{bottom:723.387986px;}
.yc3{bottom:727.752835px;}
.yf3{bottom:727.980909px;}
.y13e{bottom:732.417855px;}
.y5e{bottom:732.506728px;}
.y80{bottom:735.006482px;}
.yae{bottom:735.890188px;}
.yf{bottom:739.760155px;}
.yd9{bottom:745.896467px;}
.yc2{bottom:750.261315px;}
.yf2{bottom:750.489390px;}
.y13d{bottom:754.926336px;}
.y5d{bottom:755.015209px;}
.y7f{bottom:757.514962px;}
.yad{bottom:758.398669px;}
.ye{bottom:762.268636px;}
.yd8{bottom:768.404947px;}
.yc1{bottom:772.769796px;}
.yf1{bottom:772.997870px;}
.y13c{bottom:777.434816px;}
.y5c{bottom:777.523689px;}
.y7e{bottom:780.023443px;}
.yac{bottom:780.907149px;}
.yd{bottom:784.777117px;}
.yd7{bottom:790.913428px;}
.yc0{bottom:795.278277px;}
.yf0{bottom:795.506351px;}
.y13b{bottom:799.943297px;}
.y5b{bottom:800.032170px;}
.y7d{bottom:802.531924px;}
.yab{bottom:803.415630px;}
.yc{bottom:807.285597px;}
.yd6{bottom:813.421909px;}
.ybf{bottom:817.786757px;}
.yef{bottom:818.014832px;}
.y5a{bottom:822.540651px;}
.y7c{bottom:825.040404px;}
.yaa{bottom:825.924111px;}
.yb{bottom:829.794078px;}
.yd5{bottom:835.930389px;}
.ybe{bottom:840.295238px;}
.yee{bottom:840.523312px;}
.y13a{bottom:844.960258px;}
.y59{bottom:845.049131px;}
.ya9{bottom:848.432591px;}
.ya{bottom:852.302559px;}
.yd4{bottom:858.438870px;}
.ybd{bottom:862.803719px;}
.yed{bottom:863.031793px;}
.y9c{bottom:866.606042px;}
.y139{bottom:867.468739px;}
.y58{bottom:867.557612px;}
.ya8{bottom:870.941072px;}
.y9{bottom:874.811039px;}
.yd3{bottom:880.947351px;}
.ybc{bottom:885.312199px;}
.yec{bottom:885.540274px;}
.y138{bottom:889.977219px;}
.y57{bottom:890.066093px;}
.y9b{bottom:891.365371px;}
.ya7{bottom:893.449553px;}
.y8{bottom:897.319520px;}
.yd2{bottom:903.455831px;}
.ybb{bottom:907.820680px;}
.yeb{bottom:908.048754px;}
.y137{bottom:912.485700px;}
.y56{bottom:912.574573px;}
.ya6{bottom:915.958033px;}
.y9a{bottom:916.124700px;}
.y7{bottom:919.828001px;}
.yd1{bottom:925.964312px;}
.yba{bottom:930.329161px;}
.yea{bottom:930.557235px;}
.y136{bottom:934.994181px;}
.y55{bottom:935.083054px;}
.ya5{bottom:938.466514px;}
.y6{bottom:942.336481px;}
.yd0{bottom:948.472793px;}
.yb9{bottom:952.837641px;}
.ye9{bottom:953.065716px;}
.y135{bottom:957.502661px;}
.y54{bottom:957.591535px;}
.y153{bottom:958.493749px;}
.ya4{bottom:960.974995px;}
.y5{bottom:964.844962px;}
.ycf{bottom:970.981273px;}
.yb8{bottom:975.346122px;}
.ye8{bottom:975.574196px;}
.y134{bottom:980.011142px;}
.y53{bottom:980.100015px;}
.y152{bottom:981.002229px;}
.ya3{bottom:983.483475px;}
.y4{bottom:987.353443px;}
.yce{bottom:993.489754px;}
.yb7{bottom:997.854603px;}
.ye7{bottom:998.082677px;}
.y52{bottom:1002.608496px;}
.y151{bottom:1003.510710px;}
.ya2{bottom:1005.991956px;}
.ycd{bottom:1015.998235px;}
.yb6{bottom:1020.363083px;}
.ye6{bottom:1020.591158px;}
.y133{bottom:1025.028103px;}
.y51{bottom:1025.116977px;}
.y150{bottom:1026.019191px;}
.ya1{bottom:1028.500437px;}
.y1a{bottom:1030.047710px;}
.ycc{bottom:1038.506715px;}
.yb5{bottom:1042.871564px;}
.ye5{bottom:1043.099638px;}
.y132{bottom:1047.536584px;}
.y50{bottom:1047.625457px;}
.y14f{bottom:1048.527671px;}
.ya0{bottom:1051.008917px;}
.ycb{bottom:1061.015196px;}
.yb4{bottom:1065.380045px;}
.ye4{bottom:1065.608119px;}
.y131{bottom:1070.045065px;}
.y4f{bottom:1070.133938px;}
.y14e{bottom:1071.036152px;}
.y9f{bottom:1073.517398px;}
.yca{bottom:1083.523677px;}
.yb3{bottom:1087.888525px;}
.ye3{bottom:1088.116600px;}
.y18{bottom:1092.164696px;}
.y130{bottom:1092.553545px;}
.y4e{bottom:1092.642419px;}
.y14d{bottom:1093.544633px;}
.y9e{bottom:1096.025878px;}
.y19{bottom:1097.791817px;}
.yc9{bottom:1106.032157px;}
.yb2{bottom:1110.397006px;}
.y12f{bottom:1115.062026px;}
.y4d{bottom:1115.150899px;}
.y14c{bottom:1116.053113px;}
.y9d{bottom:1118.534359px;}
.ydf{bottom:1125.314417px;}
.yc8{bottom:1128.540638px;}
.y12e{bottom:1137.570507px;}
.y4c{bottom:1137.659380px;}
.y14b{bottom:1138.561594px;}
.y3{bottom:1149.525267px;}
.yb1{bottom:1150.073746px;}
.yc7{bottom:1151.049119px;}
.y12d{bottom:1160.078987px;}
.y14a{bottom:1161.070075px;}
.y2{bottom:1178.786292px;}
.h10{height:15.033783px;}
.h6{height:22.461943px;}
.he{height:24.933922px;}
.h12{height:26.507720px;}
.h8{height:28.879280px;}
.hc{height:34.159296px;}
.h5{height:37.436572px;}
.h13{height:37.438683px;}
.h7{height:48.132135px;}
.hf{height:53.466780px;}
.h11{height:53.639998px;}
.hb{height:53.653825px;}
.ha{height:54.596571px;}
.h4{height:58.801424px;}
.h9{height:59.638470px;}
.hd{height:64.896451px;}
.h3{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:47.986994px;}
.xe{left:49.025411px;}
.x4{left:51.447325px;}
.xa{left:54.957885px;}
.x1{left:56.969516px;}
.x11{left:58.798029px;}
.x9{left:60.718353px;}
.x8{left:76.034671px;}
.xb{left:78.508127px;}
.xf{left:119.519995px;}
.x5{left:120.717522px;}
.x10{left:127.283452px;}
.x2{left:389.831259px;}
.x6{left:469.235590px;}
.x7{left:497.283268px;}
.xd{left:618.659038px;}
.xc{left:620.563834px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-18.667033pt;}
.ws2{word-spacing:-16.006031pt;}
.ws4{word-spacing:-14.665525pt;}
.ws6{word-spacing:-13.335024pt;}
.ws8{word-spacing:-9.337494pt;}
.ws9{word-spacing:-9.336968pt;}
.ws5{word-spacing:-6.218711pt;}
.ws7{word-spacing:-5.245742pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:391.227486pt;}
._5{margin-left:-0.893114pt;}
._8{width:0.907611pt;}
._6{width:2.088570pt;}
._1{width:3.699205pt;}
._2{width:4.672930pt;}
._f{width:5.916775pt;}
._7{width:7.019792pt;}
._3{width:8.094897pt;}
._0{width:9.345573pt;}
._4{width:10.664614pt;}
._31{width:11.614354pt;}
._1f{width:12.579249pt;}
._a{width:13.586521pt;}
._9{width:15.898327pt;}
._2d{width:16.829017pt;}
._13{width:17.821611pt;}
._18{width:19.564619pt;}
._26{width:20.877488pt;}
._27{width:22.510792pt;}
._22{width:23.497112pt;}
._e{width:25.021554pt;}
._20{width:26.059821pt;}
._37{width:26.973497pt;}
._30{width:27.966220pt;}
._2a{width:28.868252pt;}
._1e{width:30.089321pt;}
._34{width:31.059910pt;}
._b{width:32.447106pt;}
._1a{width:33.933842pt;}
._d{width:35.251797pt;}
._19{width:36.246087pt;}
._17{width:37.402235pt;}
._10{width:38.896351pt;}
._1b{width:40.639109pt;}
._3a{width:41.828127pt;}
._29{width:43.305619pt;}
._28{width:44.237230pt;}
._33{width:45.205131pt;}
._11{width:46.226898pt;}
._2c{width:47.841932pt;}
._1c{width:49.059245pt;}
._2b{width:51.484590pt;}
._21{width:52.423948pt;}
._2e{width:53.495629pt;}
._12{width:54.563888pt;}
._3b{width:56.267292pt;}
._46{width:57.604921pt;}
._40{width:59.564609pt;}
._42{width:62.353997pt;}
._39{width:63.441454pt;}
._1d{width:64.434186pt;}
._48{width:65.529512pt;}
._3d{width:67.429391pt;}
._24{width:71.787267pt;}
._14{width:73.838443pt;}
._38{width:76.144180pt;}
._16{width:78.421783pt;}
._32{width:81.424503pt;}
._3c{width:84.795209pt;}
._2f{width:86.081534pt;}
._15{width:87.380331pt;}
._23{width:88.280263pt;}
._36{width:89.574018pt;}
._41{width:91.739714pt;}
._43{width:94.339008pt;}
._44{width:97.715983pt;}
._25{width:98.995439pt;}
._45{width:111.474097pt;}
._3e{width:112.672058pt;}
._3f{width:120.909573pt;}
._35{width:131.335402pt;}
._47{width:156.564763pt;}
._c{width:399.555664pt;}
.fs9{font-size:16.600451pt;}
.fs3{font-size:22.408722pt;}
.fs7{font-size:24.874844pt;}
.fsa{font-size:26.444913pt;}
.fs5{font-size:28.810854pt;}
.fs2{font-size:37.347871pt;}
.fsb{font-size:37.349977pt;}
.fs4{font-size:48.018092pt;}
.fs8{font-size:53.340097pt;}
.fs1{font-size:58.662102pt;}
.fs6{font-size:64.024123pt;}
.fs0{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y128{bottom:4.993570pt;}
.y127{bottom:13.808541pt;}
.y16{bottom:16.066243pt;}
.y17{bottom:19.956646pt;}
.y126{bottom:22.623512pt;}
.y123{bottom:26.360017pt;}
.y14{bottom:28.515533pt;}
.y125{bottom:31.438483pt;}
.y11f{bottom:31.568874pt;}
.y15{bottom:32.405937pt;}
.y124{bottom:40.253454pt;}
.y12{bottom:40.964824pt;}
.y13{bottom:44.855227pt;}
.y11e{bottom:47.885289pt;}
.y122{bottom:48.661571pt;}
.y11d{bottom:63.119273pt;}
.y7b{bottom:70.898479pt;}
.y4b{bottom:80.280395pt;}
.y32{bottom:82.146194pt;}
.y7a{bottom:90.906017pt;}
.yde{bottom:92.728875pt;}
.y4a{bottom:100.287934pt;}
.y31{bottom:102.153732pt;}
.ydd{bottom:105.178165pt;}
.y79{bottom:110.913556pt;}
.y99{bottom:113.135559pt;}
.y49{bottom:120.295472pt;}
.y30{bottom:122.161270pt;}
.y129{bottom:127.889533pt;}
.y78{bottom:130.921094pt;}
.y98{bottom:133.143097pt;}
.y11c{bottom:138.808201pt;}
.y48{bottom:140.303010pt;}
.y2f{bottom:142.168809pt;}
.y109{bottom:149.022121pt;}
.y77{bottom:150.928632pt;}
.yb0{bottom:153.121299pt;}
.y97{bottom:153.150636pt;}
.y11b{bottom:158.815739pt;}
.y47{bottom:160.310549pt;}
.y2e{bottom:162.176347pt;}
.y12c{bottom:167.466856pt;}
.y108{bottom:169.029659pt;}
.y76{bottom:170.936171pt;}
.y96{bottom:173.158174pt;}
.y11a{bottom:178.823278pt;}
.y12b{bottom:179.916146pt;}
.y46{bottom:180.318087pt;}
.y2d{bottom:182.183886pt;}
.y107{bottom:189.037197pt;}
.y75{bottom:190.943709pt;}
.y95{bottom:193.165712pt;}
.y119{bottom:198.830816pt;}
.y45{bottom:200.325626pt;}
.y120{bottom:201.432588pt;}
.y2c{bottom:202.191424pt;}
.y106{bottom:209.044736pt;}
.y74{bottom:210.951248pt;}
.y94{bottom:213.173251pt;}
.y118{bottom:218.838354pt;}
.y44{bottom:220.333164pt;}
.y2b{bottom:222.198962pt;}
.y105{bottom:229.052274pt;}
.y73{bottom:230.958786pt;}
.y93{bottom:233.180789pt;}
.y117{bottom:238.845893pt;}
.y43{bottom:240.340702pt;}
.y2a{bottom:242.206501pt;}
.y104{bottom:249.059812pt;}
.y72{bottom:250.966324pt;}
.y12a{bottom:251.219119pt;}
.y92{bottom:253.188327pt;}
.y116{bottom:258.853431pt;}
.y42{bottom:260.348241pt;}
.y29{bottom:262.214039pt;}
.y103{bottom:269.067351pt;}
.y71{bottom:270.973863pt;}
.y121{bottom:272.735529pt;}
.y91{bottom:273.195866pt;}
.y115{bottom:278.860970pt;}
.y41{bottom:280.355779pt;}
.y28{bottom:282.221577pt;}
.y102{bottom:289.074889pt;}
.y70{bottom:290.981401pt;}
.y90{bottom:293.203404pt;}
.y114{bottom:298.868508pt;}
.y40{bottom:300.363317pt;}
.y27{bottom:302.229116pt;}
.y101{bottom:309.082427pt;}
.y6f{bottom:310.988939pt;}
.y8f{bottom:313.210942pt;}
.y113{bottom:318.876046pt;}
.y3f{bottom:320.370856pt;}
.y26{bottom:322.236654pt;}
.y100{bottom:329.089966pt;}
.y6e{bottom:330.996478pt;}
.y8e{bottom:333.218481pt;}
.y112{bottom:338.883585pt;}
.y3e{bottom:340.378394pt;}
.y25{bottom:342.244192pt;}
.yff{bottom:349.097504pt;}
.y6d{bottom:351.004016pt;}
.y3d{bottom:360.385933pt;}
.y24{bottom:362.251731pt;}
.yfe{bottom:369.105043pt;}
.y6c{bottom:371.011554pt;}
.y8d{bottom:373.233558pt;}
.y111{bottom:378.898661pt;}
.y3c{bottom:380.393471pt;}
.y23{bottom:382.259269pt;}
.y149{bottom:382.937079pt;}
.yfd{bottom:389.112581pt;}
.y6b{bottom:391.019093pt;}
.y8c{bottom:393.241096pt;}
.y110{bottom:398.906200pt;}
.y3b{bottom:400.401009pt;}
.y22{bottom:402.266808pt;}
.y148{bottom:402.944617pt;}
.yfc{bottom:409.120119pt;}
.y6a{bottom:411.026631pt;}
.y8b{bottom:413.248634pt;}
.y10f{bottom:418.913738pt;}
.y3a{bottom:420.408548pt;}
.y21{bottom:422.274346pt;}
.yfb{bottom:429.127658pt;}
.y69{bottom:431.034170pt;}
.y8a{bottom:433.256173pt;}
.y39{bottom:440.416086pt;}
.y20{bottom:442.281884pt;}
.y147{bottom:442.959694pt;}
.y68{bottom:451.041708pt;}
.y89{bottom:453.263711pt;}
.ye2{bottom:459.862511pt;}
.y38{bottom:460.423624pt;}
.y1f{bottom:462.289423pt;}
.y146{bottom:462.967233pt;}
.ye0{bottom:468.084431pt;}
.y67{bottom:471.049246pt;}
.y88{bottom:473.271249pt;}
.y37{bottom:480.431163pt;}
.y1e{bottom:482.296961pt;}
.y145{bottom:482.974771pt;}
.y66{bottom:491.056785pt;}
.y87{bottom:493.278788pt;}
.y36{bottom:500.438701pt;}
.y10e{bottom:500.811251pt;}
.y1d{bottom:502.304499pt;}
.yfa{bottom:507.041373pt;}
.y65{bottom:511.064323pt;}
.y86{bottom:513.286326pt;}
.y144{bottom:519.988717pt;}
.y35{bottom:520.446239pt;}
.y10d{bottom:520.818790pt;}
.y1c{bottom:522.312038pt;}
.yf9{bottom:527.048911pt;}
.y64{bottom:531.071861pt;}
.y143{bottom:537.995501pt;}
.y34{bottom:540.453778pt;}
.y10c{bottom:540.826328pt;}
.yf8{bottom:547.056450pt;}
.y63{bottom:551.079400pt;}
.y85{bottom:553.301403pt;}
.y142{bottom:556.002286pt;}
.y1b{bottom:559.594315pt;}
.y33{bottom:560.461316pt;}
.y10b{bottom:560.833867pt;}
.yf7{bottom:567.063988pt;}
.y62{bottom:571.086938pt;}
.y84{bottom:573.308941pt;}
.y141{bottom:574.009070pt;}
.y10a{bottom:580.841405pt;}
.yc6{bottom:586.868793pt;}
.yf6{bottom:587.071526pt;}
.y61{bottom:591.094476pt;}
.y140{bottom:592.015855pt;}
.y83{bottom:593.316480pt;}
.y11{bottom:597.541967pt;}
.ydc{bottom:602.996466pt;}
.yc5{bottom:606.876332pt;}
.yf5{bottom:607.079065pt;}
.y60{bottom:611.102015pt;}
.y82{bottom:613.324018pt;}
.y10{bottom:617.549506pt;}
.ye1{bottom:621.790165pt;}
.ydb{bottom:623.004005pt;}
.yc4{bottom:626.883870pt;}
.yf4{bottom:627.086603pt;}
.y13f{bottom:631.030555pt;}
.y5f{bottom:631.109553pt;}
.y81{bottom:633.331556pt;}
.yaf{bottom:634.117073pt;}
.yda{bottom:643.011543pt;}
.yc3{bottom:646.891409pt;}
.yf3{bottom:647.094141pt;}
.y13e{bottom:651.038093pt;}
.y5e{bottom:651.117092pt;}
.y80{bottom:653.339095pt;}
.yae{bottom:654.124611pt;}
.yf{bottom:657.564583pt;}
.yd9{bottom:663.019081pt;}
.yc2{bottom:666.898947pt;}
.yf2{bottom:667.101680pt;}
.y13d{bottom:671.045632pt;}
.y5d{bottom:671.124630pt;}
.y7f{bottom:673.346633pt;}
.yad{bottom:674.132150pt;}
.ye{bottom:677.572121pt;}
.yd8{bottom:683.026620pt;}
.yc1{bottom:686.906485pt;}
.yf1{bottom:687.109218pt;}
.y13c{bottom:691.053170pt;}
.y5c{bottom:691.132168pt;}
.y7e{bottom:693.354171pt;}
.yac{bottom:694.139688pt;}
.yd{bottom:697.579659pt;}
.yd7{bottom:703.034158pt;}
.yc0{bottom:706.914024pt;}
.yf0{bottom:707.116756pt;}
.y13b{bottom:711.060708pt;}
.y5b{bottom:711.139707pt;}
.y7d{bottom:713.361710pt;}
.yab{bottom:714.147227pt;}
.yc{bottom:717.587198pt;}
.yd6{bottom:723.041697pt;}
.ybf{bottom:726.921562pt;}
.yef{bottom:727.124295pt;}
.y5a{bottom:731.147245pt;}
.y7c{bottom:733.369248pt;}
.yaa{bottom:734.154765pt;}
.yb{bottom:737.594736pt;}
.yd5{bottom:743.049235pt;}
.ybe{bottom:746.929100pt;}
.yee{bottom:747.131833pt;}
.y13a{bottom:751.075785pt;}
.y59{bottom:751.154783pt;}
.ya9{bottom:754.162303pt;}
.ya{bottom:757.602274pt;}
.yd4{bottom:763.056773pt;}
.ybd{bottom:766.936639pt;}
.yed{bottom:767.139372pt;}
.y9c{bottom:770.316482pt;}
.y139{bottom:771.083323pt;}
.y58{bottom:771.162322pt;}
.ya8{bottom:774.169842pt;}
.y9{bottom:777.609813pt;}
.yd3{bottom:783.064312pt;}
.ybc{bottom:786.944177pt;}
.yec{bottom:787.146910pt;}
.y138{bottom:791.090862pt;}
.y57{bottom:791.169860pt;}
.y9b{bottom:792.324774pt;}
.ya7{bottom:794.177380pt;}
.y8{bottom:797.617351pt;}
.yd2{bottom:803.071850pt;}
.ybb{bottom:806.951715pt;}
.yeb{bottom:807.154448pt;}
.y137{bottom:811.098400pt;}
.y56{bottom:811.177399pt;}
.ya6{bottom:814.184918pt;}
.y9a{bottom:814.333066pt;}
.y7{bottom:817.624889pt;}
.yd1{bottom:823.079388pt;}
.yba{bottom:826.959254pt;}
.yea{bottom:827.161987pt;}
.y136{bottom:831.105938pt;}
.y55{bottom:831.184937pt;}
.ya5{bottom:834.192457pt;}
.y6{bottom:837.632428pt;}
.yd0{bottom:843.086927pt;}
.yb9{bottom:846.966792pt;}
.ye9{bottom:847.169525pt;}
.y135{bottom:851.113477pt;}
.y54{bottom:851.192475pt;}
.y153{bottom:851.994443pt;}
.ya4{bottom:854.199995pt;}
.y5{bottom:857.639966pt;}
.ycf{bottom:863.094465pt;}
.yb8{bottom:866.974331pt;}
.ye8{bottom:867.177063pt;}
.y134{bottom:871.121015pt;}
.y53{bottom:871.200014pt;}
.y152{bottom:872.001982pt;}
.ya3{bottom:874.207533pt;}
.y4{bottom:877.647505pt;}
.yce{bottom:883.102004pt;}
.yb7{bottom:886.981869pt;}
.ye7{bottom:887.184602pt;}
.y52{bottom:891.207552pt;}
.y151{bottom:892.009520pt;}
.ya2{bottom:894.215072pt;}
.ycd{bottom:903.109542pt;}
.yb6{bottom:906.989407pt;}
.ye6{bottom:907.192140pt;}
.y133{bottom:911.136092pt;}
.y51{bottom:911.215090pt;}
.y150{bottom:912.017058pt;}
.ya1{bottom:914.222610pt;}
.y1a{bottom:915.597964pt;}
.ycc{bottom:923.117080pt;}
.yb5{bottom:926.996946pt;}
.ye5{bottom:927.199678pt;}
.y132{bottom:931.143630pt;}
.y50{bottom:931.222629pt;}
.y14f{bottom:932.024597pt;}
.ya0{bottom:934.230149pt;}
.ycb{bottom:943.124619pt;}
.yb4{bottom:947.004484pt;}
.ye4{bottom:947.207217pt;}
.y131{bottom:951.151169pt;}
.y4f{bottom:951.230167pt;}
.y14e{bottom:952.032135pt;}
.y9f{bottom:954.237687pt;}
.yca{bottom:963.132157pt;}
.yb3{bottom:967.012022pt;}
.ye3{bottom:967.214755pt;}
.y18{bottom:970.813064pt;}
.y130{bottom:971.158707pt;}
.y4e{bottom:971.237705pt;}
.y14d{bottom:972.039673pt;}
.y9e{bottom:974.245225pt;}
.y19{bottom:975.814948pt;}
.yc9{bottom:983.139695pt;}
.yb2{bottom:987.019561pt;}
.y12f{bottom:991.166245pt;}
.y4d{bottom:991.245244pt;}
.y14c{bottom:992.047212pt;}
.y9d{bottom:994.252764pt;}
.ydf{bottom:1000.279482pt;}
.yc8{bottom:1003.147234pt;}
.y12e{bottom:1011.173784pt;}
.y4c{bottom:1011.252782pt;}
.y14b{bottom:1012.054750pt;}
.y3{bottom:1021.800238pt;}
.yb1{bottom:1022.287774pt;}
.yc7{bottom:1023.154772pt;}
.y12d{bottom:1031.181322pt;}
.y14a{bottom:1032.062289pt;}
.y2{bottom:1047.810038pt;}
.h10{height:13.363363pt;}
.h6{height:19.966171pt;}
.he{height:22.163486pt;}
.h12{height:23.562418pt;}
.h8{height:25.670471pt;}
.hc{height:30.363819pt;}
.h5{height:33.276953pt;}
.h13{height:33.278829pt;}
.h7{height:42.784120pt;}
.hf{height:47.526026pt;}
.h11{height:47.679998pt;}
.hb{height:47.692289pt;}
.ha{height:48.530285pt;}
.h4{height:52.267933pt;}
.h9{height:53.011974pt;}
.hd{height:57.685735pt;}
.h3{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:42.655106pt;}
.xe{left:43.578143pt;}
.x4{left:45.730956pt;}
.xa{left:48.851453pt;}
.x1{left:50.639570pt;}
.x11{left:52.264915pt;}
.x9{left:53.971870pt;}
.x8{left:67.586374pt;}
.xb{left:69.785002pt;}
.xf{left:106.239996pt;}
.x5{left:107.304464pt;}
.x10{left:113.140846pt;}
.x2{left:346.516675pt;}
.x6{left:417.098303pt;}
.x7{left:442.029571pt;}
.xd{left:549.919145pt;}
.xc{left:551.612297pt;}
}




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