
    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_be26a1c2339c6eab51985cac.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_7d6e22227e89f71f125be6be.woff')format("woff");}.ff2{font-family:ff2;line-height:0.681152;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_7456d9da850f940892707e1d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_56612746c945196234f071ba.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_825ea3e8fb9bc86ed684101a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.868000;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_5d7edd7015806adda8493e89.woff')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_d3edc6100641fd27f485c157.woff')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_8fe0ccf0477986327aa745fb.woff')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;}
.m7{transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m3{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);}
.m5{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);}
.m0{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);}
.m6{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m1{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.304345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304345,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:35.350656px;}
.ls2{letter-spacing:37.514795px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-31.131588px;}
.ws1{word-spacing:-28.255789px;}
.ws0{word-spacing:-22.503591px;}
.ws3{word-spacing:-19.795792px;}
.ws6{word-spacing:-16.919993px;}
.ws4{word-spacing:-15.565794px;}
.ws2{word-spacing:-14.889414px;}
.ws7{word-spacing:-13.366435px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1.326334px;}
._0{width:1.162282px;}
._9{width:2.301701px;}
._5{width:3.397474px;}
._2{width:5.254819px;}
._4{width:6.758747px;}
._3{width:7.966674px;}
._8{width:9.183485px;}
._6{width:10.381627px;}
._7{width:12.276102px;}
._a{width:13.923439px;}
._12{width:15.439917px;}
._f{width:16.609030px;}
._10{width:18.338958px;}
._e{width:20.463284px;}
._b{width:22.509146px;}
._13{width:23.581248px;}
._c{width:24.673231px;}
._d{width:25.872479px;}
._11{width:47.419528px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.414398px;}
.fsd{font-size:11.503435px;}
.fse{font-size:28.423429px;}
.fsf{font-size:39.254384px;}
.fs10{font-size:39.434384px;}
.fs6{font-size:45.343422px;}
.fs5{font-size:48.051341px;}
.fsc{font-size:50.759980px;}
.fsb{font-size:53.465739px;}
.fs0{font-size:56.174378px;}
.fs8{font-size:59.557656px;}
.fs9{font-size:62.263175px;}
.fs7{font-size:67.679973px;}
.fs4{font-size:73.094371px;}
.fs1{font-size:79.183168px;}
.fs3{font-size:90.014364px;}
.fs2{font-size:113.023155px;}
.y0{bottom:0.000000px;}
.y15f{bottom:1.799719px;}
.y2{bottom:90.359964px;}
.y3c{bottom:91.259963px;}
.y3b{bottom:109.799956px;}
.y3a{bottom:119.879952px;}
.yeb{bottom:127.619949px;}
.y11d{bottom:127.799949px;}
.y109{bottom:129.959948px;}
.y39{bottom:137.519945px;}
.ya2{bottom:138.959944px;}
.ybf{bottom:141.299943px;}
.y71{bottom:145.619942px;}
.y108{bottom:146.879941px;}
.y38{bottom:155.519938px;}
.y144{bottom:156.599937px;}
.ya1{bottom:156.959937px;}
.y107{bottom:157.139937px;}
.ybe{bottom:159.119936px;}
.yea{bottom:161.459935px;}
.y11c{bottom:162.539935px;}
.y70{bottom:163.259935px;}
.y143{bottom:166.499933px;}
.ye9{bottom:171.359931px;}
.y37{bottom:173.339931px;}
.y11b{bottom:174.419930px;}
.ya0{bottom:174.599930px;}
.ybd{bottom:176.399929px;}
.y6f{bottom:181.259927px;}
.y142{bottom:182.699927px;}
.y11a{bottom:184.499926px;}
.ye8{bottom:189.179924px;}
.y36{bottom:191.159924px;}
.ybc{bottom:192.239923px;}
.y9f{bottom:192.599923px;}
.y141{bottom:196.919921px;}
.y6e{bottom:197.999921px;}
.y119{bottom:200.699920px;}
.y140{bottom:206.999917px;}
.ye7{bottom:207.179917px;}
.y35{bottom:208.979916px;}
.y9e{bottom:210.419916px;}
.y6d{bottom:211.679915px;}
.ybb{bottom:213.299915px;}
.y118{bottom:214.739914px;}
.y13f{bottom:223.199911px;}
.ye6{bottom:224.819910px;}
.y34{bottom:226.799909px;}
.yba{bottom:227.339909px;}
.y9d{bottom:228.059909px;}
.y6c{bottom:228.779908px;}
.y13e{bottom:237.599905px;}
.y6b{bottom:242.819903px;}
.y33{bottom:244.619902px;}
.yb9{bottom:244.979902px;}
.y9c{bottom:246.059902px;}
.y13d{bottom:247.499901px;}
.y6a{bottom:260.639896px;}
.y32{bottom:262.439895px;}
.yb8{bottom:262.979895px;}
.y9b{bottom:263.879894px;}
.y69{bottom:278.459889px;}
.y13c{bottom:279.899888px;}
.y31{bottom:280.439888px;}
.yb7{bottom:280.799888px;}
.y9a{bottom:281.699887px;}
.y13b{bottom:294.299882px;}
.y68{bottom:296.279881px;}
.y30{bottom:298.259881px;}
.yb6{bottom:298.439881px;}
.y99{bottom:299.519880px;}
.y13a{bottom:304.199878px;}
.ye5{bottom:314.099874px;}
.y67{bottom:314.819874px;}
.y2f{bottom:315.899874px;}
.yb5{bottom:316.439873px;}
.y98{bottom:317.339873px;}
.y139{bottom:320.579872px;}
.ye4{bottom:329.939868px;}
.y106{bottom:331.199868px;}
.y2e{bottom:333.899866px;}
.yb4{bottom:334.259866px;}
.y97{bottom:335.159866px;}
.y66{bottom:336.779865px;}
.ye3{bottom:340.199864px;}
.y105{bottom:345.059862px;}
.yb3{bottom:351.179860px;}
.y2d{bottom:351.719859px;}
.y96{bottom:352.979859px;}
.y65{bottom:354.599858px;}
.ye2{bottom:357.839857px;}
.y104{bottom:360.359856px;}
.y138{bottom:361.079856px;}
.yb2{bottom:365.039854px;}
.y2c{bottom:369.539852px;}
.y95{bottom:370.979852px;}
.y64{bottom:372.419851px;}
.y103{bottom:374.399850px;}
.ye1{bottom:375.659850px;}
.y137{bottom:377.099849px;}
.yb1{bottom:381.239848px;}
.y2b{bottom:387.359845px;}
.y94{bottom:388.619845px;}
.y63{bottom:390.419844px;}
.ye0{bottom:391.499843px;}
.y102{bottom:392.219843px;}
.y136{bottom:393.479843px;}
.yb0{bottom:395.279842px;}
.ydf{bottom:401.759839px;}
.y2a{bottom:405.359838px;}
.y93{bottom:407.159837px;}
.y135{bottom:407.879837px;}
.y62{bottom:408.239837px;}
.y101{bottom:410.039836px;}
.y134{bottom:417.779833px;}
.yde{bottom:419.399832px;}
.y29{bottom:422.999831px;}
.y61{bottom:425.879830px;}
.y100{bottom:427.859829px;}
.y92{bottom:429.119828px;}
.y133{bottom:433.979826px;}
.ydd{bottom:437.399825px;}
.y28{bottom:440.819824px;}
.y60{bottom:443.879822px;}
.y91{bottom:445.319822px;}
.yff{bottom:445.679822px;}
.y132{bottom:450.359820px;}
.ydc{bottom:455.219818px;}
.y27{bottom:458.819816px;}
.y117{bottom:459.359816px;}
.y5f{bottom:461.699815px;}
.y90{bottom:463.319815px;}
.yfe{bottom:463.499815px;}
.y131{bottom:466.379813px;}
.ydb{bottom:471.059812px;}
.y26{bottom:476.459809px;}
.y116{bottom:477.179809px;}
.y5e{bottom:479.519808px;}
.y8f{bottom:481.139808px;}
.yfd{bottom:481.499807px;}
.y130{bottom:482.579807px;}
.y25{bottom:494.459802px;}
.y115{bottom:494.999802px;}
.y12f{bottom:496.979801px;}
.y5d{bottom:497.339801px;}
.yfc{bottom:498.239801px;}
.y8e{bottom:498.959800px;}
.y12e{bottom:506.879797px;}
.yfb{bottom:508.859796px;}
.yfa{bottom:509.939796px;}
.y24{bottom:512.279795px;}
.y114{bottom:512.819795px;}
.y5c{bottom:515.339794px;}
.y8d{bottom:516.779793px;}
.y12d{bottom:523.259791px;}
.y23{bottom:529.919788px;}
.y113{bottom:530.639788px;}
.y5b{bottom:532.979787px;}
.y8c{bottom:534.779786px;}
.y12c{bottom:539.459784px;}
.y112{bottom:547.559781px;}
.y22{bottom:547.919781px;}
.y5a{bottom:550.799780px;}
.y8b{bottom:552.419779px;}
.y12b{bottom:555.839778px;}
.y111{bottom:557.999777px;}
.y110{bottom:563.759774px;}
.y21{bottom:565.739774px;}
.y59{bottom:568.799772px;}
.y8a{bottom:570.239772px;}
.y12a{bottom:575.639770px;}
.y20{bottom:582.659767px;}
.y10f{bottom:585.539766px;}
.yda{bottom:586.079766px;}
.y58{bottom:586.439765px;}
.y89{bottom:588.239765px;}
.y129{bottom:589.679764px;}
.yd9{bottom:596.339761px;}
.y10e{bottom:602.639759px;}
.y1f{bottom:603.539759px;}
.y57{bottom:604.439758px;}
.y88{bottom:605.879758px;}
.y128{bottom:607.679757px;}
.yaf{bottom:608.399757px;}
.y10d{bottom:613.259755px;}
.yd8{bottom:613.979754px;}
.y10c{bottom:614.339754px;}
.y1e{bottom:617.399753px;}
.y56{bottom:618.839752px;}
.y87{bottom:623.879750px;}
.y55{bottom:624.419750px;}
.yd7{bottom:631.799747px;}
.y1d{bottom:632.879747px;}
.y15c{bottom:636.659745px;}
.y127{bottom:639.179744px;}
.y86{bottom:641.699743px;}
.y54{bottom:646.559741px;}
.y1c{bottom:646.919741px;}
.yd6{bottom:648.359741px;}
.yf9{bottom:648.719741px;}
.y15b{bottom:652.859739px;}
.y85{bottom:659.339736px;}
.y126{bottom:660.059736px;}
.yd5{bottom:661.139736px;}
.yf8{bottom:662.579735px;}
.y53{bottom:664.379734px;}
.y1b{bottom:666.719733px;}
.y15a{bottom:669.059732px;}
.y125{bottom:674.099730px;}
.y84{bottom:677.339729px;}
.yf7{bottom:678.059729px;}
.yd4{bottom:678.959728px;}
.y1a{bottom:680.759728px;}
.y52{bottom:682.199727px;}
.y159{bottom:685.259726px;}
.yf6{bottom:691.919723px;}
.y83{bottom:695.159722px;}
.yd3{bottom:696.779721px;}
.y19{bottom:696.959721px;}
.y51{bottom:700.019720px;}
.y15e{bottom:700.740000px;}
.y158{bottom:701.459719px;}
.yf5{bottom:709.739716px;}
.y82{bottom:712.979715px;}
.y18{bottom:713.159715px;}
.yd2{bottom:714.599714px;}
.y50{bottom:717.839713px;}
.yf4{bottom:727.559709px;}
.y17{bottom:729.359708px;}
.y81{bottom:730.799708px;}
.yd1{bottom:732.419707px;}
.y157{bottom:734.039706px;}
.y4f{bottom:735.659706px;}
.y124{bottom:744.299702px;}
.yf3{bottom:745.379702px;}
.y16{bottom:745.559702px;}
.yae{bottom:748.619701px;}
.y80{bottom:748.799700px;}
.yd0{bottom:749.339700px;}
.y156{bottom:750.059700px;}
.y4e{bottom:753.479699px;}
.y123{bottom:758.339697px;}
.y15{bottom:761.759695px;}
.ycf{bottom:763.379695px;}
.yad{bottom:764.999694px;}
.y155{bottom:766.259693px;}
.y7f{bottom:768.059693px;}
.y4d{bottom:771.479691px;}
.y122{bottom:776.159690px;}
.y14{bottom:777.959689px;}
.yce{bottom:781.019688px;}
.y154{bottom:782.639687px;}
.yac{bottom:784.259686px;}
.y7e{bottom:786.059686px;}
.y4c{bottom:789.119684px;}
.y121{bottom:794.159682px;}
.y13{bottom:794.339682px;}
.ycd{bottom:797.039681px;}
.yf2{bottom:797.939681px;}
.y153{bottom:798.839680px;}
.y15d{bottom:800.099680px;}
.yab{bottom:802.259679px;}
.y7d{bottom:803.699679px;}
.y4b{bottom:806.939677px;}
.y12{bottom:810.539676px;}
.yf1{bottom:811.799675px;}
.y152{bottom:815.039674px;}
.yaa{bottom:819.899672px;}
.y7c{bottom:821.699671px;}
.ycc{bottom:822.779671px;}
.y4a{bottom:824.939670px;}
.y11{bottom:826.559669px;}
.yf0{bottom:829.799668px;}
.y151{bottom:831.239668px;}
.ycb{bottom:833.039667px;}
.ya9{bottom:836.819665px;}
.y7b{bottom:839.519664px;}
.y10{bottom:842.039663px;}
.y49{bottom:842.579663px;}
.y150{bottom:847.439661px;}
.yef{bottom:847.619661px;}
.yca{bottom:848.879660px;}
.ya8{bottom:850.859660px;}
.yf{bottom:856.259657px;}
.y7a{bottom:857.159657px;}
.yc9{bottom:858.959656px;}
.y48{bottom:860.579656px;}
.y14f{bottom:863.639655px;}
.y120{bottom:864.539654px;}
.yee{bottom:865.259654px;}
.ya7{bottom:869.219652px;}
.y10b{bottom:870.839652px;}
.y79{bottom:875.159650px;}
.yc8{bottom:876.599649px;}
.ye{bottom:877.679649px;}
.y47{bottom:878.399649px;}
.y14e{bottom:879.839648px;}
.ya6{bottom:883.259647px;}
.y10a{bottom:884.699646px;}
.yc7{bottom:892.619643px;}
.y78{bottom:894.599642px;}
.y46{bottom:896.039642px;}
.yd{bottom:897.119641px;}
.yed{bottom:899.999640px;}
.ya5{bottom:901.079640px;}
.yc6{bottom:902.699639px;}
.yc{bottom:904.859638px;}
.y77{bottom:912.419635px;}
.y45{bottom:914.039634px;}
.yec{bottom:914.759634px;}
.yb{bottom:916.559633px;}
.ya4{bottom:918.899632px;}
.yc5{bottom:919.439632px;}
.ya{bottom:924.299630px;}
.y14d{bottom:928.439629px;}
.y76{bottom:930.239628px;}
.y44{bottom:931.859627px;}
.yc4{bottom:933.479627px;}
.y9{bottom:935.279626px;}
.ya3{bottom:935.639626px;}
.y14c{bottom:943.919622px;}
.y75{bottom:948.059621px;}
.y43{bottom:949.679620px;}
.yc3{bottom:951.299619px;}
.y7{bottom:952.379619px;}
.y14b{bottom:959.579616px;}
.y8{bottom:960.839616px;}
.y74{bottom:965.879614px;}
.y11f{bottom:966.599613px;}
.y42{bottom:967.499613px;}
.yc2{bottom:968.219613px;}
.y6{bottom:972.539611px;}
.y14a{bottom:979.559608px;}
.y11e{bottom:980.999608px;}
.yc1{bottom:982.079607px;}
.y73{bottom:983.699607px;}
.y41{bottom:985.319606px;}
.y5{bottom:992.339603px;}
.yc0{bottom:996.839601px;}
.y149{bottom:1001.519599px;}
.y72{bottom:1001.699599px;}
.y40{bottom:1003.139599px;}
.y148{bottom:1015.919594px;}
.y3f{bottom:1020.959592px;}
.y4{bottom:1024.199590px;}
.y147{bottom:1025.819590px;}
.y3e{bottom:1038.959584px;}
.y146{bottom:1042.019583px;}
.y3{bottom:1053.899578px;}
.y3d{bottom:1056.779577px;}
.y145{bottom:1058.219577px;}
.y1{bottom:1086.659565px;}
.h19{height:3.725106px;}
.h11{height:3.746763px;}
.h15{height:7.914364px;}
.h20{height:11.160000px;}
.h17{height:19.555319px;}
.h1f{height:26.283171px;}
.h18{height:27.007016px;}
.hb{height:30.969557px;}
.hd{height:31.060244px;}
.h7{height:31.196274px;}
.h1a{height:31.377648px;}
.h6{height:33.059322px;}
.h14{height:34.922866px;}
.h1d{height:35.125906px;}
.h13{height:36.998291px;}
.hc{height:38.367100px;}
.h1{height:38.647972px;}
.h1e{height:38.872669px;}
.ha{height:40.796994px;}
.h1c{height:41.213898px;}
.h10{height:42.837064px;}
.hf{height:43.086117px;}
.h16{height:44.994873px;}
.h8{height:46.563821px;}
.h12{height:46.834541px;}
.h9{height:50.069644px;}
.h5{height:50.288927px;}
.h1b{height:50.581305px;}
.h2{height:52.775891px;}
.he{height:54.794752px;}
.h4{height:59.994925px;}
.h3{height:75.330374px;}
.h0{height:1188.000000px;}
.w1{width:7.200000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:158.759936px;}
.x17{left:160.739936px;}
.x26{left:162.179935px;}
.x23{left:170.819932px;}
.x67{left:172.079931px;}
.x27{left:173.519931px;}
.x28{left:177.479929px;}
.x38{left:184.139926px;}
.x29{left:185.219926px;}
.x48{left:187.379925px;}
.x33{left:188.459925px;}
.x5c{left:189.539924px;}
.x2b{left:190.619924px;}
.x65{left:191.699923px;}
.x47{left:196.199922px;}
.x3{left:198.179921px;}
.x3e{left:199.799920px;}
.x21{left:203.939918px;}
.x22{left:209.519916px;}
.x4{left:212.399915px;}
.x1f{left:220.499912px;}
.x20{left:226.259909px;}
.x68{left:227.519909px;}
.x34{left:234.539906px;}
.xf{left:235.619906px;}
.x24{left:236.699905px;}
.x2c{left:239.219904px;}
.x25{left:242.459903px;}
.x10{left:250.019900px;}
.x2d{left:252.359899px;}
.x5d{left:259.739896px;}
.x35{left:263.159895px;}
.x53{left:264.419894px;}
.x3f{left:269.819892px;}
.x36{left:276.479889px;}
.x2e{left:282.959887px;}
.x4c{left:290.339884px;}
.x40{left:294.479882px;}
.x18{left:296.819881px;}
.x39{left:298.079881px;}
.x5{left:299.339880px;}
.x19{left:302.579879px;}
.x3a{left:304.739878px;}
.x41{left:305.819878px;}
.x44{left:308.339877px;}
.x2f{left:309.599876px;}
.x60{left:312.839875px;}
.x3b{left:315.539874px;}
.x6{left:316.799873px;}
.x61{left:318.959872px;}
.x30{left:320.579872px;}
.x49{left:325.979870px;}
.x3c{left:327.959869px;}
.x62{left:331.019868px;}
.x69{left:332.099867px;}
.x4a{left:338.219865px;}
.x42{left:340.919864px;}
.x37{left:342.179863px;}
.x66{left:344.519862px;}
.x54{left:352.259859px;}
.x45{left:354.779858px;}
.x7{left:356.039858px;}
.x63{left:358.199857px;}
.x8{left:374.579850px;}
.x4d{left:377.279849px;}
.x11{left:383.219847px;}
.x31{left:388.259845px;}
.x4e{left:390.599844px;}
.x3d{left:393.299843px;}
.x12{left:402.299839px;}
.x46{left:403.919838px;}
.x43{left:410.939836px;}
.x4b{left:412.559835px;}
.x13{left:422.639831px;}
.x1a{left:426.779829px;}
.x1b{left:432.719827px;}
.x14{left:433.799826px;}
.x55{left:442.259823px;}
.x56{left:449.999820px;}
.x4f{left:454.139818px;}
.x32{left:461.699815px;}
.x2{left:463.499815px;}
.x57{left:465.119814px;}
.x50{left:466.379813px;}
.x9{left:474.119810px;}
.x58{left:476.099810px;}
.xa{left:485.279806px;}
.xb{left:509.939796px;}
.xc{left:532.079787px;}
.x59{left:539.639784px;}
.x51{left:541.079784px;}
.x5a{left:560.519776px;}
.x1c{left:567.359773px;}
.x1d{left:576.179770px;}
.x15{left:594.539762px;}
.xd{left:613.079755px;}
.x5b{left:628.379749px;}
.xe{left:636.839745px;}
.x6a{left:654.479738px;}
.x5f{left:669.419732px;}
.x5e{left:670.499732px;}
.x64{left:673.019731px;}
.x16{left:691.739723px;}
.x52{left:703.439719px;}
.x6b{left:750.420000px;}
.x2a{left:754.558525px;}
.x1e{left:760.319696px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:31.422806pt;}
.ls2{letter-spacing:33.346485pt;}
.ws8{word-spacing:-27.672522pt;}
.ws1{word-spacing:-25.116257pt;}
.ws0{word-spacing:-20.003192pt;}
.ws3{word-spacing:-17.596260pt;}
.ws6{word-spacing:-15.039994pt;}
.ws4{word-spacing:-13.836261pt;}
.ws2{word-spacing:-13.235035pt;}
.ws7{word-spacing:-11.881275pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-1.178963pt;}
._0{width:1.033140pt;}
._9{width:2.045957pt;}
._5{width:3.019977pt;}
._2{width:4.670950pt;}
._4{width:6.007775pt;}
._3{width:7.081488pt;}
._8{width:8.163097pt;}
._6{width:9.228113pt;}
._7{width:10.912091pt;}
._a{width:12.376390pt;}
._12{width:13.724370pt;}
._f{width:14.763583pt;}
._10{width:16.301296pt;}
._e{width:18.189586pt;}
._b{width:20.008130pt;}
._13{width:20.961109pt;}
._c{width:21.931761pt;}
._d{width:22.997759pt;}
._11{width:42.150691pt;}
.fsa{font-size:4.812798pt;}
.fsd{font-size:10.225276pt;}
.fse{font-size:25.265270pt;}
.fsf{font-size:34.892786pt;}
.fs10{font-size:35.052786pt;}
.fs6{font-size:40.305264pt;}
.fs5{font-size:42.712303pt;}
.fsc{font-size:45.119982pt;}
.fsb{font-size:47.525101pt;}
.fs0{font-size:49.932780pt;}
.fs8{font-size:52.940139pt;}
.fs9{font-size:55.345045pt;}
.fs7{font-size:60.159976pt;}
.fs4{font-size:64.972774pt;}
.fs1{font-size:70.385039pt;}
.fs3{font-size:80.012768pt;}
.fs2{font-size:100.465026pt;}
.y0{bottom:0.000000pt;}
.y15f{bottom:1.599750pt;}
.y2{bottom:80.319968pt;}
.y3c{bottom:81.119968pt;}
.y3b{bottom:97.599961pt;}
.y3a{bottom:106.559957pt;}
.yeb{bottom:113.439955pt;}
.y11d{bottom:113.599955pt;}
.y109{bottom:115.519954pt;}
.y39{bottom:122.239951pt;}
.ya2{bottom:123.519951pt;}
.ybf{bottom:125.599950pt;}
.y71{bottom:129.439948pt;}
.y108{bottom:130.559948pt;}
.y38{bottom:138.239945pt;}
.y144{bottom:139.199944pt;}
.ya1{bottom:139.519944pt;}
.y107{bottom:139.679944pt;}
.ybe{bottom:141.439943pt;}
.yea{bottom:143.519943pt;}
.y11c{bottom:144.479942pt;}
.y70{bottom:145.119942pt;}
.y143{bottom:147.999941pt;}
.ye9{bottom:152.319939pt;}
.y37{bottom:154.079938pt;}
.y11b{bottom:155.039938pt;}
.ya0{bottom:155.199938pt;}
.ybd{bottom:156.799937pt;}
.y6f{bottom:161.119936pt;}
.y142{bottom:162.399935pt;}
.y11a{bottom:163.999934pt;}
.ye8{bottom:168.159933pt;}
.y36{bottom:169.919932pt;}
.ybc{bottom:170.879932pt;}
.y9f{bottom:171.199932pt;}
.y141{bottom:175.039930pt;}
.y6e{bottom:175.999930pt;}
.y119{bottom:178.399929pt;}
.y140{bottom:183.999926pt;}
.ye7{bottom:184.159926pt;}
.y35{bottom:185.759926pt;}
.y9e{bottom:187.039925pt;}
.y6d{bottom:188.159925pt;}
.ybb{bottom:189.599924pt;}
.y118{bottom:190.879924pt;}
.y13f{bottom:198.399921pt;}
.ye6{bottom:199.839920pt;}
.y34{bottom:201.599919pt;}
.yba{bottom:202.079919pt;}
.y9d{bottom:202.719919pt;}
.y6c{bottom:203.359919pt;}
.y13e{bottom:211.199916pt;}
.y6b{bottom:215.839914pt;}
.y33{bottom:217.439913pt;}
.yb9{bottom:217.759913pt;}
.y9c{bottom:218.719913pt;}
.y13d{bottom:219.999912pt;}
.y6a{bottom:231.679907pt;}
.y32{bottom:233.279907pt;}
.yb8{bottom:233.759906pt;}
.y9b{bottom:234.559906pt;}
.y69{bottom:247.519901pt;}
.y13c{bottom:248.799900pt;}
.y31{bottom:249.279900pt;}
.yb7{bottom:249.599900pt;}
.y9a{bottom:250.399900pt;}
.y13b{bottom:261.599895pt;}
.y68{bottom:263.359895pt;}
.y30{bottom:265.119894pt;}
.yb6{bottom:265.279894pt;}
.y99{bottom:266.239894pt;}
.y13a{bottom:270.399892pt;}
.ye5{bottom:279.199888pt;}
.y67{bottom:279.839888pt;}
.y2f{bottom:280.799888pt;}
.yb5{bottom:281.279887pt;}
.y98{bottom:282.079887pt;}
.y139{bottom:284.959886pt;}
.ye4{bottom:293.279883pt;}
.y106{bottom:294.399882pt;}
.y2e{bottom:296.799881pt;}
.yb4{bottom:297.119881pt;}
.y97{bottom:297.919881pt;}
.y66{bottom:299.359880pt;}
.ye3{bottom:302.399879pt;}
.y105{bottom:306.719877pt;}
.yb3{bottom:312.159875pt;}
.y2d{bottom:312.639875pt;}
.y96{bottom:313.759874pt;}
.y65{bottom:315.199874pt;}
.ye2{bottom:318.079873pt;}
.y104{bottom:320.319872pt;}
.y138{bottom:320.959872pt;}
.yb2{bottom:324.479870pt;}
.y2c{bottom:328.479869pt;}
.y95{bottom:329.759868pt;}
.y64{bottom:331.039868pt;}
.y103{bottom:332.799867pt;}
.ye1{bottom:333.919866pt;}
.y137{bottom:335.199866pt;}
.yb1{bottom:338.879864pt;}
.y2b{bottom:344.319862pt;}
.y94{bottom:345.439862pt;}
.y63{bottom:347.039861pt;}
.ye0{bottom:347.999861pt;}
.y102{bottom:348.639861pt;}
.y136{bottom:349.759860pt;}
.yb0{bottom:351.359859pt;}
.ydf{bottom:357.119857pt;}
.y2a{bottom:360.319856pt;}
.y93{bottom:361.919855pt;}
.y135{bottom:362.559855pt;}
.y62{bottom:362.879855pt;}
.y101{bottom:364.479854pt;}
.y134{bottom:371.359851pt;}
.yde{bottom:372.799851pt;}
.y29{bottom:375.999850pt;}
.y61{bottom:378.559849pt;}
.y100{bottom:380.319848pt;}
.y92{bottom:381.439847pt;}
.y133{bottom:385.759846pt;}
.ydd{bottom:388.799844pt;}
.y28{bottom:391.839843pt;}
.y60{bottom:394.559842pt;}
.y91{bottom:395.839842pt;}
.yff{bottom:396.159842pt;}
.y132{bottom:400.319840pt;}
.ydc{bottom:404.639838pt;}
.y27{bottom:407.839837pt;}
.y117{bottom:408.319837pt;}
.y5f{bottom:410.399836pt;}
.y90{bottom:411.839835pt;}
.yfe{bottom:411.999835pt;}
.y131{bottom:414.559834pt;}
.ydb{bottom:418.719833pt;}
.y26{bottom:423.519831pt;}
.y116{bottom:424.159830pt;}
.y5e{bottom:426.239830pt;}
.y8f{bottom:427.679829pt;}
.yfd{bottom:427.999829pt;}
.y130{bottom:428.959828pt;}
.y25{bottom:439.519824pt;}
.y115{bottom:439.999824pt;}
.y12f{bottom:441.759823pt;}
.y5d{bottom:442.079823pt;}
.yfc{bottom:442.879823pt;}
.y8e{bottom:443.519823pt;}
.y12e{bottom:450.559820pt;}
.yfb{bottom:452.319819pt;}
.yfa{bottom:453.279819pt;}
.y24{bottom:455.359818pt;}
.y114{bottom:455.839818pt;}
.y5c{bottom:458.079817pt;}
.y8d{bottom:459.359816pt;}
.y12d{bottom:465.119814pt;}
.y23{bottom:471.039812pt;}
.y113{bottom:471.679811pt;}
.y5b{bottom:473.759810pt;}
.y8c{bottom:475.359810pt;}
.y12c{bottom:479.519808pt;}
.y112{bottom:486.719805pt;}
.y22{bottom:487.039805pt;}
.y5a{bottom:489.599804pt;}
.y8b{bottom:491.039804pt;}
.y12b{bottom:494.079802pt;}
.y111{bottom:495.999802pt;}
.y110{bottom:501.119800pt;}
.y21{bottom:502.879799pt;}
.y59{bottom:505.599798pt;}
.y8a{bottom:506.879797pt;}
.y12a{bottom:511.679795pt;}
.y20{bottom:517.919793pt;}
.y10f{bottom:520.479792pt;}
.yda{bottom:520.959792pt;}
.y58{bottom:521.279791pt;}
.y89{bottom:522.879791pt;}
.y129{bottom:524.159790pt;}
.yd9{bottom:530.079788pt;}
.y10e{bottom:535.679786pt;}
.y1f{bottom:536.479785pt;}
.y57{bottom:537.279785pt;}
.y88{bottom:538.559785pt;}
.y128{bottom:540.159784pt;}
.yaf{bottom:540.799784pt;}
.y10d{bottom:545.119782pt;}
.yd8{bottom:545.759782pt;}
.y10c{bottom:546.079782pt;}
.y1e{bottom:548.799780pt;}
.y56{bottom:550.079780pt;}
.y87{bottom:554.559778pt;}
.y55{bottom:555.039778pt;}
.yd7{bottom:561.599775pt;}
.y1d{bottom:562.559775pt;}
.y15c{bottom:565.919774pt;}
.y127{bottom:568.159773pt;}
.y86{bottom:570.399772pt;}
.y54{bottom:574.719770pt;}
.y1c{bottom:575.039770pt;}
.yd6{bottom:576.319769pt;}
.yf9{bottom:576.639769pt;}
.y15b{bottom:580.319768pt;}
.y85{bottom:586.079766pt;}
.y126{bottom:586.719765pt;}
.yd5{bottom:587.679765pt;}
.yf8{bottom:588.959764pt;}
.y53{bottom:590.559764pt;}
.y1b{bottom:592.639763pt;}
.y15a{bottom:594.719762pt;}
.y125{bottom:599.199760pt;}
.y84{bottom:602.079759pt;}
.yf7{bottom:602.719759pt;}
.yd4{bottom:603.519759pt;}
.y1a{bottom:605.119758pt;}
.y52{bottom:606.399757pt;}
.y159{bottom:609.119756pt;}
.yf6{bottom:615.039754pt;}
.y83{bottom:617.919753pt;}
.yd3{bottom:619.359752pt;}
.y19{bottom:619.519752pt;}
.y51{bottom:622.239751pt;}
.y15e{bottom:622.880000pt;}
.y158{bottom:623.519751pt;}
.yf5{bottom:630.879748pt;}
.y82{bottom:633.759746pt;}
.y18{bottom:633.919746pt;}
.yd2{bottom:635.199746pt;}
.y50{bottom:638.079745pt;}
.yf4{bottom:646.719741pt;}
.y17{bottom:648.319741pt;}
.y81{bottom:649.599740pt;}
.yd1{bottom:651.039740pt;}
.y157{bottom:652.479739pt;}
.y4f{bottom:653.919738pt;}
.y124{bottom:661.599735pt;}
.yf3{bottom:662.559735pt;}
.y16{bottom:662.719735pt;}
.yae{bottom:665.439734pt;}
.y80{bottom:665.599734pt;}
.yd0{bottom:666.079734pt;}
.y156{bottom:666.719733pt;}
.y4e{bottom:669.759732pt;}
.y123{bottom:674.079730pt;}
.y15{bottom:677.119729pt;}
.ycf{bottom:678.559729pt;}
.yad{bottom:679.999728pt;}
.y155{bottom:681.119728pt;}
.y7f{bottom:682.719727pt;}
.y4d{bottom:685.759726pt;}
.y122{bottom:689.919724pt;}
.y14{bottom:691.519723pt;}
.yce{bottom:694.239722pt;}
.y154{bottom:695.679722pt;}
.yac{bottom:697.119721pt;}
.y7e{bottom:698.719721pt;}
.y4c{bottom:701.439719pt;}
.y121{bottom:705.919718pt;}
.y13{bottom:706.079718pt;}
.ycd{bottom:708.479717pt;}
.yf2{bottom:709.279716pt;}
.y153{bottom:710.079716pt;}
.y15d{bottom:711.199716pt;}
.yab{bottom:713.119715pt;}
.y7d{bottom:714.399714pt;}
.y4b{bottom:717.279713pt;}
.y12{bottom:720.479712pt;}
.yf1{bottom:721.599711pt;}
.y152{bottom:724.479710pt;}
.yaa{bottom:728.799708pt;}
.y7c{bottom:730.399708pt;}
.ycc{bottom:731.359707pt;}
.y4a{bottom:733.279707pt;}
.y11{bottom:734.719706pt;}
.yf0{bottom:737.599705pt;}
.y151{bottom:738.879704pt;}
.ycb{bottom:740.479704pt;}
.ya9{bottom:743.839702pt;}
.y7b{bottom:746.239702pt;}
.y10{bottom:748.479701pt;}
.y49{bottom:748.959700pt;}
.y150{bottom:753.279699pt;}
.yef{bottom:753.439699pt;}
.yca{bottom:754.559698pt;}
.ya8{bottom:756.319697pt;}
.yf{bottom:761.119696pt;}
.y7a{bottom:761.919695pt;}
.yc9{bottom:763.519695pt;}
.y48{bottom:764.959694pt;}
.y14f{bottom:767.679693pt;}
.y120{bottom:768.479693pt;}
.yee{bottom:769.119692pt;}
.ya7{bottom:772.639691pt;}
.y10b{bottom:774.079690pt;}
.y79{bottom:777.919689pt;}
.yc8{bottom:779.199688pt;}
.ye{bottom:780.159688pt;}
.y47{bottom:780.799688pt;}
.y14e{bottom:782.079687pt;}
.ya6{bottom:785.119686pt;}
.y10a{bottom:786.399685pt;}
.yc7{bottom:793.439683pt;}
.y78{bottom:795.199682pt;}
.y46{bottom:796.479681pt;}
.yd{bottom:797.439681pt;}
.yed{bottom:799.999680pt;}
.ya5{bottom:800.959680pt;}
.yc6{bottom:802.399679pt;}
.yc{bottom:804.319678pt;}
.y77{bottom:811.039676pt;}
.y45{bottom:812.479675pt;}
.yec{bottom:813.119675pt;}
.yb{bottom:814.719674pt;}
.ya4{bottom:816.799673pt;}
.yc5{bottom:817.279673pt;}
.ya{bottom:821.599671pt;}
.y14d{bottom:825.279670pt;}
.y76{bottom:826.879669pt;}
.y44{bottom:828.319669pt;}
.yc4{bottom:829.759668pt;}
.y9{bottom:831.359667pt;}
.ya3{bottom:831.679667pt;}
.y14c{bottom:839.039664pt;}
.y75{bottom:842.719663pt;}
.y43{bottom:844.159662pt;}
.yc3{bottom:845.599662pt;}
.y7{bottom:846.559661pt;}
.y14b{bottom:852.959659pt;}
.y8{bottom:854.079658pt;}
.y74{bottom:858.559657pt;}
.y11f{bottom:859.199656pt;}
.y42{bottom:859.999656pt;}
.yc2{bottom:860.639656pt;}
.y6{bottom:864.479654pt;}
.y14a{bottom:870.719652pt;}
.y11e{bottom:871.999651pt;}
.yc1{bottom:872.959651pt;}
.y73{bottom:874.399650pt;}
.y41{bottom:875.839650pt;}
.y5{bottom:882.079647pt;}
.yc0{bottom:886.079646pt;}
.y149{bottom:890.239644pt;}
.y72{bottom:890.399644pt;}
.y40{bottom:891.679643pt;}
.y148{bottom:903.039639pt;}
.y3f{bottom:907.519637pt;}
.y4{bottom:910.399636pt;}
.y147{bottom:911.839635pt;}
.y3e{bottom:923.519631pt;}
.y146{bottom:926.239630pt;}
.y3{bottom:936.799625pt;}
.y3d{bottom:939.359624pt;}
.y145{bottom:940.639624pt;}
.y1{bottom:965.919614pt;}
.h19{height:3.311205pt;}
.h11{height:3.330456pt;}
.h15{height:7.034990pt;}
.h20{height:9.920000pt;}
.h17{height:17.382506pt;}
.h1f{height:23.362819pt;}
.h18{height:24.006237pt;}
.hb{height:27.528495pt;}
.hd{height:27.609106pt;}
.h7{height:27.730022pt;}
.h1a{height:27.891243pt;}
.h6{height:29.386064pt;}
.h14{height:31.042548pt;}
.h1d{height:31.223028pt;}
.h13{height:32.887370pt;}
.hc{height:34.104089pt;}
.h1{height:34.353753pt;}
.h1e{height:34.553484pt;}
.ha{height:36.263995pt;}
.h1c{height:36.634576pt;}
.h10{height:38.077391pt;}
.hf{height:38.298771pt;}
.h16{height:39.995442pt;}
.h8{height:41.390063pt;}
.h12{height:41.630703pt;}
.h9{height:44.506350pt;}
.h5{height:44.701269pt;}
.h1b{height:44.961160pt;}
.h2{height:46.911903pt;}
.he{height:48.706447pt;}
.h4{height:53.328822pt;}
.h3{height:66.960333pt;}
.h0{height:1056.000000pt;}
.w1{width:6.400000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:141.119944pt;}
.x17{left:142.879943pt;}
.x26{left:144.159942pt;}
.x23{left:151.839939pt;}
.x67{left:152.959939pt;}
.x27{left:154.239938pt;}
.x28{left:157.759937pt;}
.x38{left:163.679935pt;}
.x29{left:164.639934pt;}
.x48{left:166.559933pt;}
.x33{left:167.519933pt;}
.x5c{left:168.479933pt;}
.x2b{left:169.439932pt;}
.x65{left:170.399932pt;}
.x47{left:174.399930pt;}
.x3{left:176.159930pt;}
.x3e{left:177.599929pt;}
.x21{left:181.279927pt;}
.x22{left:186.239926pt;}
.x4{left:188.799924pt;}
.x1f{left:195.999922pt;}
.x20{left:201.119920pt;}
.x68{left:202.239919pt;}
.x34{left:208.479917pt;}
.xf{left:209.439916pt;}
.x24{left:210.399916pt;}
.x2c{left:212.639915pt;}
.x25{left:215.519914pt;}
.x10{left:222.239911pt;}
.x2d{left:224.319910pt;}
.x5d{left:230.879908pt;}
.x35{left:233.919906pt;}
.x53{left:235.039906pt;}
.x3f{left:239.839904pt;}
.x36{left:245.759902pt;}
.x2e{left:251.519899pt;}
.x4c{left:258.079897pt;}
.x40{left:261.759895pt;}
.x18{left:263.839894pt;}
.x39{left:264.959894pt;}
.x5{left:266.079894pt;}
.x19{left:268.959892pt;}
.x3a{left:270.879892pt;}
.x41{left:271.839891pt;}
.x44{left:274.079890pt;}
.x2f{left:275.199890pt;}
.x60{left:278.079889pt;}
.x3b{left:280.479888pt;}
.x6{left:281.599887pt;}
.x61{left:283.519887pt;}
.x30{left:284.959886pt;}
.x49{left:289.759884pt;}
.x3c{left:291.519883pt;}
.x62{left:294.239882pt;}
.x69{left:295.199882pt;}
.x4a{left:300.639880pt;}
.x42{left:303.039879pt;}
.x37{left:304.159878pt;}
.x66{left:306.239878pt;}
.x54{left:313.119875pt;}
.x45{left:315.359874pt;}
.x7{left:316.479873pt;}
.x63{left:318.399873pt;}
.x8{left:332.959867pt;}
.x4d{left:335.359866pt;}
.x11{left:340.639864pt;}
.x31{left:345.119862pt;}
.x4e{left:347.199861pt;}
.x3d{left:349.599860pt;}
.x12{left:357.599857pt;}
.x46{left:359.039856pt;}
.x43{left:365.279854pt;}
.x4b{left:366.719853pt;}
.x13{left:375.679850pt;}
.x1a{left:379.359848pt;}
.x1b{left:384.639846pt;}
.x14{left:385.599846pt;}
.x55{left:393.119843pt;}
.x56{left:399.999840pt;}
.x4f{left:403.679839pt;}
.x32{left:410.399836pt;}
.x2{left:411.999835pt;}
.x57{left:413.439835pt;}
.x50{left:414.559834pt;}
.x9{left:421.439831pt;}
.x58{left:423.199831pt;}
.xa{left:431.359827pt;}
.xb{left:453.279819pt;}
.xc{left:472.959811pt;}
.x59{left:479.679808pt;}
.x51{left:480.959808pt;}
.x5a{left:498.239801pt;}
.x1c{left:504.319798pt;}
.x1d{left:512.159795pt;}
.x15{left:528.479789pt;}
.xd{left:544.959782pt;}
.x5b{left:558.559777pt;}
.xe{left:566.079774pt;}
.x6a{left:581.759767pt;}
.x5f{left:595.039762pt;}
.x5e{left:595.999762pt;}
.x64{left:598.239761pt;}
.x16{left:614.879754pt;}
.x52{left:625.279750pt;}
.x6b{left:667.040000pt;}
.x2a{left:670.718689pt;}
.x1e{left:675.839730pt;}
}




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