
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_c1938927226d721da18743d0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_c3a1932990574e6135cca731.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_1a75a9fd96829a158495c075.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_e4b12ce57c190c5d9da87641.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_c9063fcabbb46483d47925d9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_d602306dbb4a2303c4e71111.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.993164;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_139a4646efcfd152634ded5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_66cbe3b6c1c4091630385919.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.vb{vertical-align:-34.560000px;}
.v14{vertical-align:-24.480000px;}
.va{vertical-align:-22.320000px;}
.v3{vertical-align:-12.240000px;}
.v7{vertical-align:-10.080000px;}
.v6{vertical-align:-8.640000px;}
.v11{vertical-align:-7.200000px;}
.vd{vertical-align:-3.600000px;}
.vf{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.880000px;}
.vc{vertical-align:12.240000px;}
.v1{vertical-align:20.880000px;}
.v2{vertical-align:22.320000px;}
.v5{vertical-align:25.200000px;}
.v8{vertical-align:30.240000px;}
.v4{vertical-align:35.280000px;}
.v10{vertical-align:38.160000px;}
.v12{vertical-align:42.480000px;}
.ve{vertical-align:49.680000px;}
.v13{vertical-align:66.960000px;}
.ls5{letter-spacing:-0.463800px;}
.ls55{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.303000px;}
.ls59{letter-spacing:-0.248400px;}
.lsc{letter-spacing:-0.214800px;}
.lsf{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.175800px;}
.ls8{letter-spacing:-0.115800px;}
.ls3d{letter-spacing:-0.107400px;}
.ls10{letter-spacing:-0.058320px;}
.ls3f{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.067200px;}
.ls45{letter-spacing:0.093600px;}
.ls37{letter-spacing:0.120960px;}
.ls27{letter-spacing:0.174000px;}
.lsb{letter-spacing:0.174240px;}
.ls58{letter-spacing:0.180000px;}
.ls3e{letter-spacing:0.210000px;}
.ls3c{letter-spacing:0.218400px;}
.ls41{letter-spacing:0.231840px;}
.ls53{letter-spacing:0.289440px;}
.ls3{letter-spacing:0.306000px;}
.ls1f{letter-spacing:0.308880px;}
.lsd{letter-spacing:0.314400px;}
.ls13{letter-spacing:0.357120px;}
.ls24{letter-spacing:0.399600px;}
.ls4d{letter-spacing:0.416160px;}
.ls34{letter-spacing:0.527760px;}
.ls52{letter-spacing:0.562320px;}
.ls1b{letter-spacing:0.719280px;}
.ls57{letter-spacing:0.900000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls20{letter-spacing:1.519920px;}
.ls28{letter-spacing:1.773120px;}
.ls15{letter-spacing:1.797120px;}
.ls3b{letter-spacing:1.917120px;}
.ls1{letter-spacing:2.016000px;}
.ls48{letter-spacing:2.109600px;}
.ls21{letter-spacing:2.309760px;}
.ls43{letter-spacing:2.329200px;}
.ls25{letter-spacing:2.370240px;}
.ls51{letter-spacing:2.397600px;}
.ls1d{letter-spacing:2.413440px;}
.ls31{letter-spacing:2.460960px;}
.ls3a{letter-spacing:2.520000px;}
.ls33{letter-spacing:2.580960px;}
.ls23{letter-spacing:2.638080px;}
.ls44{letter-spacing:2.829600px;}
.ls2f{letter-spacing:3.090240px;}
.ls2e{letter-spacing:3.180960px;}
.ls32{letter-spacing:3.810240px;}
.ls49{letter-spacing:7.068720px;}
.ls40{letter-spacing:7.092720px;}
.ls54{letter-spacing:7.525440px;}
.ls50{letter-spacing:9.313200px;}
.ls9{letter-spacing:12.186720px;}
.ls1a{letter-spacing:15.306240px;}
.ls46{letter-spacing:15.789600px;}
.ls14{letter-spacing:16.093440px;}
.ls1e{letter-spacing:16.318080px;}
.ls42{letter-spacing:16.509600px;}
.ls18{letter-spacing:16.559280px;}
.ls2a{letter-spacing:16.770240px;}
.ls2b{letter-spacing:16.914240px;}
.ls38{letter-spacing:16.935600px;}
.ls2c{letter-spacing:16.950240px;}
.ls22{letter-spacing:16.959600px;}
.ls1c{letter-spacing:18.354240px;}
.ls16{letter-spacing:19.117440px;}
.ls47{letter-spacing:19.533600px;}
.ls4a{letter-spacing:22.993200px;}
.ls4b{letter-spacing:26.737200px;}
.ls19{letter-spacing:26.939520px;}
.ls30{letter-spacing:29.242080px;}
.ls2d{letter-spacing:42.178080px;}
.ls29{letter-spacing:42.202080px;}
.ls56{letter-spacing:42.426720px;}
.ls39{letter-spacing:56.159280px;}
.ls17{letter-spacing:56.879280px;}
.ls11{letter-spacing:65.610720px;}
.ls12{letter-spacing:68.490720px;}
.ls4c{letter-spacing:71.279280px;}
.ls4e{letter-spacing:79.832160px;}
.lsa{letter-spacing:90.810720px;}
.ls4f{letter-spacing:103.766160px;}
.ls26{letter-spacing:136.974240px;}
.ls35{letter-spacing:139.134240px;}
.ls36{letter-spacing:202.494240px;}
.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:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws27{word-spacing:-14.400000px;}
.ws9{word-spacing:-13.820160px;}
.wsd{word-spacing:-13.724160px;}
.wsa{word-spacing:-13.572960px;}
.ws3{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.447440px;}
.ws13{word-spacing:-13.398360px;}
.ws5{word-spacing:-13.389960px;}
.wsb{word-spacing:-13.319160px;}
.ws7{word-spacing:-13.290960px;}
.ws29{word-spacing:-13.257360px;}
.wse{word-spacing:-13.147200px;}
.ws18{word-spacing:-13.093920px;}
.ws20{word-spacing:-12.349440px;}
.ws1d{word-spacing:-12.060000px;}
.ws14{word-spacing:-9.397200px;}
.ws11{word-spacing:-9.187200px;}
.ws4{word-spacing:-8.786880px;}
.ws12{word-spacing:-7.920000px;}
.ws22{word-spacing:-0.057600px;}
.ws6{word-spacing:0.000000px;}
.wsf{word-spacing:6.161760px;}
.ws10{word-spacing:6.415200px;}
.ws19{word-spacing:6.501600px;}
.ws17{word-spacing:6.953760px;}
.ws15{word-spacing:7.133760px;}
.ws1a{word-spacing:9.525600px;}
.ws16{word-spacing:9.833760px;}
.ws1f{word-spacing:43.362000px;}
.ws28{word-spacing:70.179600px;}
.ws23{word-spacing:70.294176px;}
.ws1c{word-spacing:85.409760px;}
.ws1b{word-spacing:105.276000px;}
.ws1e{word-spacing:157.981200px;}
.ws25{word-spacing:182.143920px;}
.ws21{word-spacing:209.740320px;}
.ws26{word-spacing:229.981200px;}
.ws24{word-spacing:238.697040px;}
._4{margin-left:-1447.868880px;}
._2{margin-left:-1329.359040px;}
._3{margin-left:-1005.647520px;}
._5{margin-left:-578.729760px;}
._35{margin-left:-215.280000px;}
._32{margin-left:-9.864000px;}
._3b{margin-left:-8.117280px;}
._6{margin-left:-3.312000px;}
._1{margin-left:-1.987200px;}
._0{width:1.394400px;}
._9{width:2.520480px;}
._8{width:3.594000px;}
._7{width:4.652880px;}
._a{width:5.958240px;}
._e{width:7.079520px;}
._10{width:8.213520px;}
._f{width:9.262800px;}
._b{width:10.375200px;}
._11{width:11.414160px;}
._31{width:13.222080px;}
._2f{width:14.581440px;}
._12{width:15.597360px;}
._c{width:16.732800px;}
._d{width:18.286560px;}
._2a{width:19.402080px;}
._18{width:21.513600px;}
._14{width:22.649040px;}
._33{width:24.262560px;}
._29{width:26.527680px;}
._28{width:27.752400px;}
._3d{width:30.311760px;}
._27{width:31.911840px;}
._24{width:33.585120px;}
._1d{width:38.963520px;}
._22{width:46.134720px;}
._25{width:47.628720px;}
._2e{width:55.278000px;}
._21{width:56.951280px;}
._1c{width:59.760000px;}
._23{width:62.559360px;}
._16{width:72.787680px;}
._3c{width:83.669088px;}
._1b{width:85.337280px;}
._2d{width:95.317200px;}
._26{width:97.679520px;}
._1e{width:105.536160px;}
._20{width:109.241280px;}
._2b{width:113.663520px;}
._19{width:118.324800px;}
._1f{width:121.831920px;}
._3a{width:125.356560px;}
._1a{width:132.009840px;}
._15{width:151.431840px;}
._37{width:165.032160px;}
._13{width:173.820960px;}
._39{width:177.968880px;}
._38{width:185.154480px;}
._17{width:195.474960px;}
._36{width:201.699360px;}
._30{width:202.798320px;}
._2c{width:223.681680px;}
._34{width:241.508880px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(67,67,67);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fsa{font-size:48.384000px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:57.600000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yec{bottom:6.480000px;}
.y5f{bottom:6.660000px;}
.y149{bottom:9.180000px;}
.y14d{bottom:10.980000px;}
.y14b{bottom:11.700000px;}
.y15e{bottom:14.400000px;}
.y193{bottom:16.200000px;}
.y139{bottom:17.100000px;}
.yf8{bottom:17.280000px;}
.y135{bottom:17.820000px;}
.y122{bottom:18.750000px;}
.y64{bottom:27.714000px;}
.y5e{bottom:27.720000px;}
.y67{bottom:27.750000px;}
.y6f{bottom:27.765000px;}
.y191{bottom:33.630000px;}
.y15c{bottom:39.450000px;}
.y134{bottom:39.495000px;}
.y63{bottom:48.774000px;}
.y6a{bottom:48.780000px;}
.y6e{bottom:48.825000px;}
.y120{bottom:53.070000px;}
.y152{bottom:54.105000px;}
.y6{bottom:60.336000px;}
.y62{bottom:69.834000px;}
.y69{bottom:69.840000px;}
.y18f{bottom:70.665000px;}
.y153{bottom:70.845000px;}
.y11e{bottom:72.390000px;}
.y15d{bottom:80.745000px;}
.y189{bottom:84.780000px;}
.y113{bottom:86.475000px;}
.y154{bottom:87.585000px;}
.y61{bottom:90.894000px;}
.y72{bottom:90.900000px;}
.y190{bottom:92.085000px;}
.y1bc{bottom:93.276000px;}
.y65{bottom:99.036000px;}
.y187{bottom:102.096000px;}
.y155{bottom:104.295000px;}
.y31{bottom:104.436000px;}
.y114{bottom:104.790000px;}
.y18a{bottom:109.050000px;}
.y96{bottom:113.076000px;}
.y1bb{bottom:114.336000px;}
.y156{bottom:121.035000px;}
.y115{bottom:123.120000px;}
.y186{bottom:123.156000px;}
.ycc{bottom:124.056000px;}
.y30{bottom:125.496000px;}
.y18b{bottom:133.305000px;}
.y95{bottom:134.136000px;}
.y1ba{bottom:135.396000px;}
.y11f{bottom:135.645000px;}
.y157{bottom:137.775000px;}
.y116{bottom:141.450000px;}
.y60{bottom:141.876000px;}
.y185{bottom:144.216000px;}
.ycb{bottom:144.936000px;}
.y2f{bottom:146.556000px;}
.y94{bottom:151.410000px;}
.y158{bottom:154.515000px;}
.y1b9{bottom:156.450000px;}
.y18c{bottom:157.575000px;}
.y117{bottom:159.765000px;}
.y184{bottom:165.270000px;}
.yca{bottom:165.990000px;}
.y124{bottom:166.110000px;}
.y2e{bottom:167.430000px;}
.y111{bottom:167.610000px;}
.y125{bottom:170.250000px;}
.y128{bottom:170.280000px;}
.y159{bottom:171.210000px;}
.y126{bottom:174.240000px;}
.y129{bottom:174.270000px;}
.y12c{bottom:174.390000px;}
.y127{bottom:177.150000px;}
.y1b8{bottom:177.510000px;}
.y12a{bottom:178.050000px;}
.y118{bottom:178.095000px;}
.yfd{bottom:179.310000px;}
.y12d{bottom:179.385000px;}
.y130{bottom:179.640000px;}
.y12b{bottom:181.005000px;}
.y12e{bottom:181.050000px;}
.y18d{bottom:181.830000px;}
.y131{bottom:184.035000px;}
.y12f{bottom:185.145000px;}
.y183{bottom:186.330000px;}
.yc9{bottom:187.050000px;}
.y15a{bottom:187.950000px;}
.y132{bottom:188.280000px;}
.y2d{bottom:188.490000px;}
.y110{bottom:188.670000px;}
.y133{bottom:193.290000px;}
.yfc{bottom:194.430000px;}
.y119{bottom:196.410000px;}
.y1b7{bottom:198.570000px;}
.y15b{bottom:204.690000px;}
.y18e{bottom:206.100000px;}
.y182{bottom:207.390000px;}
.yc8{bottom:208.110000px;}
.y2c{bottom:209.550000px;}
.y10f{bottom:209.730000px;}
.y11a{bottom:214.740000px;}
.yfb{bottom:216.210000px;}
.y137{bottom:217.830000px;}
.y1b6{bottom:219.630000px;}
.y10e{bottom:226.830000px;}
.y123{bottom:227.520000px;}
.y181{bottom:228.450000px;}
.yc7{bottom:229.170000px;}
.y2b{bottom:230.610000px;}
.y192{bottom:231.555000px;}
.y160{bottom:232.275000px;}
.y11b{bottom:233.070000px;}
.yfa{bottom:237.990000px;}
.y1b5{bottom:240.690000px;}
.y136{bottom:246.855000px;}
.y5d{bottom:247.890000px;}
.y180{bottom:249.690000px;}
.y11c{bottom:251.385000px;}
.yc6{bottom:251.490000px;}
.y2a{bottom:251.670000px;}
.yf9{bottom:259.770000px;}
.y15f{bottom:260.895000px;}
.y1b4{bottom:261.750000px;}
.y11d{bottom:269.670000px;}
.y17f{bottom:271.470000px;}
.y29{bottom:272.730000px;}
.yc5{bottom:273.810000px;}
.yf7{bottom:281.595000px;}
.y1b3{bottom:282.855000px;}
.y17e{bottom:292.575000px;}
.y28{bottom:293.835000px;}
.y121{bottom:294.735000px;}
.yc4{bottom:294.915000px;}
.y5c{bottom:297.435000px;}
.y1b2{bottom:303.915000px;}
.y150{bottom:306.795000px;}
.yc3{bottom:312.015000px;}
.y17d{bottom:314.355000px;}
.y27{bottom:314.895000px;}
.y5b{bottom:318.495000px;}
.yc2{bottom:319.575000px;}
.y14f{bottom:322.095000px;}
.y1b1{bottom:324.975000px;}
.yf6{bottom:331.095000px;}
.y26{bottom:335.955000px;}
.y17c{bottom:336.135000px;}
.y5a{bottom:339.555000px;}
.yc1{bottom:339.915000px;}
.y1b0{bottom:346.035000px;}
.yf5{bottom:352.155000px;}
.ybe{bottom:352.335000px;}
.y14e{bottom:352.515000px;}
.y25{bottom:357.015000px;}
.y17b{bottom:357.195000px;}
.ybf{bottom:357.915000px;}
.y59{bottom:360.615000px;}
.yc0{bottom:365.655000px;}
.y1af{bottom:367.095000px;}
.yf4{bottom:373.215000px;}
.y24{bottom:378.075000px;}
.y17a{bottom:378.435000px;}
.y58{bottom:381.675000px;}
.y7e{bottom:382.035000px;}
.ybc{bottom:382.395000px;}
.y14c{bottom:383.115000px;}
.ybd{bottom:387.975000px;}
.y1ae{bottom:388.155000px;}
.yf3{bottom:394.275000px;}
.y23{bottom:399.135000px;}
.y179{bottom:400.215000px;}
.y57{bottom:402.735000px;}
.y7d{bottom:403.095000px;}
.ybb{bottom:404.355000px;}
.y1ad{bottom:409.215000px;}
.y14a{bottom:413.535000px;}
.y93{bottom:414.615000px;}
.yf2{bottom:418.575000px;}
.y22{bottom:420.195000px;}
.y178{bottom:421.995000px;}
.y56{bottom:423.795000px;}
.y7c{bottom:424.155000px;}
.yb9{bottom:426.315000px;}
.y1ac{bottom:430.275000px;}
.yba{bottom:431.895000px;}
.y92{bottom:435.675000px;}
.yf1{bottom:440.355000px;}
.y21{bottom:441.255000px;}
.y177{bottom:443.235000px;}
.y55{bottom:444.855000px;}
.y7b{bottom:445.215000px;}
.y148{bottom:445.395000px;}
.yb8{bottom:448.455000px;}
.y1ab{bottom:451.335000px;}
.y91{bottom:456.735000px;}
.yf0{bottom:462.135000px;}
.y20{bottom:462.315000px;}
.y176{bottom:465.015000px;}
.y54{bottom:465.915000px;}
.y7a{bottom:466.275000px;}
.yb6{bottom:469.515000px;}
.y1aa{bottom:472.395000px;}
.yb7{bottom:475.095000px;}
.y147{bottom:476.355000px;}
.y90{bottom:477.795000px;}
.y1f{bottom:483.375000px;}
.yef{bottom:483.915000px;}
.y175{bottom:486.795000px;}
.y53{bottom:486.975000px;}
.y79{bottom:487.335000px;}
.yb4{bottom:491.475000px;}
.y1a9{bottom:493.455000px;}
.yb5{bottom:497.055000px;}
.y146{bottom:497.415000px;}
.y8f{bottom:498.675000px;}
.y1e{bottom:504.435000px;}
.yee{bottom:505.695000px;}
.y10d{bottom:505.875000px;}
.y174{bottom:507.855000px;}
.y52{bottom:508.035000px;}
.y78{bottom:508.395000px;}
.y1a8{bottom:514.515000px;}
.yb3{bottom:517.395000px;}
.y145{bottom:518.475000px;}
.y8e{bottom:519.735000px;}
.y10c{bottom:520.995000px;}
.y1d{bottom:525.495000px;}
.yed{bottom:527.475000px;}
.y173{bottom:528.915000px;}
.y51{bottom:529.095000px;}
.y77{bottom:529.455000px;}
.y1a7{bottom:535.395000px;}
.y144{bottom:539.535000px;}
.y10b{bottom:542.775000px;}
.yb2{bottom:542.955000px;}
.y1c{bottom:546.555000px;}
.yeb{bottom:549.435000px;}
.y8d{bottom:549.795000px;}
.y172{bottom:549.975000px;}
.y50{bottom:550.155000px;}
.y76{bottom:550.515000px;}
.y1a6{bottom:556.455000px;}
.y143{bottom:560.595000px;}
.yb1{bottom:564.015000px;}
.y10a{bottom:564.585000px;}
.y1b{bottom:567.645000px;}
.y8c{bottom:570.885000px;}
.y171{bottom:571.065000px;}
.y4f{bottom:571.245000px;}
.y75{bottom:571.605000px;}
.y1a5{bottom:577.545000px;}
.yea{bottom:577.905000px;}
.y142{bottom:581.685000px;}
.yb0{bottom:585.105000px;}
.y109{bottom:586.365000px;}
.y1a{bottom:591.225000px;}
.y8b{bottom:591.945000px;}
.y170{bottom:592.125000px;}
.y4e{bottom:592.305000px;}
.y74{bottom:592.665000px;}
.y1a4{bottom:598.605000px;}
.ye9{bottom:598.965000px;}
.y141{bottom:602.745000px;}
.yaf{bottom:606.165000px;}
.y108{bottom:608.145000px;}
.y8a{bottom:613.005000px;}
.y16f{bottom:613.185000px;}
.y4d{bottom:613.365000px;}
.y73{bottom:613.725000px;}
.y1a3{bottom:619.665000px;}
.ye8{bottom:620.025000px;}
.y19{bottom:621.105000px;}
.y140{bottom:623.805000px;}
.yae{bottom:627.225000px;}
.y71{bottom:628.845000px;}
.y89{bottom:634.065000px;}
.y16e{bottom:634.245000px;}
.y4c{bottom:634.425000px;}
.y1a2{bottom:640.725000px;}
.y13f{bottom:640.905000px;}
.ye7{bottom:641.085000px;}
.y151{bottom:641.160000px;}
.y18{bottom:642.165000px;}
.yad{bottom:648.285000px;}
.y88{bottom:655.125000px;}
.y16d{bottom:655.305000px;}
.y4b{bottom:655.485000px;}
.y107{bottom:657.645000px;}
.y1a1{bottom:661.785000px;}
.ye6{bottom:662.145000px;}
.y17{bottom:663.225000px;}
.yac{bottom:669.345000px;}
.y87{bottom:676.185000px;}
.y16c{bottom:676.365000px;}
.y4a{bottom:676.545000px;}
.y106{bottom:678.705000px;}
.y1a0{bottom:682.845000px;}
.ye5{bottom:683.205000px;}
.y16{bottom:684.285000px;}
.yab{bottom:690.405000px;}
.y86{bottom:697.245000px;}
.y16b{bottom:697.425000px;}
.y49{bottom:697.605000px;}
.y105{bottom:699.765000px;}
.y19f{bottom:703.905000px;}
.ye4{bottom:704.265000px;}
.y15{bottom:705.345000px;}
.yaa{bottom:711.465000px;}
.y85{bottom:718.305000px;}
.y16a{bottom:718.485000px;}
.y48{bottom:719.565000px;}
.y104{bottom:720.825000px;}
.y19e{bottom:724.965000px;}
.ye3{bottom:725.325000px;}
.y14{bottom:726.405000px;}
.ya9{bottom:732.525000px;}
.y70{bottom:734.865000px;}
.y84{bottom:739.365000px;}
.y169{bottom:739.545000px;}
.y47{bottom:741.345000px;}
.y103{bottom:741.885000px;}
.y19d{bottom:746.025000px;}
.ye2{bottom:746.385000px;}
.y13{bottom:747.465000px;}
.ya8{bottom:753.585000px;}
.y83{bottom:760.425000px;}
.y168{bottom:760.605000px;}
.y102{bottom:762.945000px;}
.y46{bottom:763.125000px;}
.y19c{bottom:767.085000px;}
.ye1{bottom:767.445000px;}
.y12{bottom:768.525000px;}
.ya7{bottom:774.645000px;}
.y82{bottom:781.485000px;}
.y167{bottom:781.665000px;}
.y101{bottom:784.005000px;}
.y45{bottom:784.365000px;}
.y19b{bottom:788.145000px;}
.ye0{bottom:788.325000px;}
.y11{bottom:789.585000px;}
.ya6{bottom:795.705000px;}
.y81{bottom:802.545000px;}
.y166{bottom:802.725000px;}
.y100{bottom:805.065000px;}
.y44{bottom:806.145000px;}
.y19a{bottom:809.205000px;}
.ydf{bottom:809.385000px;}
.y10{bottom:810.645000px;}
.ya5{bottom:816.765000px;}
.y6d{bottom:819.825000px;}
.y80{bottom:823.605000px;}
.y165{bottom:823.785000px;}
.yff{bottom:826.125000px;}
.y43{bottom:827.205000px;}
.y199{bottom:830.265000px;}
.yde{bottom:830.445000px;}
.yf{bottom:831.525000px;}
.ya4{bottom:837.825000px;}
.y7f{bottom:841.065000px;}
.yfe{bottom:843.225000px;}
.y112{bottom:843.480000px;}
.y164{bottom:844.845000px;}
.y42{bottom:848.310000px;}
.ydc{bottom:849.210000px;}
.y198{bottom:851.370000px;}
.yda{bottom:852.450000px;}
.ye{bottom:852.630000px;}
.ya3{bottom:854.970000px;}
.ydd{bottom:855.690000px;}
.ydb{bottom:858.210000px;}
.ya2{bottom:862.530000px;}
.y163{bottom:865.950000px;}
.y41{bottom:869.370000px;}
.y197{bottom:872.430000px;}
.yd{bottom:873.870000px;}
.yd9{bottom:874.770000px;}
.y6c{bottom:883.950000px;}
.ya1{bottom:885.570000px;}
.y162{bottom:887.010000px;}
.y40{bottom:890.250000px;}
.y196{bottom:893.490000px;}
.yd8{bottom:895.830000px;}
.yc{bottom:897.090000px;}
.y161{bottom:904.110000px;}
.y188{bottom:904.320000px;}
.ya0{bottom:906.630000px;}
.y3f{bottom:911.310000px;}
.yd7{bottom:912.930000px;}
.y195{bottom:914.550000px;}
.yd5{bottom:916.350000px;}
.yb{bottom:918.150000px;}
.yd6{bottom:920.130000px;}
.yd3{bottom:923.550000px;}
.y9f{bottom:926.250000px;}
.yd4{bottom:926.790000px;}
.y13e{bottom:931.110000px;}
.y3e{bottom:932.370000px;}
.y9e{bottom:933.810000px;}
.y194{bottom:935.610000px;}
.ya{bottom:940.110000px;}
.y13d{bottom:946.230000px;}
.y6b{bottom:947.850000px;}
.yd1{bottom:949.470000px;}
.yd2{bottom:952.710000px;}
.y3d{bottom:953.610000px;}
.y9d{bottom:956.670000px;}
.y9{bottom:962.430000px;}
.y13c{bottom:968.190000px;}
.yd0{bottom:971.970000px;}
.y3c{bottom:975.390000px;}
.y9c{bottom:977.730000px;}
.y8{bottom:987.630000px;}
.y13b{bottom:989.970000px;}
.ycf{bottom:993.930000px;}
.y3b{bottom:996.450000px;}
.y9b{bottom:998.790000px;}
.y13a{bottom:1011.750000px;}
.yce{bottom:1016.070000px;}
.y3a{bottom:1018.230000px;}
.y9a{bottom:1019.850000px;}
.y7{bottom:1021.290000px;}
.y68{bottom:1032.810000px;}
.y138{bottom:1033.530000px;}
.ycd{bottom:1038.390000px;}
.y39{bottom:1039.470000px;}
.y99{bottom:1040.910000px;}
.y38{bottom:1061.250000px;}
.y5{bottom:1061.430000px;}
.y98{bottom:1061.970000px;}
.y37{bottom:1082.310000px;}
.y97{bottom:1083.030000px;}
.y4{bottom:1093.470000px;}
.y36{bottom:1104.090000px;}
.y66{bottom:1117.770000px;}
.y35{bottom:1125.150000px;}
.y3{bottom:1125.690000px;}
.y34{bottom:1146.240000px;}
.y2{bottom:1157.940000px;}
.y33{bottom:1174.140000px;}
.y1{bottom:1192.500000px;}
.y32{bottom:1194.300000px;}
.h28{height:20.880000px;}
.h20{height:20.916000px;}
.h21{height:21.060000px;}
.h29{height:23.580000px;}
.h2b{height:29.700000px;}
.h2c{height:29.880000px;}
.h2a{height:31.140000px;}
.hd{height:42.120000px;}
.hb{height:42.156000px;}
.h1c{height:46.160156px;}
.h23{height:47.344922px;}
.h27{height:47.486250px;}
.h24{height:52.998047px;}
.h1e{height:53.545781px;}
.h16{height:54.305859px;}
.h2{height:56.146289px;}
.h2f{height:56.531250px;}
.h1b{height:57.680156px;}
.h26{height:58.050000px;}
.h7{height:59.439023px;}
.h8{height:59.551172px;}
.h5{height:61.189805px;}
.ha{height:61.423863px;}
.h9{height:62.211094px;}
.hf{height:63.180000px;}
.h10{height:63.216000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h11{height:76.625859px;}
.h19{height:78.025781px;}
.h15{height:78.785859px;}
.h14{height:79.505859px;}
.he{height:84.240000px;}
.h1a{height:84.320156px;}
.h17{height:85.265859px;}
.h12{height:88.825781px;}
.h1f{height:89.585859px;}
.h13{height:89.679023px;}
.h4{height:98.051133px;}
.hc{height:105.300000px;}
.h18{height:109.119023px;}
.h1d{height:120.505781px;}
.h2e{height:256.320000px;}
.h25{height:271.800000px;}
.h2d{height:283.320000px;}
.h22{height:317.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:66.060000px;}
.w3{width:113.796000px;}
.w13{width:120.960000px;}
.w12{width:120.996000px;}
.w11{width:121.176000px;}
.w6{width:128.376000px;}
.w5{width:133.776000px;}
.wb{width:134.460000px;}
.wc{width:134.496000px;}
.wd{width:134.676000px;}
.w7{width:135.000000px;}
.w10{width:140.580000px;}
.w8{width:165.630000px;}
.w9{width:187.950000px;}
.wa{width:282.855000px;}
.we{width:360.000000px;}
.wf{width:426.600000px;}
.w15{width:432.000000px;}
.w14{width:465.300000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4c{left:5.940000px;}
.x6{left:7.740000px;}
.x32{left:21.930000px;}
.x46{left:23.370000px;}
.x51{left:24.405000px;}
.x3{left:28.116000px;}
.x30{left:37.230000px;}
.x22{left:43.379987px;}
.x2f{left:49.245000px;}
.x1{left:53.999987px;}
.x36{left:62.070000px;}
.x45{left:63.510000px;}
.x2{left:74.339987px;}
.x1d{left:76.499987px;}
.x3a{left:78.045000px;}
.x55{left:80.999987px;}
.x13{left:82.619987px;}
.x31{left:86.730000px;}
.x50{left:89.895000px;}
.x53{left:92.130000px;}
.x3e{left:94.065000px;}
.x57{left:95.730000px;}
.x34{left:100.155000px;}
.x48{left:102.450000px;}
.xf{left:105.515987px;}
.x1e{left:106.775987px;}
.x25{left:108.756000px;}
.x41{left:110.085000px;}
.x10{left:111.995987px;}
.x1f{left:114.155987px;}
.x20{left:130.355987px;}
.x4b{left:132.696000px;}
.x14{left:140.435987px;}
.x12{left:153.929987px;}
.x37{left:155.910000px;}
.x33{left:157.710000px;}
.x1b{left:165.809987px;}
.x3b{left:171.900000px;}
.x47{left:177.945000px;}
.x58{left:180.210000px;}
.x1a{left:184.529987px;}
.x4{left:187.950000px;}
.x52{left:197.820000px;}
.x18{left:199.469987px;}
.x42{left:203.910000px;}
.x21{left:205.769987px;}
.x23{left:210.810000px;}
.x1c{left:218.009987px;}
.x4f{left:223.560000px;}
.x19{left:233.849987px;}
.x56{left:240.480000px;}
.x35{left:242.820000px;}
.x26{left:243.930000px;}
.x38{left:249.735000px;}
.x5{left:254.730000px;}
.xb{left:257.609987px;}
.x3c{left:265.755000px;}
.x15{left:267.869987px;}
.x4d{left:273.990000px;}
.x2e{left:276.480000px;}
.x3f{left:281.775000px;}
.x43{left:297.750000px;}
.x39{left:343.590000px;}
.x4a{left:348.914987px;}
.xd{left:354.134987px;}
.x3d{left:359.610000px;}
.x2b{left:373.034987px;}
.x40{left:375.585000px;}
.x27{left:379.335000px;}
.x2d{left:382.754987px;}
.x7{left:389.235000px;}
.x44{left:391.605000px;}
.x4e{left:395.895000px;}
.x24{left:399.495000px;}
.x16{left:401.834987px;}
.xe{left:456.734987px;}
.x28{left:514.545000px;}
.x8{left:518.325000px;}
.x17{left:538.484987px;}
.x2a{left:636.764987px;}
.xc{left:638.924987px;}
.x11{left:643.064987px;}
.x29{left:649.725000px;}
.x9{left:654.045000px;}
.x2c{left:670.469987px;}
.x54{left:672.809987px;}
.xa{left:677.309987px;}
.x49{left:689.549987px;}
@media print{
.vb{vertical-align:-30.720000pt;}
.v14{vertical-align:-21.760000pt;}
.va{vertical-align:-19.840000pt;}
.v3{vertical-align:-10.880000pt;}
.v7{vertical-align:-8.960000pt;}
.v6{vertical-align:-7.680000pt;}
.v11{vertical-align:-6.400000pt;}
.vd{vertical-align:-3.200000pt;}
.vf{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.560000pt;}
.vc{vertical-align:10.880000pt;}
.v1{vertical-align:18.560000pt;}
.v2{vertical-align:19.840000pt;}
.v5{vertical-align:22.400000pt;}
.v8{vertical-align:26.880000pt;}
.v4{vertical-align:31.360000pt;}
.v10{vertical-align:33.920000pt;}
.v12{vertical-align:37.760000pt;}
.ve{vertical-align:44.160000pt;}
.v13{vertical-align:59.520000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls55{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.269333pt;}
.ls59{letter-spacing:-0.220800pt;}
.lsc{letter-spacing:-0.190933pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.156267pt;}
.ls8{letter-spacing:-0.102933pt;}
.ls3d{letter-spacing:-0.095467pt;}
.ls10{letter-spacing:-0.051840pt;}
.ls3f{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.059733pt;}
.ls45{letter-spacing:0.083200pt;}
.ls37{letter-spacing:0.107520pt;}
.ls27{letter-spacing:0.154667pt;}
.lsb{letter-spacing:0.154880pt;}
.ls58{letter-spacing:0.160000pt;}
.ls3e{letter-spacing:0.186667pt;}
.ls3c{letter-spacing:0.194133pt;}
.ls41{letter-spacing:0.206080pt;}
.ls53{letter-spacing:0.257280pt;}
.ls3{letter-spacing:0.272000pt;}
.ls1f{letter-spacing:0.274560pt;}
.lsd{letter-spacing:0.279467pt;}
.ls13{letter-spacing:0.317440pt;}
.ls24{letter-spacing:0.355200pt;}
.ls4d{letter-spacing:0.369920pt;}
.ls34{letter-spacing:0.469120pt;}
.ls52{letter-spacing:0.499840pt;}
.ls1b{letter-spacing:0.639360pt;}
.ls57{letter-spacing:0.800000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls20{letter-spacing:1.351040pt;}
.ls28{letter-spacing:1.576107pt;}
.ls15{letter-spacing:1.597440pt;}
.ls3b{letter-spacing:1.704107pt;}
.ls1{letter-spacing:1.792000pt;}
.ls48{letter-spacing:1.875200pt;}
.ls21{letter-spacing:2.053120pt;}
.ls43{letter-spacing:2.070400pt;}
.ls25{letter-spacing:2.106880pt;}
.ls51{letter-spacing:2.131200pt;}
.ls1d{letter-spacing:2.145280pt;}
.ls31{letter-spacing:2.187520pt;}
.ls3a{letter-spacing:2.240000pt;}
.ls33{letter-spacing:2.294187pt;}
.ls23{letter-spacing:2.344960pt;}
.ls44{letter-spacing:2.515200pt;}
.ls2f{letter-spacing:2.746880pt;}
.ls2e{letter-spacing:2.827520pt;}
.ls32{letter-spacing:3.386880pt;}
.ls49{letter-spacing:6.283307pt;}
.ls40{letter-spacing:6.304640pt;}
.ls54{letter-spacing:6.689280pt;}
.ls50{letter-spacing:8.278400pt;}
.ls9{letter-spacing:10.832640pt;}
.ls1a{letter-spacing:13.605547pt;}
.ls46{letter-spacing:14.035200pt;}
.ls14{letter-spacing:14.305280pt;}
.ls1e{letter-spacing:14.504960pt;}
.ls42{letter-spacing:14.675200pt;}
.ls18{letter-spacing:14.719360pt;}
.ls2a{letter-spacing:14.906880pt;}
.ls2b{letter-spacing:15.034880pt;}
.ls38{letter-spacing:15.053867pt;}
.ls2c{letter-spacing:15.066880pt;}
.ls22{letter-spacing:15.075200pt;}
.ls1c{letter-spacing:16.314880pt;}
.ls16{letter-spacing:16.993280pt;}
.ls47{letter-spacing:17.363200pt;}
.ls4a{letter-spacing:20.438400pt;}
.ls4b{letter-spacing:23.766400pt;}
.ls19{letter-spacing:23.946240pt;}
.ls30{letter-spacing:25.992960pt;}
.ls2d{letter-spacing:37.491627pt;}
.ls29{letter-spacing:37.512960pt;}
.ls56{letter-spacing:37.712640pt;}
.ls39{letter-spacing:49.919360pt;}
.ls17{letter-spacing:50.559360pt;}
.ls11{letter-spacing:58.320640pt;}
.ls12{letter-spacing:60.880640pt;}
.ls4c{letter-spacing:63.359360pt;}
.ls4e{letter-spacing:70.961920pt;}
.lsa{letter-spacing:80.720640pt;}
.ls4f{letter-spacing:92.236587pt;}
.ls26{letter-spacing:121.754880pt;}
.ls35{letter-spacing:123.674880pt;}
.ls36{letter-spacing:179.994880pt;}
.ws8{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws27{word-spacing:-12.800000pt;}
.ws9{word-spacing:-12.284587pt;}
.wsd{word-spacing:-12.199253pt;}
.wsa{word-spacing:-12.064853pt;}
.ws3{word-spacing:-12.005120pt;}
.wsc{word-spacing:-11.953280pt;}
.ws13{word-spacing:-11.909653pt;}
.ws5{word-spacing:-11.902187pt;}
.wsb{word-spacing:-11.839253pt;}
.ws7{word-spacing:-11.814187pt;}
.ws29{word-spacing:-11.784320pt;}
.wse{word-spacing:-11.686400pt;}
.ws18{word-spacing:-11.639040pt;}
.ws20{word-spacing:-10.977280pt;}
.ws1d{word-spacing:-10.720000pt;}
.ws14{word-spacing:-8.353067pt;}
.ws11{word-spacing:-8.166400pt;}
.ws4{word-spacing:-7.810560pt;}
.ws12{word-spacing:-7.040000pt;}
.ws22{word-spacing:-0.051200pt;}
.ws6{word-spacing:0.000000pt;}
.wsf{word-spacing:5.477120pt;}
.ws10{word-spacing:5.702400pt;}
.ws19{word-spacing:5.779200pt;}
.ws17{word-spacing:6.181120pt;}
.ws15{word-spacing:6.341120pt;}
.ws1a{word-spacing:8.467200pt;}
.ws16{word-spacing:8.741120pt;}
.ws1f{word-spacing:38.544000pt;}
.ws28{word-spacing:62.381867pt;}
.ws23{word-spacing:62.483712pt;}
.ws1c{word-spacing:75.919787pt;}
.ws1b{word-spacing:93.578667pt;}
.ws1e{word-spacing:140.427733pt;}
.ws25{word-spacing:161.905707pt;}
.ws21{word-spacing:186.435840pt;}
.ws26{word-spacing:204.427733pt;}
.ws24{word-spacing:212.175147pt;}
._4{margin-left:-1286.994560pt;}
._2{margin-left:-1181.652480pt;}
._3{margin-left:-893.908907pt;}
._5{margin-left:-514.426453pt;}
._35{margin-left:-191.360000pt;}
._32{margin-left:-8.768000pt;}
._3b{margin-left:-7.215360pt;}
._6{margin-left:-2.944000pt;}
._1{margin-left:-1.766400pt;}
._0{width:1.239467pt;}
._9{width:2.240427pt;}
._8{width:3.194667pt;}
._7{width:4.135893pt;}
._a{width:5.296213pt;}
._e{width:6.292907pt;}
._10{width:7.300907pt;}
._f{width:8.233600pt;}
._b{width:9.222400pt;}
._11{width:10.145920pt;}
._31{width:11.752960pt;}
._2f{width:12.961280pt;}
._12{width:13.864320pt;}
._c{width:14.873600pt;}
._d{width:16.254720pt;}
._2a{width:17.246293pt;}
._18{width:19.123200pt;}
._14{width:20.132480pt;}
._33{width:21.566720pt;}
._29{width:23.580160pt;}
._28{width:24.668800pt;}
._3d{width:26.943787pt;}
._27{width:28.366080pt;}
._24{width:29.853440pt;}
._1d{width:34.634240pt;}
._22{width:41.008640pt;}
._25{width:42.336640pt;}
._2e{width:49.136000pt;}
._21{width:50.623360pt;}
._1c{width:53.120000pt;}
._23{width:55.608320pt;}
._16{width:64.700160pt;}
._3c{width:74.372523pt;}
._1b{width:75.855360pt;}
._2d{width:84.726400pt;}
._26{width:86.826240pt;}
._1e{width:93.809920pt;}
._20{width:97.103360pt;}
._2b{width:101.034240pt;}
._19{width:105.177600pt;}
._1f{width:108.295040pt;}
._3a{width:111.428053pt;}
._1a{width:117.342080pt;}
._15{width:134.606080pt;}
._37{width:146.695253pt;}
._13{width:154.507520pt;}
._39{width:158.194560pt;}
._38{width:164.581760pt;}
._17{width:173.755520pt;}
._36{width:179.288320pt;}
._30{width:180.265173pt;}
._2c{width:198.828160pt;}
._34{width:214.674560pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fsa{font-size:43.008000pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:51.200000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yec{bottom:5.760000pt;}
.y5f{bottom:5.920000pt;}
.y149{bottom:8.160000pt;}
.y14d{bottom:9.760000pt;}
.y14b{bottom:10.400000pt;}
.y15e{bottom:12.800000pt;}
.y193{bottom:14.400000pt;}
.y139{bottom:15.200000pt;}
.yf8{bottom:15.360000pt;}
.y135{bottom:15.840000pt;}
.y122{bottom:16.666667pt;}
.y64{bottom:24.634667pt;}
.y5e{bottom:24.640000pt;}
.y67{bottom:24.666667pt;}
.y6f{bottom:24.680000pt;}
.y191{bottom:29.893333pt;}
.y15c{bottom:35.066667pt;}
.y134{bottom:35.106667pt;}
.y63{bottom:43.354667pt;}
.y6a{bottom:43.360000pt;}
.y6e{bottom:43.400000pt;}
.y120{bottom:47.173333pt;}
.y152{bottom:48.093333pt;}
.y6{bottom:53.632000pt;}
.y62{bottom:62.074667pt;}
.y69{bottom:62.080000pt;}
.y18f{bottom:62.813333pt;}
.y153{bottom:62.973333pt;}
.y11e{bottom:64.346667pt;}
.y15d{bottom:71.773333pt;}
.y189{bottom:75.360000pt;}
.y113{bottom:76.866667pt;}
.y154{bottom:77.853333pt;}
.y61{bottom:80.794667pt;}
.y72{bottom:80.800000pt;}
.y190{bottom:81.853333pt;}
.y1bc{bottom:82.912000pt;}
.y65{bottom:88.032000pt;}
.y187{bottom:90.752000pt;}
.y155{bottom:92.706667pt;}
.y31{bottom:92.832000pt;}
.y114{bottom:93.146667pt;}
.y18a{bottom:96.933333pt;}
.y96{bottom:100.512000pt;}
.y1bb{bottom:101.632000pt;}
.y156{bottom:107.586667pt;}
.y115{bottom:109.440000pt;}
.y186{bottom:109.472000pt;}
.ycc{bottom:110.272000pt;}
.y30{bottom:111.552000pt;}
.y18b{bottom:118.493333pt;}
.y95{bottom:119.232000pt;}
.y1ba{bottom:120.352000pt;}
.y11f{bottom:120.573333pt;}
.y157{bottom:122.466667pt;}
.y116{bottom:125.733333pt;}
.y60{bottom:126.112000pt;}
.y185{bottom:128.192000pt;}
.ycb{bottom:128.832000pt;}
.y2f{bottom:130.272000pt;}
.y94{bottom:134.586667pt;}
.y158{bottom:137.346667pt;}
.y1b9{bottom:139.066667pt;}
.y18c{bottom:140.066667pt;}
.y117{bottom:142.013333pt;}
.y184{bottom:146.906667pt;}
.yca{bottom:147.546667pt;}
.y124{bottom:147.653333pt;}
.y2e{bottom:148.826667pt;}
.y111{bottom:148.986667pt;}
.y125{bottom:151.333333pt;}
.y128{bottom:151.360000pt;}
.y159{bottom:152.186667pt;}
.y126{bottom:154.880000pt;}
.y129{bottom:154.906667pt;}
.y12c{bottom:155.013333pt;}
.y127{bottom:157.466667pt;}
.y1b8{bottom:157.786667pt;}
.y12a{bottom:158.266667pt;}
.y118{bottom:158.306667pt;}
.yfd{bottom:159.386667pt;}
.y12d{bottom:159.453333pt;}
.y130{bottom:159.680000pt;}
.y12b{bottom:160.893333pt;}
.y12e{bottom:160.933333pt;}
.y18d{bottom:161.626667pt;}
.y131{bottom:163.586667pt;}
.y12f{bottom:164.573333pt;}
.y183{bottom:165.626667pt;}
.yc9{bottom:166.266667pt;}
.y15a{bottom:167.066667pt;}
.y132{bottom:167.360000pt;}
.y2d{bottom:167.546667pt;}
.y110{bottom:167.706667pt;}
.y133{bottom:171.813333pt;}
.yfc{bottom:172.826667pt;}
.y119{bottom:174.586667pt;}
.y1b7{bottom:176.506667pt;}
.y15b{bottom:181.946667pt;}
.y18e{bottom:183.200000pt;}
.y182{bottom:184.346667pt;}
.yc8{bottom:184.986667pt;}
.y2c{bottom:186.266667pt;}
.y10f{bottom:186.426667pt;}
.y11a{bottom:190.880000pt;}
.yfb{bottom:192.186667pt;}
.y137{bottom:193.626667pt;}
.y1b6{bottom:195.226667pt;}
.y10e{bottom:201.626667pt;}
.y123{bottom:202.240000pt;}
.y181{bottom:203.066667pt;}
.yc7{bottom:203.706667pt;}
.y2b{bottom:204.986667pt;}
.y192{bottom:205.826667pt;}
.y160{bottom:206.466667pt;}
.y11b{bottom:207.173333pt;}
.yfa{bottom:211.546667pt;}
.y1b5{bottom:213.946667pt;}
.y136{bottom:219.426667pt;}
.y5d{bottom:220.346667pt;}
.y180{bottom:221.946667pt;}
.y11c{bottom:223.453333pt;}
.yc6{bottom:223.546667pt;}
.y2a{bottom:223.706667pt;}
.yf9{bottom:230.906667pt;}
.y15f{bottom:231.906667pt;}
.y1b4{bottom:232.666667pt;}
.y11d{bottom:239.706667pt;}
.y17f{bottom:241.306667pt;}
.y29{bottom:242.426667pt;}
.yc5{bottom:243.386667pt;}
.yf7{bottom:250.306667pt;}
.y1b3{bottom:251.426667pt;}
.y17e{bottom:260.066667pt;}
.y28{bottom:261.186667pt;}
.y121{bottom:261.986667pt;}
.yc4{bottom:262.146667pt;}
.y5c{bottom:264.386667pt;}
.y1b2{bottom:270.146667pt;}
.y150{bottom:272.706667pt;}
.yc3{bottom:277.346667pt;}
.y17d{bottom:279.426667pt;}
.y27{bottom:279.906667pt;}
.y5b{bottom:283.106667pt;}
.yc2{bottom:284.066667pt;}
.y14f{bottom:286.306667pt;}
.y1b1{bottom:288.866667pt;}
.yf6{bottom:294.306667pt;}
.y26{bottom:298.626667pt;}
.y17c{bottom:298.786667pt;}
.y5a{bottom:301.826667pt;}
.yc1{bottom:302.146667pt;}
.y1b0{bottom:307.586667pt;}
.yf5{bottom:313.026667pt;}
.ybe{bottom:313.186667pt;}
.y14e{bottom:313.346667pt;}
.y25{bottom:317.346667pt;}
.y17b{bottom:317.506667pt;}
.ybf{bottom:318.146667pt;}
.y59{bottom:320.546667pt;}
.yc0{bottom:325.026667pt;}
.y1af{bottom:326.306667pt;}
.yf4{bottom:331.746667pt;}
.y24{bottom:336.066667pt;}
.y17a{bottom:336.386667pt;}
.y58{bottom:339.266667pt;}
.y7e{bottom:339.586667pt;}
.ybc{bottom:339.906667pt;}
.y14c{bottom:340.546667pt;}
.ybd{bottom:344.866667pt;}
.y1ae{bottom:345.026667pt;}
.yf3{bottom:350.466667pt;}
.y23{bottom:354.786667pt;}
.y179{bottom:355.746667pt;}
.y57{bottom:357.986667pt;}
.y7d{bottom:358.306667pt;}
.ybb{bottom:359.426667pt;}
.y1ad{bottom:363.746667pt;}
.y14a{bottom:367.586667pt;}
.y93{bottom:368.546667pt;}
.yf2{bottom:372.066667pt;}
.y22{bottom:373.506667pt;}
.y178{bottom:375.106667pt;}
.y56{bottom:376.706667pt;}
.y7c{bottom:377.026667pt;}
.yb9{bottom:378.946667pt;}
.y1ac{bottom:382.466667pt;}
.yba{bottom:383.906667pt;}
.y92{bottom:387.266667pt;}
.yf1{bottom:391.426667pt;}
.y21{bottom:392.226667pt;}
.y177{bottom:393.986667pt;}
.y55{bottom:395.426667pt;}
.y7b{bottom:395.746667pt;}
.y148{bottom:395.906667pt;}
.yb8{bottom:398.626667pt;}
.y1ab{bottom:401.186667pt;}
.y91{bottom:405.986667pt;}
.yf0{bottom:410.786667pt;}
.y20{bottom:410.946667pt;}
.y176{bottom:413.346667pt;}
.y54{bottom:414.146667pt;}
.y7a{bottom:414.466667pt;}
.yb6{bottom:417.346667pt;}
.y1aa{bottom:419.906667pt;}
.yb7{bottom:422.306667pt;}
.y147{bottom:423.426667pt;}
.y90{bottom:424.706667pt;}
.y1f{bottom:429.666667pt;}
.yef{bottom:430.146667pt;}
.y175{bottom:432.706667pt;}
.y53{bottom:432.866667pt;}
.y79{bottom:433.186667pt;}
.yb4{bottom:436.866667pt;}
.y1a9{bottom:438.626667pt;}
.yb5{bottom:441.826667pt;}
.y146{bottom:442.146667pt;}
.y8f{bottom:443.266667pt;}
.y1e{bottom:448.386667pt;}
.yee{bottom:449.506667pt;}
.y10d{bottom:449.666667pt;}
.y174{bottom:451.426667pt;}
.y52{bottom:451.586667pt;}
.y78{bottom:451.906667pt;}
.y1a8{bottom:457.346667pt;}
.yb3{bottom:459.906667pt;}
.y145{bottom:460.866667pt;}
.y8e{bottom:461.986667pt;}
.y10c{bottom:463.106667pt;}
.y1d{bottom:467.106667pt;}
.yed{bottom:468.866667pt;}
.y173{bottom:470.146667pt;}
.y51{bottom:470.306667pt;}
.y77{bottom:470.626667pt;}
.y1a7{bottom:475.906667pt;}
.y144{bottom:479.586667pt;}
.y10b{bottom:482.466667pt;}
.yb2{bottom:482.626667pt;}
.y1c{bottom:485.826667pt;}
.yeb{bottom:488.386667pt;}
.y8d{bottom:488.706667pt;}
.y172{bottom:488.866667pt;}
.y50{bottom:489.026667pt;}
.y76{bottom:489.346667pt;}
.y1a6{bottom:494.626667pt;}
.y143{bottom:498.306667pt;}
.yb1{bottom:501.346667pt;}
.y10a{bottom:501.853333pt;}
.y1b{bottom:504.573333pt;}
.y8c{bottom:507.453333pt;}
.y171{bottom:507.613333pt;}
.y4f{bottom:507.773333pt;}
.y75{bottom:508.093333pt;}
.y1a5{bottom:513.373333pt;}
.yea{bottom:513.693333pt;}
.y142{bottom:517.053333pt;}
.yb0{bottom:520.093333pt;}
.y109{bottom:521.213333pt;}
.y1a{bottom:525.533333pt;}
.y8b{bottom:526.173333pt;}
.y170{bottom:526.333333pt;}
.y4e{bottom:526.493333pt;}
.y74{bottom:526.813333pt;}
.y1a4{bottom:532.093333pt;}
.ye9{bottom:532.413333pt;}
.y141{bottom:535.773333pt;}
.yaf{bottom:538.813333pt;}
.y108{bottom:540.573333pt;}
.y8a{bottom:544.893333pt;}
.y16f{bottom:545.053333pt;}
.y4d{bottom:545.213333pt;}
.y73{bottom:545.533333pt;}
.y1a3{bottom:550.813333pt;}
.ye8{bottom:551.133333pt;}
.y19{bottom:552.093333pt;}
.y140{bottom:554.493333pt;}
.yae{bottom:557.533333pt;}
.y71{bottom:558.973333pt;}
.y89{bottom:563.613333pt;}
.y16e{bottom:563.773333pt;}
.y4c{bottom:563.933333pt;}
.y1a2{bottom:569.533333pt;}
.y13f{bottom:569.693333pt;}
.ye7{bottom:569.853333pt;}
.y151{bottom:569.920000pt;}
.y18{bottom:570.813333pt;}
.yad{bottom:576.253333pt;}
.y88{bottom:582.333333pt;}
.y16d{bottom:582.493333pt;}
.y4b{bottom:582.653333pt;}
.y107{bottom:584.573333pt;}
.y1a1{bottom:588.253333pt;}
.ye6{bottom:588.573333pt;}
.y17{bottom:589.533333pt;}
.yac{bottom:594.973333pt;}
.y87{bottom:601.053333pt;}
.y16c{bottom:601.213333pt;}
.y4a{bottom:601.373333pt;}
.y106{bottom:603.293333pt;}
.y1a0{bottom:606.973333pt;}
.ye5{bottom:607.293333pt;}
.y16{bottom:608.253333pt;}
.yab{bottom:613.693333pt;}
.y86{bottom:619.773333pt;}
.y16b{bottom:619.933333pt;}
.y49{bottom:620.093333pt;}
.y105{bottom:622.013333pt;}
.y19f{bottom:625.693333pt;}
.ye4{bottom:626.013333pt;}
.y15{bottom:626.973333pt;}
.yaa{bottom:632.413333pt;}
.y85{bottom:638.493333pt;}
.y16a{bottom:638.653333pt;}
.y48{bottom:639.613333pt;}
.y104{bottom:640.733333pt;}
.y19e{bottom:644.413333pt;}
.ye3{bottom:644.733333pt;}
.y14{bottom:645.693333pt;}
.ya9{bottom:651.133333pt;}
.y70{bottom:653.213333pt;}
.y84{bottom:657.213333pt;}
.y169{bottom:657.373333pt;}
.y47{bottom:658.973333pt;}
.y103{bottom:659.453333pt;}
.y19d{bottom:663.133333pt;}
.ye2{bottom:663.453333pt;}
.y13{bottom:664.413333pt;}
.ya8{bottom:669.853333pt;}
.y83{bottom:675.933333pt;}
.y168{bottom:676.093333pt;}
.y102{bottom:678.173333pt;}
.y46{bottom:678.333333pt;}
.y19c{bottom:681.853333pt;}
.ye1{bottom:682.173333pt;}
.y12{bottom:683.133333pt;}
.ya7{bottom:688.573333pt;}
.y82{bottom:694.653333pt;}
.y167{bottom:694.813333pt;}
.y101{bottom:696.893333pt;}
.y45{bottom:697.213333pt;}
.y19b{bottom:700.573333pt;}
.ye0{bottom:700.733333pt;}
.y11{bottom:701.853333pt;}
.ya6{bottom:707.293333pt;}
.y81{bottom:713.373333pt;}
.y166{bottom:713.533333pt;}
.y100{bottom:715.613333pt;}
.y44{bottom:716.573333pt;}
.y19a{bottom:719.293333pt;}
.ydf{bottom:719.453333pt;}
.y10{bottom:720.573333pt;}
.ya5{bottom:726.013333pt;}
.y6d{bottom:728.733333pt;}
.y80{bottom:732.093333pt;}
.y165{bottom:732.253333pt;}
.yff{bottom:734.333333pt;}
.y43{bottom:735.293333pt;}
.y199{bottom:738.013333pt;}
.yde{bottom:738.173333pt;}
.yf{bottom:739.133333pt;}
.ya4{bottom:744.733333pt;}
.y7f{bottom:747.613333pt;}
.yfe{bottom:749.533333pt;}
.y112{bottom:749.760000pt;}
.y164{bottom:750.973333pt;}
.y42{bottom:754.053333pt;}
.ydc{bottom:754.853333pt;}
.y198{bottom:756.773333pt;}
.yda{bottom:757.733333pt;}
.ye{bottom:757.893333pt;}
.ya3{bottom:759.973333pt;}
.ydd{bottom:760.613333pt;}
.ydb{bottom:762.853333pt;}
.ya2{bottom:766.693333pt;}
.y163{bottom:769.733333pt;}
.y41{bottom:772.773333pt;}
.y197{bottom:775.493333pt;}
.yd{bottom:776.773333pt;}
.yd9{bottom:777.573333pt;}
.y6c{bottom:785.733333pt;}
.ya1{bottom:787.173333pt;}
.y162{bottom:788.453333pt;}
.y40{bottom:791.333333pt;}
.y196{bottom:794.213333pt;}
.yd8{bottom:796.293333pt;}
.yc{bottom:797.413333pt;}
.y161{bottom:803.653333pt;}
.y188{bottom:803.840000pt;}
.ya0{bottom:805.893333pt;}
.y3f{bottom:810.053333pt;}
.yd7{bottom:811.493333pt;}
.y195{bottom:812.933333pt;}
.yd5{bottom:814.533333pt;}
.yb{bottom:816.133333pt;}
.yd6{bottom:817.893333pt;}
.yd3{bottom:820.933333pt;}
.y9f{bottom:823.333333pt;}
.yd4{bottom:823.813333pt;}
.y13e{bottom:827.653333pt;}
.y3e{bottom:828.773333pt;}
.y9e{bottom:830.053333pt;}
.y194{bottom:831.653333pt;}
.ya{bottom:835.653333pt;}
.y13d{bottom:841.093333pt;}
.y6b{bottom:842.533333pt;}
.yd1{bottom:843.973333pt;}
.yd2{bottom:846.853333pt;}
.y3d{bottom:847.653333pt;}
.y9d{bottom:850.373333pt;}
.y9{bottom:855.493333pt;}
.y13c{bottom:860.613333pt;}
.yd0{bottom:863.973333pt;}
.y3c{bottom:867.013333pt;}
.y9c{bottom:869.093333pt;}
.y8{bottom:877.893333pt;}
.y13b{bottom:879.973333pt;}
.ycf{bottom:883.493333pt;}
.y3b{bottom:885.733333pt;}
.y9b{bottom:887.813333pt;}
.y13a{bottom:899.333333pt;}
.yce{bottom:903.173333pt;}
.y3a{bottom:905.093333pt;}
.y9a{bottom:906.533333pt;}
.y7{bottom:907.813333pt;}
.y68{bottom:918.053333pt;}
.y138{bottom:918.693333pt;}
.ycd{bottom:923.013333pt;}
.y39{bottom:923.973333pt;}
.y99{bottom:925.253333pt;}
.y38{bottom:943.333333pt;}
.y5{bottom:943.493333pt;}
.y98{bottom:943.973333pt;}
.y37{bottom:962.053333pt;}
.y97{bottom:962.693333pt;}
.y4{bottom:971.973333pt;}
.y36{bottom:981.413333pt;}
.y66{bottom:993.573333pt;}
.y35{bottom:1000.133333pt;}
.y3{bottom:1000.613333pt;}
.y34{bottom:1018.880000pt;}
.y2{bottom:1029.280000pt;}
.y33{bottom:1043.680000pt;}
.y1{bottom:1060.000000pt;}
.y32{bottom:1061.600000pt;}
.h28{height:18.560000pt;}
.h20{height:18.592000pt;}
.h21{height:18.720000pt;}
.h29{height:20.960000pt;}
.h2b{height:26.400000pt;}
.h2c{height:26.560000pt;}
.h2a{height:27.680000pt;}
.hd{height:37.440000pt;}
.hb{height:37.472000pt;}
.h1c{height:41.031250pt;}
.h23{height:42.084375pt;}
.h27{height:42.210000pt;}
.h24{height:47.109375pt;}
.h1e{height:47.596250pt;}
.h16{height:48.271875pt;}
.h2{height:49.907812pt;}
.h2f{height:50.250000pt;}
.h1b{height:51.271250pt;}
.h26{height:51.600000pt;}
.h7{height:52.834688pt;}
.h8{height:52.934375pt;}
.h5{height:54.390938pt;}
.ha{height:54.598989pt;}
.h9{height:55.298750pt;}
.hf{height:56.160000pt;}
.h10{height:56.192000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h11{height:68.111875pt;}
.h19{height:69.356250pt;}
.h15{height:70.031875pt;}
.h14{height:70.671875pt;}
.he{height:74.880000pt;}
.h1a{height:74.951250pt;}
.h17{height:75.791875pt;}
.h12{height:78.956250pt;}
.h1f{height:79.631875pt;}
.h13{height:79.714687pt;}
.h4{height:87.156562pt;}
.hc{height:93.600000pt;}
.h18{height:96.994688pt;}
.h1d{height:107.116250pt;}
.h2e{height:227.840000pt;}
.h25{height:241.600000pt;}
.h2d{height:251.840000pt;}
.h22{height:281.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:58.720000pt;}
.w3{width:101.152000pt;}
.w13{width:107.520000pt;}
.w12{width:107.552000pt;}
.w11{width:107.712000pt;}
.w6{width:114.112000pt;}
.w5{width:118.912000pt;}
.wb{width:119.520000pt;}
.wc{width:119.552000pt;}
.wd{width:119.712000pt;}
.w7{width:120.000000pt;}
.w10{width:124.960000pt;}
.w8{width:147.226667pt;}
.w9{width:167.066667pt;}
.wa{width:251.426667pt;}
.we{width:320.000000pt;}
.wf{width:379.200000pt;}
.w15{width:384.000000pt;}
.w14{width:413.600000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4c{left:5.280000pt;}
.x6{left:6.880000pt;}
.x32{left:19.493333pt;}
.x46{left:20.773333pt;}
.x51{left:21.693333pt;}
.x3{left:24.992000pt;}
.x30{left:33.093333pt;}
.x22{left:38.559988pt;}
.x2f{left:43.773333pt;}
.x1{left:47.999988pt;}
.x36{left:55.173333pt;}
.x45{left:56.453333pt;}
.x2{left:66.079988pt;}
.x1d{left:67.999988pt;}
.x3a{left:69.373333pt;}
.x55{left:71.999988pt;}
.x13{left:73.439988pt;}
.x31{left:77.093333pt;}
.x50{left:79.906667pt;}
.x53{left:81.893333pt;}
.x3e{left:83.613333pt;}
.x57{left:85.093333pt;}
.x34{left:89.026667pt;}
.x48{left:91.066667pt;}
.xf{left:93.791988pt;}
.x1e{left:94.911988pt;}
.x25{left:96.672000pt;}
.x41{left:97.853333pt;}
.x10{left:99.551988pt;}
.x1f{left:101.471988pt;}
.x20{left:115.871988pt;}
.x4b{left:117.952000pt;}
.x14{left:124.831988pt;}
.x12{left:136.826655pt;}
.x37{left:138.586667pt;}
.x33{left:140.186667pt;}
.x1b{left:147.386655pt;}
.x3b{left:152.800000pt;}
.x47{left:158.173333pt;}
.x58{left:160.186667pt;}
.x1a{left:164.026655pt;}
.x4{left:167.066667pt;}
.x52{left:175.840000pt;}
.x18{left:177.306655pt;}
.x42{left:181.253333pt;}
.x21{left:182.906655pt;}
.x23{left:187.386667pt;}
.x1c{left:193.786655pt;}
.x4f{left:198.720000pt;}
.x19{left:207.866655pt;}
.x56{left:213.760000pt;}
.x35{left:215.840000pt;}
.x26{left:216.826667pt;}
.x38{left:221.986667pt;}
.x5{left:226.426667pt;}
.xb{left:228.986655pt;}
.x3c{left:236.226667pt;}
.x15{left:238.106655pt;}
.x4d{left:243.546667pt;}
.x2e{left:245.760000pt;}
.x3f{left:250.466667pt;}
.x43{left:264.666667pt;}
.x39{left:305.413333pt;}
.x4a{left:310.146655pt;}
.xd{left:314.786655pt;}
.x3d{left:319.653333pt;}
.x2b{left:331.586655pt;}
.x40{left:333.853333pt;}
.x27{left:337.186667pt;}
.x2d{left:340.226655pt;}
.x7{left:345.986667pt;}
.x44{left:348.093333pt;}
.x4e{left:351.906667pt;}
.x24{left:355.106667pt;}
.x16{left:357.186655pt;}
.xe{left:405.986655pt;}
.x28{left:457.373333pt;}
.x8{left:460.733333pt;}
.x17{left:478.653322pt;}
.x2a{left:566.013322pt;}
.xc{left:567.933322pt;}
.x11{left:571.613322pt;}
.x29{left:577.533333pt;}
.x9{left:581.373333pt;}
.x2c{left:595.973322pt;}
.x54{left:598.053322pt;}
.xa{left:602.053322pt;}
.x49{left:612.933322pt;}
}




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