
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_413b8c0f69550933426f35c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_b4365af6221237831bf26a00.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_f4297620b184121b8efe5388.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_7386cbd6b5c95828275b1a3c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_d829d5d24b166afef1ec9b36.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_00ccac8f9509ef5f32062feb.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_db9bbf1913c93c25f92e8713.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d531e10b4142d8c27352d77f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_afa1b0a1480ab30bb77ed072.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v4{vertical-align:-69.840000px;}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls2f{letter-spacing:-0.732000px;}
.ls8{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.618000px;}
.ls9{letter-spacing:-0.370200px;}
.lsa{letter-spacing:-0.326400px;}
.ls1e{letter-spacing:-0.260400px;}
.ls1b{letter-spacing:-0.097800px;}
.ls1a{letter-spacing:-0.094800px;}
.ls18{letter-spacing:-0.052560px;}
.ls1c{letter-spacing:-0.044640px;}
.ls24{letter-spacing:-0.040320px;}
.ls20{letter-spacing:-0.038880px;}
.ls27{letter-spacing:-0.036000px;}
.ls1f{letter-spacing:-0.015120px;}
.lsc{letter-spacing:-0.010800px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.lsf{letter-spacing:0.038880px;}
.ls19{letter-spacing:0.093600px;}
.ls25{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.121200px;}
.ls2b{letter-spacing:0.132000px;}
.ls7{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.195000px;}
.ls17{letter-spacing:0.209400px;}
.ls4{letter-spacing:0.211680px;}
.ls12{letter-spacing:0.223200px;}
.ls15{letter-spacing:0.319680px;}
.ls1{letter-spacing:0.351360px;}
.ls23{letter-spacing:0.357000px;}
.ls5{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.364800px;}
.ls11{letter-spacing:0.385800px;}
.ls16{letter-spacing:0.439680px;}
.ls2d{letter-spacing:0.480000px;}
.ls10{letter-spacing:0.504000px;}
.ls2c{letter-spacing:0.540000px;}
.ls26{letter-spacing:0.563040px;}
.ls13{letter-spacing:0.666720px;}
.lse{letter-spacing:0.696000px;}
.ls2e{letter-spacing:0.708000px;}
.ls0{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.732000px;}
.ls3{letter-spacing:0.732960px;}
.ls2a{letter-spacing:47.466720px;}
.ls14{letter-spacing:64.026720px;}
.ls29{letter-spacing:81.306720px;}
.ls30{letter-spacing:158.004000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa{word-spacing:-59.760000px;}
.ws12{word-spacing:-59.662200px;}
.ws8{word-spacing:-14.958600px;}
.wsf{word-spacing:-13.512000px;}
.ws15{word-spacing:-13.504200px;}
.ws9{word-spacing:-13.370400px;}
.ws14{word-spacing:-13.342200px;}
.ws19{word-spacing:-13.279200px;}
.ws17{word-spacing:-13.268400px;}
.wsc{word-spacing:-13.240800px;}
.ws4{word-spacing:-13.160400px;}
.ws7{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.ws11{word-spacing:-13.132080px;}
.ws18{word-spacing:-13.111200px;}
.ws13{word-spacing:-13.108320px;}
.ws16{word-spacing:-13.102560px;}
.wsb{word-spacing:-13.094640px;}
.wsd{word-spacing:-13.052400px;}
.wse{word-spacing:-13.049400px;}
.ws10{word-spacing:-12.886800px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws6{word-spacing:0.000000px;}
._11{margin-left:-3.483162px;}
._10{margin-left:-2.468160px;}
._0{margin-left:-1.159200px;}
._5{width:1.190651px;}
._6{width:2.439798px;}
._3{width:4.069272px;}
._2{width:5.100612px;}
._4{width:6.481293px;}
._b{width:8.127599px;}
._f{width:9.511895px;}
._c{width:10.577400px;}
._d{width:12.011999px;}
._7{width:14.521800px;}
._8{width:15.666208px;}
._e{width:16.912200px;}
._15{width:18.465840px;}
._1{width:19.796316px;}
._2c{width:21.394080px;}
._45{width:22.649040px;}
._42{width:23.664960px;}
._a{width:24.888482px;}
._9{width:26.399759px;}
._21{width:28.266480px;}
._1d{width:30.059280px;}
._1f{width:31.314240px;}
._72{width:32.987520px;}
._3d{width:34.302240px;}
._35{width:35.676720px;}
._4f{width:36.871920px;}
._66{width:38.604960px;}
._3e{width:39.800160px;}
._5c{width:41.712480px;}
._28{width:43.326000px;}
._17{width:44.401680px;}
._62{width:46.971360px;}
._18{width:48.166560px;}
._19{width:50.198400px;}
._3a{width:52.170480px;}
._69{width:53.246160px;}
._25{width:54.522000px;}
._2f{width:56.174400px;}
._4a{width:57.907440px;}
._41{width:59.286469px;}
._3b{width:60.955200px;}
._32{width:62.449200px;}
._40{width:63.823680px;}
._16{width:64.959120px;}
._1b{width:66.751920px;}
._6a{width:68.544720px;}
._31{width:70.043269px;}
._79{width:71.382448px;}
._4b{width:72.488880px;}
._44{width:73.803600px;}
._7a{width:75.606709px;}
._54{width:76.612320px;}
._49{width:77.747760px;}
._1a{width:79.182000px;}
._71{width:81.632160px;}
._6c{width:82.707840px;}
._36{width:85.401589px;}
._22{width:86.950800px;}
._59{width:87.966720px;}
._20{width:90.058320px;}
._57{width:91.313280px;}
._63{width:92.692309px;}
._43{width:94.062240px;}
._55{width:96.870960px;}
._46{width:98.424720px;}
._30{width:100.576080px;}
._4d{width:101.592000px;}
._5d{width:103.265280px;}
._68{width:106.074000px;}
._4e{width:107.807040px;}
._12{width:110.137680px;}
._3c{width:112.946400px;}
._77{width:114.141600px;}
._61{width:115.456320px;}
._78{width:117.069840px;}
._23{width:118.802880px;}
._13{width:123.703200px;}
._74{width:125.436240px;}
._1e{width:127.109520px;}
._27{width:128.244960px;}
._29{width:131.830560px;}
._6d{width:135.834480px;}
._60{width:137.687040px;}
._64{width:139.181040px;}
._34{width:141.272640px;}
._2e{width:143.184960px;}
._73{width:146.232720px;}
._75{width:147.253189px;}
._48{width:148.921920px;}
._5b{width:149.937840px;}
._38{width:151.312320px;}
._2d{width:152.985600px;}
._6f{width:155.674800px;}
._56{width:156.750480px;}
._70{width:158.961600px;}
._67{width:162.790789px;}
._1c{width:164.041200px;}
._6b{width:165.355920px;}
._5a{width:166.551120px;}
._65{width:169.598880px;}
._51{width:171.455989px;}
._50{width:172.467360px;}
._26{width:180.774000px;}
._37{width:187.706160px;}
._39{width:189.563269px;}
._4c{width:191.291760px;}
._2a{width:192.307680px;}
._58{width:195.833520px;}
._33{width:199.419120px;}
._5e{width:200.798149px;}
._47{width:205.335360px;}
._14{width:211.371120px;}
._6e{width:216.988560px;}
._53{width:221.530320px;}
._52{width:223.681680px;}
._2b{width:232.466400px;}
._24{width:251.171280px;}
._3f{width:263.601360px;}
._76{width:277.405920px;}
._5f{width:290.015280px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ya5{bottom:7.740000px;}
.y96{bottom:7.920000px;}
.y143{bottom:7.950000px;}
.yb1{bottom:8.640000px;}
.yab{bottom:8.820000px;}
.ybe{bottom:9.180000px;}
.y114{bottom:25.374000px;}
.ya4{bottom:25.380000px;}
.y142{bottom:25.410000px;}
.y138{bottom:25.425000px;}
.yf6{bottom:25.554000px;}
.y94{bottom:25.560000px;}
.yef{bottom:25.590000px;}
.y137{bottom:25.605000px;}
.yb0{bottom:26.280000px;}
.yaa{bottom:26.460000px;}
.ybd{bottom:26.820000px;}
.y113{bottom:43.014000px;}
.y97{bottom:43.020000px;}
.yed{bottom:43.050000px;}
.ya1{bottom:43.065000px;}
.y93{bottom:43.200000px;}
.yee{bottom:43.230000px;}
.y120{bottom:43.245000px;}
.yac{bottom:43.920000px;}
.yb7{bottom:43.965000px;}
.ya9{bottom:44.100000px;}
.ybb{bottom:44.274000px;}
.ybc{bottom:44.454000px;}
.y115{bottom:60.474000px;}
.y13b{bottom:60.480000px;}
.yf3{bottom:60.525000px;}
.y112{bottom:60.654000px;}
.y92{bottom:60.660000px;}
.yd6{bottom:60.690000px;}
.y9f{bottom:60.705000px;}
.yb3{bottom:60.840000px;}
.y11f{bottom:60.885000px;}
.yaf{bottom:61.380000px;}
.ya8{bottom:61.560000px;}
.yb6{bottom:61.605000px;}
.y2{bottom:73.296000px;}
.y28{bottom:74.196000px;}
.y111{bottom:78.114000px;}
.yd8{bottom:78.120000px;}
.y9d{bottom:78.165000px;}
.y91{bottom:78.300000px;}
.yec{bottom:78.330000px;}
.y9e{bottom:78.345000px;}
.yae{bottom:79.020000px;}
.yb8{bottom:79.065000px;}
.ya7{bottom:79.200000px;}
.yb5{bottom:79.245000px;}
.y110{bottom:95.754000px;}
.y95{bottom:95.760000px;}
.y9c{bottom:95.805000px;}
.y90{bottom:95.940000px;}
.yeb{bottom:95.970000px;}
.yc4{bottom:95.985000px;}
.y1{bottom:101.376000px;}
.yba{bottom:111.816000px;}
.y1c2{bottom:111.996000px;}
.y10e{bottom:113.214000px;}
.ydb{bottom:113.220000px;}
.y10f{bottom:113.394000px;}
.ya3{bottom:113.400000px;}
.y9b{bottom:113.445000px;}
.yf1{bottom:113.580000px;}
.y11e{bottom:113.625000px;}
.y1ea{bottom:115.236000px;}
.y151{bottom:115.956000px;}
.yd4{bottom:118.116000px;}
.ye5{bottom:123.696000px;}
.yf5{bottom:125.856000px;}
.y1c1{bottom:129.636000px;}
.y10d{bottom:130.854000px;}
.y119{bottom:130.860000px;}
.ya0{bottom:130.905000px;}
.yd1{bottom:131.040000px;}
.y9a{bottom:131.085000px;}
.y10a{bottom:131.256000px;}
.y121{bottom:132.165000px;}
.y1e9{bottom:132.876000px;}
.y53{bottom:133.056000px;}
.y150{bottom:133.596000px;}
.y179{bottom:137.736000px;}
.y7c{bottom:140.796000px;}
.ye4{bottom:141.336000px;}
.y1c0{bottom:147.276000px;}
.y10c{bottom:148.494000px;}
.yd0{bottom:148.500000px;}
.y108{bottom:148.530000px;}
.y99{bottom:148.545000px;}
.y11c{bottom:148.680000px;}
.yc3{bottom:148.725000px;}
.y19c{bottom:149.256000px;}
.y52{bottom:150.690000px;}
.y14f{bottom:151.230000px;}
.y13a{bottom:154.470000px;}
.y178{bottom:155.370000px;}
.y7b{bottom:158.250000px;}
.ye3{bottom:158.970000px;}
.y1e8{bottom:159.330000px;}
.yd3{bottom:162.930000px;}
.y10b{bottom:166.134000px;}
.yce{bottom:166.140000px;}
.y107{bottom:166.170000px;}
.yc2{bottom:166.185000px;}
.y11b{bottom:166.320000px;}
.y19b{bottom:166.890000px;}
.y51{bottom:168.330000px;}
.yf4{bottom:170.850000px;}
.y177{bottom:173.010000px;}
.y1bf{bottom:173.730000px;}
.yb9{bottom:175.530000px;}
.y126{bottom:175.710000px;}
.y7a{bottom:176.790000px;}
.y1e7{bottom:176.970000px;}
.y26{bottom:178.950000px;}
.ycf{bottom:183.600000px;}
.ycd{bottom:183.780000px;}
.y106{bottom:183.810000px;}
.y19a{bottom:184.350000px;}
.y14e{bottom:186.690000px;}
.y8d{bottom:188.490000px;}
.y1be{bottom:191.370000px;}
.y125{bottom:193.350000px;}
.ye2{bottom:194.430000px;}
.y79{bottom:195.150000px;}
.y25{bottom:196.590000px;}
.y176{bottom:199.470000px;}
.ycc{bottom:201.240000px;}
.y105{bottom:201.270000px;}
.y1e6{bottom:203.610000px;}
.y50{bottom:203.790000px;}
.y14d{bottom:204.330000px;}
.y8c{bottom:206.130000px;}
.y124{bottom:210.990000px;}
.y199{bottom:211.350000px;}
.ye1{bottom:212.070000px;}
.y78{bottom:213.510000px;}
.y24{bottom:214.050000px;}
.y1bd{bottom:218.010000px;}
.ycb{bottom:218.880000px;}
.y104{bottom:218.910000px;}
.y1e5{bottom:221.250000px;}
.y4f{bottom:221.430000px;}
.y8b{bottom:223.770000px;}
.y123{bottom:228.630000px;}
.y23{bottom:231.690000px;}
.y77{bottom:231.870000px;}
.y175{bottom:235.110000px;}
.y1bc{bottom:235.650000px;}
.yca{bottom:236.550000px;}
.y4e{bottom:239.070000px;}
.y14c{bottom:239.970000px;}
.y8a{bottom:241.410000px;}
.ye0{bottom:244.290000px;}
.y122{bottom:246.270000px;}
.y1e4{bottom:247.710000px;}
.y198{bottom:248.250000px;}
.y22{bottom:249.330000px;}
.y76{bottom:250.410000px;}
.y139{bottom:252.030000px;}
.y174{bottom:252.750000px;}
.yc8{bottom:254.010000px;}
.yc9{bottom:254.190000px;}
.y89{bottom:258.870000px;}
.yd2{bottom:260.670000px;}
.y1bb{bottom:262.110000px;}
.y1e3{bottom:265.350000px;}
.y4d{bottom:265.890000px;}
.y14b{bottom:266.430000px;}
.y21{bottom:266.790000px;}
.yf2{bottom:268.590000px;}
.y75{bottom:268.770000px;}
.y173{bottom:270.390000px;}
.yc7{bottom:271.650000px;}
.yb4{bottom:274.170000px;}
.y88{bottom:276.510000px;}
.y11d{bottom:279.030000px;}
.y1ba{bottom:279.750000px;}
.y20{bottom:284.430000px;}
.y172{bottom:288.030000px;}
.y1e2{bottom:291.990000px;}
.y197{bottom:292.710000px;}
.y136{bottom:297.030000px;}
.y1b9{bottom:297.390000px;}
.y14a{bottom:302.070000px;}
.y4c{bottom:302.970000px;}
.y87{bottom:303.330000px;}
.y74{bottom:305.310000px;}
.y1e1{bottom:309.675000px;}
.y1b8{bottom:315.075000px;}
.y109{bottom:316.875000px;}
.y149{bottom:319.755000px;}
.y1f{bottom:319.935000px;}
.y4b{bottom:320.655000px;}
.y171{bottom:323.535000px;}
.y196{bottom:329.835000px;}
.y73{bottom:331.815000px;}
.y1e0{bottom:336.135000px;}
.y148{bottom:337.395000px;}
.y1e{bottom:337.575000px;}
.y4a{bottom:338.115000px;}
.y170{bottom:341.175000px;}
.y1b7{bottom:341.535000px;}
.y135{bottom:341.895000px;}
.y86{bottom:351.615000px;}
.y1df{bottom:353.775000px;}
.y147{bottom:354.855000px;}
.y1d{bottom:355.215000px;}
.y195{bottom:356.835000px;}
.yc6{bottom:358.455000px;}
.y16f{bottom:358.815000px;}
.y1b6{bottom:359.175000px;}
.y72{bottom:367.455000px;}
.y85{bottom:369.255000px;}
.yb2{bottom:372.675000px;}
.y1c{bottom:372.855000px;}
.y49{bottom:373.755000px;}
.y16e{bottom:376.275000px;}
.y1b5{bottom:376.815000px;}
.y1de{bottom:380.235000px;}
.y71{bottom:385.815000px;}
.y134{bottom:386.895000px;}
.y146{bottom:387.795000px;}
.y1b{bottom:390.495000px;}
.y48{bottom:391.395000px;}
.y194{bottom:394.095000px;}
.y1dd{bottom:397.875000px;}
.y1b4{bottom:403.275000px;}
.y70{bottom:404.175000px;}
.y84{bottom:404.895000px;}
.y1a{bottom:407.955000px;}
.y11a{bottom:411.915000px;}
.yf0{bottom:418.935000px;}
.y1b3{bottom:420.915000px;}
.y6f{bottom:422.715000px;}
.y1dc{bottom:424.515000px;}
.y19{bottom:425.595000px;}
.y47{bottom:426.855000px;}
.y16d{bottom:429.555000px;}
.y83{bottom:436.935000px;}
.y1b2{bottom:438.555000px;}
.y6e{bottom:441.075000px;}
.y193{bottom:442.335000px;}
.y46{bottom:444.495000px;}
.y16c{bottom:447.015000px;}
.y103{bottom:449.715000px;}
.y145{bottom:450.435000px;}
.y1db{bottom:450.975000px;}
.y6d{bottom:459.435000px;}
.y192{bottom:459.975000px;}
.y18{bottom:461.055000px;}
.y45{bottom:462.135000px;}
.y16b{bottom:464.655000px;}
.y1b1{bottom:465.015000px;}
.y1da{bottom:468.615000px;}
.y191{bottom:478.515000px;}
.y17{bottom:478.695000px;}
.y16a{bottom:482.295000px;}
.y1b0{bottom:482.655000px;}
.y6c{bottom:486.975000px;}
.yad{bottom:488.055000px;}
.y1d9{bottom:495.255000px;}
.y190{bottom:495.975000px;}
.y16{bottom:496.335000px;}
.y44{bottom:497.595000px;}
.y1af{bottom:500.295000px;}
.y133{bottom:505.875000px;}
.y169{bottom:508.755000px;}
.y144{bottom:512.895000px;}
.y15{bottom:513.975000px;}
.y18f{bottom:514.515000px;}
.y43{bottom:515.235000px;}
.y6b{bottom:522.435000px;}
.y132{bottom:523.515000px;}
.y1ae{bottom:526.755000px;}
.y18e{bottom:531.975000px;}
.y1d8{bottom:539.355000px;}
.y6a{bottom:540.975000px;}
.y168{bottom:544.395000px;}
.y14{bottom:549.435000px;}
.y131{bottom:549.975000px;}
.y42{bottom:550.875000px;}
.y69{bottom:558.435000px;}
.y18d{bottom:559.695000px;}
.y167{bottom:562.035000px;}
.y1d7{bottom:565.995000px;}
.y13{bottom:567.075000px;}
.y41{bottom:568.515000px;}
.yea{bottom:569.415000px;}
.y1ad{bottom:571.035000px;}
.y141{bottom:575.355000px;}
.y68{bottom:576.975000px;}
.y166{bottom:579.675000px;}
.y1d6{bottom:583.665000px;}
.y12{bottom:584.745000px;}
.y40{bottom:586.005000px;}
.ya6{bottom:586.545000px;}
.y130{bottom:586.905000px;}
.y1ac{bottom:588.705000px;}
.y67{bottom:595.365000px;}
.y18c{bottom:596.805000px;}
.y165{bottom:597.165000px;}
.y118{bottom:597.705000px;}
.y1ab{bottom:606.165000px;}
.y1d5{bottom:610.125000px;}
.ydf{bottom:612.105000px;}
.y66{bottom:613.725000px;}
.y18b{bottom:614.445000px;}
.y11{bottom:620.205000px;}
.y3f{bottom:621.645000px;}
.y12f{bottom:623.445000px;}
.y1d4{bottom:627.765000px;}
.yde{bottom:629.745000px;}
.y18a{bottom:631.905000px;}
.y164{bottom:632.805000px;}
.y10{bottom:637.845000px;}
.y3e{bottom:639.285000px;}
.y12e{bottom:641.085000px;}
.y65{bottom:641.265000px;}
.ydd{bottom:647.385000px;}
.yc5{bottom:649.545000px;}
.y163{bottom:650.445000px;}
.y1d3{bottom:654.405000px;}
.yf{bottom:655.485000px;}
.y12d{bottom:658.545000px;}
.ydc{bottom:665.025000px;}
.y189{bottom:667.185000px;}
.y162{bottom:667.905000px;}
.y1d2{bottom:672.045000px;}
.ye{bottom:673.125000px;}
.y3d{bottom:674.745000px;}
.y12c{bottom:676.185000px;}
.y64{bottom:676.725000px;}
.y1aa{bottom:676.905000px;}
.ye9{bottom:684.645000px;}
.ya2{bottom:685.185000px;}
.y161{bottom:685.545000px;}
.y102{bottom:688.065000px;}
.yd{bottom:690.585000px;}
.y3c{bottom:692.385000px;}
.y12b{bottom:693.825000px;}
.y1a9{bottom:694.545000px;}
.y63{bottom:695.085000px;}
.yda{bottom:697.965000px;}
.y1d1{bottom:698.505000px;}
.y188{bottom:702.645000px;}
.y3b{bottom:710.025000px;}
.y12a{bottom:711.285000px;}
.y62{bottom:713.625000px;}
.yc{bottom:717.405000px;}
.y140{bottom:717.945000px;}
.y160{bottom:721.005000px;}
.y1d0{bottom:725.145000px;}
.y129{bottom:728.925000px;}
.y61{bottom:731.985000px;}
.y187{bottom:738.285000px;}
.y15f{bottom:738.645000px;}
.y1cf{bottom:742.785000px;}
.y3a{bottom:745.485000px;}
.y60{bottom:750.345000px;}
.y186{bottom:755.925000px;}
.y15e{bottom:756.285000px;}
.y39{bottom:763.125000px;}
.y128{bottom:764.385000px;}
.y1a8{bottom:765.285000px;}
.yb{bottom:765.825000px;}
.y5f{bottom:768.885000px;}
.y1ce{bottom:769.245000px;}
.y185{bottom:773.565000px;}
.y15d{bottom:773.925000px;}
.y13f{bottom:780.405000px;}
.y38{bottom:780.765000px;}
.yc1{bottom:782.385000px;}
.y1a7{bottom:782.925000px;}
.y117{bottom:783.285000px;}
.y1cd{bottom:786.885000px;}
.y5e{bottom:787.245000px;}
.y184{bottom:791.025000px;}
.y127{bottom:796.605000px;}
.y1a6{bottom:800.565000px;}
.ya{bottom:801.645000px;}
.y101{bottom:807.045000px;}
.y183{bottom:808.665000px;}
.y15c{bottom:809.385000px;}
.y1cc{bottom:813.525000px;}
.y37{bottom:816.225000px;}
.y98{bottom:818.025000px;}
.y5d{bottom:823.785000px;}
.y100{bottom:824.685000px;}
.y15b{bottom:827.025000px;}
.yd9{bottom:830.805000px;}
.y1cb{bottom:831.165000px;}
.y36{bottom:833.865000px;}
.y182{bottom:835.125000px;}
.y9{bottom:837.645000px;}
.y13e{bottom:843.045000px;}
.y15a{bottom:844.665000px;}
.y35{bottom:851.505000px;}
.y1ca{bottom:857.625000px;}
.y5c{bottom:859.290000px;}
.yff{bottom:860.370000px;}
.y159{bottom:862.350000px;}
.y181{bottom:870.990000px;}
.y1c9{bottom:875.310000px;}
.y8{bottom:877.470000px;}
.y5b{bottom:877.650000px;}
.yfe{bottom:878.010000px;}
.y158{bottom:879.810000px;}
.y34{bottom:887.010000px;}
.y1a5{bottom:888.810000px;}
.y1ec{bottom:893.130000px;}
.y7{bottom:895.470000px;}
.y5a{bottom:896.190000px;}
.ye8{bottom:897.630000px;}
.y1c8{bottom:901.770000px;}
.y33{bottom:904.650000px;}
.y13d{bottom:905.550000px;}
.y157{bottom:906.450000px;}
.yfd{bottom:913.110000px;}
.y59{bottom:913.650000px;}
.y180{bottom:919.410000px;}
.y32{bottom:922.290000px;}
.y6{bottom:927.690000px;}
.yfc{bottom:930.750000px;}
.y1a4{bottom:932.910000px;}
.y17f{bottom:937.050000px;}
.y31{bottom:939.930000px;}
.y58{bottom:941.190000px;}
.y156{bottom:941.910000px;}
.y1c7{bottom:946.050000px;}
.y5{bottom:947.130000px;}
.yfb{bottom:948.390000px;}
.y1a3{bottom:950.550000px;}
.y17e{bottom:954.690000px;}
.y155{bottom:959.550000px;}
.y1eb{bottom:963.510000px;}
.yd7{bottom:963.690000px;}
.yfa{bottom:965.850000px;}
.y30{bottom:966.570000px;}
.yc0{bottom:968.010000px;}
.y116{bottom:968.910000px;}
.y17d{bottom:972.150000px;}
.y57{bottom:976.830000px;}
.y154{bottom:977.190000px;}
.yf9{bottom:983.490000px;}
.y4{bottom:985.290000px;}
.y8f{bottom:986.010000px;}
.y1c6{bottom:990.150000px;}
.y56{bottom:994.470000px;}
.y153{bottom:994.830000px;}
.y82{bottom:996.270000px;}
.y17c{bottom:998.790000px;}
.y1c5{bottom:1007.790000px;}
.y3{bottom:1009.950000px;}
.y81{bottom:1013.910000px;}
.y2f{bottom:1014.990000px;}
.yf8{bottom:1016.430000px;}
.ye7{bottom:1016.790000px;}
.y55{bottom:1020.930000px;}
.y1a2{bottom:1021.290000px;}
.y152{bottom:1021.650000px;}
.y2e{bottom:1032.990000px;}
.ye6{bottom:1034.430000px;}
.y1a1{bottom:1038.930000px;}
.y80{bottom:1040.370000px;}
.ybf{bottom:1051.890000px;}
.y17b{bottom:1052.070000px;}
.y1a0{bottom:1056.570000px;}
.y54{bottom:1056.750000px;}
.y17a{bottom:1069.530000px;}
.y2d{bottom:1069.890000px;}
.y7f{bottom:1076.010000px;}
.y1c4{bottom:1078.530000px;}
.yd5{bottom:1078.890000px;}
.y19f{bottom:1083.030000px;}
.y13c{bottom:1087.170000px;}
.y2c{bottom:1087.530000px;}
.y7e{bottom:1094.370000px;}
.y1c3{bottom:1096.170000px;}
.y19e{bottom:1100.670000px;}
.y2b{bottom:1105.170000px;}
.y7d{bottom:1112.730000px;}
.yf7{bottom:1113.990000px;}
.y8e{bottom:1122.630000px;}
.y2a{bottom:1122.810000px;}
.y19d{bottom:1127.490000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h2{height:29.717578px;}
.h6{height:35.477578px;}
.h3{height:39.468516px;}
.h22{height:39.816000px;}
.h19{height:44.100000px;}
.h25{height:44.136000px;}
.h21{height:44.280000px;}
.hd{height:50.597578px;}
.h7{height:51.998203px;}
.h8{height:56.084062px;}
.h5{height:57.636562px;}
.hb{height:61.423863px;}
.h14{height:61.740000px;}
.h26{height:61.776000px;}
.h27{height:61.920000px;}
.ha{height:62.211094px;}
.h13{height:63.000000px;}
.h9{height:68.956875px;}
.h4{height:73.298672px;}
.h1a{height:74.916000px;}
.h28{height:79.380000px;}
.h20{height:96.840000px;}
.h18{height:97.020000px;}
.h17{height:97.056000px;}
.h11{height:97.776000px;}
.h10{height:97.920000px;}
.hc{height:114.480000px;}
.h1d{height:114.516000px;}
.h12{height:114.660000px;}
.h1c{height:131.940000px;}
.hf{height:132.120000px;}
.h1b{height:132.156000px;}
.h1f{height:149.616000px;}
.h1e{height:149.760000px;}
.he{height:167.250000px;}
.h24{height:184.860000px;}
.h15{height:184.890000px;}
.h23{height:237.630000px;}
.h16{height:290.370000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2a{width:55.260000px;}
.w27{width:56.340000px;}
.w16{width:58.176000px;}
.w2d{width:58.896000px;}
.w2c{width:61.020000px;}
.w24{width:71.136000px;}
.w21{width:74.880000px;}
.w1b{width:75.420000px;}
.w26{width:76.716000px;}
.w9{width:77.796000px;}
.w28{width:78.696000px;}
.w7{width:79.740000px;}
.w29{width:80.280000px;}
.w14{width:80.496000px;}
.wd{width:80.640000px;}
.w2b{width:81.000000px;}
.w23{width:82.080000px;}
.w6{width:87.300000px;}
.w3{width:88.236000px;}
.w1d{width:90.576000px;}
.w1f{width:101.700000px;}
.w10{width:104.616000px;}
.w20{width:106.056000px;}
.w22{width:107.136000px;}
.w17{width:107.676000px;}
.wa{width:108.576000px;}
.w13{width:110.700000px;}
.w19{width:111.780000px;}
.w1a{width:113.616000px;}
.wf{width:113.976000px;}
.w1e{width:116.856000px;}
.w4{width:124.596000px;}
.w25{width:125.316000px;}
.w8{width:126.756000px;}
.w15{width:128.160000px;}
.we{width:129.096000px;}
.w1c{width:131.796000px;}
.w18{width:133.056000px;}
.w11{width:133.776000px;}
.w12{width:135.576000px;}
.wb{width:146.016000px;}
.w5{width:166.890000px;}
.wc{width:173.730000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:3.960000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.x15{left:87.155987px;}
.x4{left:95.075987px;}
.x31{left:111.275987px;}
.x5{left:122.075987px;}
.x9{left:157.710000px;}
.x22{left:160.050000px;}
.x17{left:174.090000px;}
.x1d{left:177.150000px;}
.xf{left:178.230000px;}
.x2a{left:194.790000px;}
.x2{left:201.449987px;}
.x2b{left:272.415000px;}
.x23{left:277.815000px;}
.xa{left:283.035000px;}
.x18{left:308.595000px;}
.x1e{left:310.935000px;}
.x10{left:324.975000px;}
.x7{left:349.274987px;}
.x24{left:380.235000px;}
.x2c{left:405.615000px;}
.x16{left:409.034987px;}
.x1f{left:423.615000px;}
.x19{left:444.885000px;}
.xb{left:450.645000px;}
.x2d{left:485.025000px;}
.x25{left:487.005000px;}
.x11{left:499.425000px;}
.xc{left:538.665000px;}
.x1a{left:556.305000px;}
.x26{left:562.605000px;}
.x2e{left:566.025000px;}
.x12{left:580.785000px;}
.x20{left:614.085000px;}
.xd{left:619.125000px;}
.x2f{left:622.050000px;}
.x1b{left:637.530000px;}
.x27{left:670.650000px;}
.x6{left:694.229987px;}
.x30{left:703.770000px;}
.x13{left:710.610000px;}
.xe{left:746.790000px;}
.x28{left:753.450000px;}
.x1c{left:766.410000px;}
.x14{left:779.189987px;}
.x3{left:791.969987px;}
.x21{left:802.259987px;}
@media print{
.v4{vertical-align:-62.080000pt;}
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls2f{letter-spacing:-0.650667pt;}
.ls8{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.549333pt;}
.ls9{letter-spacing:-0.329067pt;}
.lsa{letter-spacing:-0.290133pt;}
.ls1e{letter-spacing:-0.231467pt;}
.ls1b{letter-spacing:-0.086933pt;}
.ls1a{letter-spacing:-0.084267pt;}
.ls18{letter-spacing:-0.046720pt;}
.ls1c{letter-spacing:-0.039680pt;}
.ls24{letter-spacing:-0.035840pt;}
.ls20{letter-spacing:-0.034560pt;}
.ls27{letter-spacing:-0.032000pt;}
.ls1f{letter-spacing:-0.013440pt;}
.lsc{letter-spacing:-0.009600pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.lsf{letter-spacing:0.034560pt;}
.ls19{letter-spacing:0.083200pt;}
.ls25{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.107733pt;}
.ls2b{letter-spacing:0.117333pt;}
.ls7{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.173333pt;}
.ls17{letter-spacing:0.186133pt;}
.ls4{letter-spacing:0.188160pt;}
.ls12{letter-spacing:0.198400pt;}
.ls15{letter-spacing:0.284160pt;}
.ls1{letter-spacing:0.312320pt;}
.ls23{letter-spacing:0.317333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.324267pt;}
.ls11{letter-spacing:0.342933pt;}
.ls16{letter-spacing:0.390827pt;}
.ls2d{letter-spacing:0.426667pt;}
.ls10{letter-spacing:0.448000pt;}
.ls2c{letter-spacing:0.480000pt;}
.ls26{letter-spacing:0.500480pt;}
.ls13{letter-spacing:0.592640pt;}
.lse{letter-spacing:0.618667pt;}
.ls2e{letter-spacing:0.629333pt;}
.ls0{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.650667pt;}
.ls3{letter-spacing:0.651520pt;}
.ls2a{letter-spacing:42.192640pt;}
.ls14{letter-spacing:56.912640pt;}
.ls29{letter-spacing:72.272640pt;}
.ls30{letter-spacing:140.448000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws12{word-spacing:-53.033067pt;}
.ws8{word-spacing:-13.296533pt;}
.wsf{word-spacing:-12.010667pt;}
.ws15{word-spacing:-12.003733pt;}
.ws9{word-spacing:-11.884800pt;}
.ws14{word-spacing:-11.859733pt;}
.ws19{word-spacing:-11.803733pt;}
.ws17{word-spacing:-11.794133pt;}
.wsc{word-spacing:-11.769600pt;}
.ws4{word-spacing:-11.698133pt;}
.ws7{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.ws11{word-spacing:-11.672960pt;}
.ws18{word-spacing:-11.654400pt;}
.ws13{word-spacing:-11.651840pt;}
.ws16{word-spacing:-11.646720pt;}
.wsb{word-spacing:-11.639680pt;}
.wsd{word-spacing:-11.602133pt;}
.wse{word-spacing:-11.599467pt;}
.ws10{word-spacing:-11.454933pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws6{word-spacing:0.000000pt;}
._11{margin-left:-3.096144pt;}
._10{margin-left:-2.193920pt;}
._0{margin-left:-1.030400pt;}
._5{width:1.058356pt;}
._6{width:2.168709pt;}
._3{width:3.617131pt;}
._2{width:4.533878pt;}
._4{width:5.761149pt;}
._b{width:7.224532pt;}
._f{width:8.455018pt;}
._c{width:9.402134pt;}
._d{width:10.677332pt;}
._7{width:12.908266pt;}
._8{width:13.925519pt;}
._e{width:15.033066pt;}
._15{width:16.414080pt;}
._1{width:17.596725pt;}
._2c{width:19.016960pt;}
._45{width:20.132480pt;}
._42{width:21.035520pt;}
._a{width:22.123095pt;}
._9{width:23.466452pt;}
._21{width:25.125760pt;}
._1d{width:26.719360pt;}
._1f{width:27.834880pt;}
._72{width:29.322240pt;}
._3d{width:30.490880pt;}
._35{width:31.712640pt;}
._4f{width:32.775040pt;}
._66{width:34.315520pt;}
._3e{width:35.377920pt;}
._5c{width:37.077760pt;}
._28{width:38.512000pt;}
._17{width:39.468160pt;}
._62{width:41.752320pt;}
._18{width:42.814720pt;}
._19{width:44.620800pt;}
._3a{width:46.373760pt;}
._69{width:47.329920pt;}
._25{width:48.464000pt;}
._2f{width:49.932800pt;}
._4a{width:51.473280pt;}
._41{width:52.699084pt;}
._3b{width:54.182400pt;}
._32{width:55.510400pt;}
._40{width:56.732160pt;}
._16{width:57.741440pt;}
._1b{width:59.335040pt;}
._6a{width:60.928640pt;}
._31{width:62.260684pt;}
._79{width:63.451065pt;}
._4b{width:64.434560pt;}
._44{width:65.603200pt;}
._7a{width:67.205964pt;}
._54{width:68.099840pt;}
._49{width:69.109120pt;}
._1a{width:70.384000pt;}
._71{width:72.561920pt;}
._6c{width:73.518080pt;}
._36{width:75.912524pt;}
._22{width:77.289600pt;}
._59{width:78.192640pt;}
._20{width:80.051840pt;}
._57{width:81.167360pt;}
._63{width:82.393164pt;}
._43{width:83.610880pt;}
._55{width:86.107520pt;}
._46{width:87.488640pt;}
._30{width:89.400960pt;}
._4d{width:90.304000pt;}
._5d{width:91.791360pt;}
._68{width:94.288000pt;}
._4e{width:95.828480pt;}
._12{width:97.900160pt;}
._3c{width:100.396800pt;}
._77{width:101.459200pt;}
._61{width:102.627840pt;}
._78{width:104.062080pt;}
._23{width:105.602560pt;}
._13{width:109.958400pt;}
._74{width:111.498880pt;}
._1e{width:112.986240pt;}
._27{width:113.995520pt;}
._29{width:117.182720pt;}
._6d{width:120.741760pt;}
._60{width:122.388480pt;}
._64{width:123.716480pt;}
._34{width:125.575680pt;}
._2e{width:127.275520pt;}
._73{width:129.984640pt;}
._75{width:130.891724pt;}
._48{width:132.375040pt;}
._5b{width:133.278080pt;}
._38{width:134.499840pt;}
._2d{width:135.987200pt;}
._6f{width:138.377600pt;}
._56{width:139.333760pt;}
._70{width:141.299200pt;}
._67{width:144.702924pt;}
._1c{width:145.814400pt;}
._6b{width:146.983040pt;}
._5a{width:148.045440pt;}
._65{width:150.754560pt;}
._51{width:152.405324pt;}
._50{width:153.304320pt;}
._26{width:160.688000pt;}
._37{width:166.849920pt;}
._39{width:168.500684pt;}
._4c{width:170.037120pt;}
._2a{width:170.940160pt;}
._58{width:174.074240pt;}
._33{width:177.261440pt;}
._5e{width:178.487244pt;}
._47{width:182.520320pt;}
._14{width:187.885440pt;}
._6e{width:192.878720pt;}
._53{width:196.915840pt;}
._52{width:198.828160pt;}
._2b{width:206.636800pt;}
._24{width:223.263360pt;}
._3f{width:234.312320pt;}
._76{width:246.583040pt;}
._5f{width:257.791360pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:6.880000pt;}
.y96{bottom:7.040000pt;}
.y143{bottom:7.066667pt;}
.yb1{bottom:7.680000pt;}
.yab{bottom:7.840000pt;}
.ybe{bottom:8.160000pt;}
.y114{bottom:22.554667pt;}
.ya4{bottom:22.560000pt;}
.y142{bottom:22.586667pt;}
.y138{bottom:22.600000pt;}
.yf6{bottom:22.714667pt;}
.y94{bottom:22.720000pt;}
.yef{bottom:22.746667pt;}
.y137{bottom:22.760000pt;}
.yb0{bottom:23.360000pt;}
.yaa{bottom:23.520000pt;}
.ybd{bottom:23.840000pt;}
.y113{bottom:38.234667pt;}
.y97{bottom:38.240000pt;}
.yed{bottom:38.266667pt;}
.ya1{bottom:38.280000pt;}
.y93{bottom:38.400000pt;}
.yee{bottom:38.426667pt;}
.y120{bottom:38.440000pt;}
.yac{bottom:39.040000pt;}
.yb7{bottom:39.080000pt;}
.ya9{bottom:39.200000pt;}
.ybb{bottom:39.354667pt;}
.ybc{bottom:39.514667pt;}
.y115{bottom:53.754667pt;}
.y13b{bottom:53.760000pt;}
.yf3{bottom:53.800000pt;}
.y112{bottom:53.914667pt;}
.y92{bottom:53.920000pt;}
.yd6{bottom:53.946667pt;}
.y9f{bottom:53.960000pt;}
.yb3{bottom:54.080000pt;}
.y11f{bottom:54.120000pt;}
.yaf{bottom:54.560000pt;}
.ya8{bottom:54.720000pt;}
.yb6{bottom:54.760000pt;}
.y2{bottom:65.152000pt;}
.y28{bottom:65.952000pt;}
.y111{bottom:69.434667pt;}
.yd8{bottom:69.440000pt;}
.y9d{bottom:69.480000pt;}
.y91{bottom:69.600000pt;}
.yec{bottom:69.626667pt;}
.y9e{bottom:69.640000pt;}
.yae{bottom:70.240000pt;}
.yb8{bottom:70.280000pt;}
.ya7{bottom:70.400000pt;}
.yb5{bottom:70.440000pt;}
.y110{bottom:85.114667pt;}
.y95{bottom:85.120000pt;}
.y9c{bottom:85.160000pt;}
.y90{bottom:85.280000pt;}
.yeb{bottom:85.306667pt;}
.yc4{bottom:85.320000pt;}
.y1{bottom:90.112000pt;}
.yba{bottom:99.392000pt;}
.y1c2{bottom:99.552000pt;}
.y10e{bottom:100.634667pt;}
.ydb{bottom:100.640000pt;}
.y10f{bottom:100.794667pt;}
.ya3{bottom:100.800000pt;}
.y9b{bottom:100.840000pt;}
.yf1{bottom:100.960000pt;}
.y11e{bottom:101.000000pt;}
.y1ea{bottom:102.432000pt;}
.y151{bottom:103.072000pt;}
.yd4{bottom:104.992000pt;}
.ye5{bottom:109.952000pt;}
.yf5{bottom:111.872000pt;}
.y1c1{bottom:115.232000pt;}
.y10d{bottom:116.314667pt;}
.y119{bottom:116.320000pt;}
.ya0{bottom:116.360000pt;}
.yd1{bottom:116.480000pt;}
.y9a{bottom:116.520000pt;}
.y10a{bottom:116.672000pt;}
.y121{bottom:117.480000pt;}
.y1e9{bottom:118.112000pt;}
.y53{bottom:118.272000pt;}
.y150{bottom:118.752000pt;}
.y179{bottom:122.432000pt;}
.y7c{bottom:125.152000pt;}
.ye4{bottom:125.632000pt;}
.y1c0{bottom:130.912000pt;}
.y10c{bottom:131.994667pt;}
.yd0{bottom:132.000000pt;}
.y108{bottom:132.026667pt;}
.y99{bottom:132.040000pt;}
.y11c{bottom:132.160000pt;}
.yc3{bottom:132.200000pt;}
.y19c{bottom:132.672000pt;}
.y52{bottom:133.946667pt;}
.y14f{bottom:134.426667pt;}
.y13a{bottom:137.306667pt;}
.y178{bottom:138.106667pt;}
.y7b{bottom:140.666667pt;}
.ye3{bottom:141.306667pt;}
.y1e8{bottom:141.626667pt;}
.yd3{bottom:144.826667pt;}
.y10b{bottom:147.674667pt;}
.yce{bottom:147.680000pt;}
.y107{bottom:147.706667pt;}
.yc2{bottom:147.720000pt;}
.y11b{bottom:147.840000pt;}
.y19b{bottom:148.346667pt;}
.y51{bottom:149.626667pt;}
.yf4{bottom:151.866667pt;}
.y177{bottom:153.786667pt;}
.y1bf{bottom:154.426667pt;}
.yb9{bottom:156.026667pt;}
.y126{bottom:156.186667pt;}
.y7a{bottom:157.146667pt;}
.y1e7{bottom:157.306667pt;}
.y26{bottom:159.066667pt;}
.ycf{bottom:163.200000pt;}
.ycd{bottom:163.360000pt;}
.y106{bottom:163.386667pt;}
.y19a{bottom:163.866667pt;}
.y14e{bottom:165.946667pt;}
.y8d{bottom:167.546667pt;}
.y1be{bottom:170.106667pt;}
.y125{bottom:171.866667pt;}
.ye2{bottom:172.826667pt;}
.y79{bottom:173.466667pt;}
.y25{bottom:174.746667pt;}
.y176{bottom:177.306667pt;}
.ycc{bottom:178.880000pt;}
.y105{bottom:178.906667pt;}
.y1e6{bottom:180.986667pt;}
.y50{bottom:181.146667pt;}
.y14d{bottom:181.626667pt;}
.y8c{bottom:183.226667pt;}
.y124{bottom:187.546667pt;}
.y199{bottom:187.866667pt;}
.ye1{bottom:188.506667pt;}
.y78{bottom:189.786667pt;}
.y24{bottom:190.266667pt;}
.y1bd{bottom:193.786667pt;}
.ycb{bottom:194.560000pt;}
.y104{bottom:194.586667pt;}
.y1e5{bottom:196.666667pt;}
.y4f{bottom:196.826667pt;}
.y8b{bottom:198.906667pt;}
.y123{bottom:203.226667pt;}
.y23{bottom:205.946667pt;}
.y77{bottom:206.106667pt;}
.y175{bottom:208.986667pt;}
.y1bc{bottom:209.466667pt;}
.yca{bottom:210.266667pt;}
.y4e{bottom:212.506667pt;}
.y14c{bottom:213.306667pt;}
.y8a{bottom:214.586667pt;}
.ye0{bottom:217.146667pt;}
.y122{bottom:218.906667pt;}
.y1e4{bottom:220.186667pt;}
.y198{bottom:220.666667pt;}
.y22{bottom:221.626667pt;}
.y76{bottom:222.586667pt;}
.y139{bottom:224.026667pt;}
.y174{bottom:224.666667pt;}
.yc8{bottom:225.786667pt;}
.yc9{bottom:225.946667pt;}
.y89{bottom:230.106667pt;}
.yd2{bottom:231.706667pt;}
.y1bb{bottom:232.986667pt;}
.y1e3{bottom:235.866667pt;}
.y4d{bottom:236.346667pt;}
.y14b{bottom:236.826667pt;}
.y21{bottom:237.146667pt;}
.yf2{bottom:238.746667pt;}
.y75{bottom:238.906667pt;}
.y173{bottom:240.346667pt;}
.yc7{bottom:241.466667pt;}
.yb4{bottom:243.706667pt;}
.y88{bottom:245.786667pt;}
.y11d{bottom:248.026667pt;}
.y1ba{bottom:248.666667pt;}
.y20{bottom:252.826667pt;}
.y172{bottom:256.026667pt;}
.y1e2{bottom:259.546667pt;}
.y197{bottom:260.186667pt;}
.y136{bottom:264.026667pt;}
.y1b9{bottom:264.346667pt;}
.y14a{bottom:268.506667pt;}
.y4c{bottom:269.306667pt;}
.y87{bottom:269.626667pt;}
.y74{bottom:271.386667pt;}
.y1e1{bottom:275.266667pt;}
.y1b8{bottom:280.066667pt;}
.y109{bottom:281.666667pt;}
.y149{bottom:284.226667pt;}
.y1f{bottom:284.386667pt;}
.y4b{bottom:285.026667pt;}
.y171{bottom:287.586667pt;}
.y196{bottom:293.186667pt;}
.y73{bottom:294.946667pt;}
.y1e0{bottom:298.786667pt;}
.y148{bottom:299.906667pt;}
.y1e{bottom:300.066667pt;}
.y4a{bottom:300.546667pt;}
.y170{bottom:303.266667pt;}
.y1b7{bottom:303.586667pt;}
.y135{bottom:303.906667pt;}
.y86{bottom:312.546667pt;}
.y1df{bottom:314.466667pt;}
.y147{bottom:315.426667pt;}
.y1d{bottom:315.746667pt;}
.y195{bottom:317.186667pt;}
.yc6{bottom:318.626667pt;}
.y16f{bottom:318.946667pt;}
.y1b6{bottom:319.266667pt;}
.y72{bottom:326.626667pt;}
.y85{bottom:328.226667pt;}
.yb2{bottom:331.266667pt;}
.y1c{bottom:331.426667pt;}
.y49{bottom:332.226667pt;}
.y16e{bottom:334.466667pt;}
.y1b5{bottom:334.946667pt;}
.y1de{bottom:337.986667pt;}
.y71{bottom:342.946667pt;}
.y134{bottom:343.906667pt;}
.y146{bottom:344.706667pt;}
.y1b{bottom:347.106667pt;}
.y48{bottom:347.906667pt;}
.y194{bottom:350.306667pt;}
.y1dd{bottom:353.666667pt;}
.y1b4{bottom:358.466667pt;}
.y70{bottom:359.266667pt;}
.y84{bottom:359.906667pt;}
.y1a{bottom:362.626667pt;}
.y11a{bottom:366.146667pt;}
.yf0{bottom:372.386667pt;}
.y1b3{bottom:374.146667pt;}
.y6f{bottom:375.746667pt;}
.y1dc{bottom:377.346667pt;}
.y19{bottom:378.306667pt;}
.y47{bottom:379.426667pt;}
.y16d{bottom:381.826667pt;}
.y83{bottom:388.386667pt;}
.y1b2{bottom:389.826667pt;}
.y6e{bottom:392.066667pt;}
.y193{bottom:393.186667pt;}
.y46{bottom:395.106667pt;}
.y16c{bottom:397.346667pt;}
.y103{bottom:399.746667pt;}
.y145{bottom:400.386667pt;}
.y1db{bottom:400.866667pt;}
.y6d{bottom:408.386667pt;}
.y192{bottom:408.866667pt;}
.y18{bottom:409.826667pt;}
.y45{bottom:410.786667pt;}
.y16b{bottom:413.026667pt;}
.y1b1{bottom:413.346667pt;}
.y1da{bottom:416.546667pt;}
.y191{bottom:425.346667pt;}
.y17{bottom:425.506667pt;}
.y16a{bottom:428.706667pt;}
.y1b0{bottom:429.026667pt;}
.y6c{bottom:432.866667pt;}
.yad{bottom:433.826667pt;}
.y1d9{bottom:440.226667pt;}
.y190{bottom:440.866667pt;}
.y16{bottom:441.186667pt;}
.y44{bottom:442.306667pt;}
.y1af{bottom:444.706667pt;}
.y133{bottom:449.666667pt;}
.y169{bottom:452.226667pt;}
.y144{bottom:455.906667pt;}
.y15{bottom:456.866667pt;}
.y18f{bottom:457.346667pt;}
.y43{bottom:457.986667pt;}
.y6b{bottom:464.386667pt;}
.y132{bottom:465.346667pt;}
.y1ae{bottom:468.226667pt;}
.y18e{bottom:472.866667pt;}
.y1d8{bottom:479.426667pt;}
.y6a{bottom:480.866667pt;}
.y168{bottom:483.906667pt;}
.y14{bottom:488.386667pt;}
.y131{bottom:488.866667pt;}
.y42{bottom:489.666667pt;}
.y69{bottom:496.386667pt;}
.y18d{bottom:497.506667pt;}
.y167{bottom:499.586667pt;}
.y1d7{bottom:503.106667pt;}
.y13{bottom:504.066667pt;}
.y41{bottom:505.346667pt;}
.yea{bottom:506.146667pt;}
.y1ad{bottom:507.586667pt;}
.y141{bottom:511.426667pt;}
.y68{bottom:512.866667pt;}
.y166{bottom:515.266667pt;}
.y1d6{bottom:518.813333pt;}
.y12{bottom:519.773333pt;}
.y40{bottom:520.893333pt;}
.ya6{bottom:521.373333pt;}
.y130{bottom:521.693333pt;}
.y1ac{bottom:523.293333pt;}
.y67{bottom:529.213333pt;}
.y18c{bottom:530.493333pt;}
.y165{bottom:530.813333pt;}
.y118{bottom:531.293333pt;}
.y1ab{bottom:538.813333pt;}
.y1d5{bottom:542.333333pt;}
.ydf{bottom:544.093333pt;}
.y66{bottom:545.533333pt;}
.y18b{bottom:546.173333pt;}
.y11{bottom:551.293333pt;}
.y3f{bottom:552.573333pt;}
.y12f{bottom:554.173333pt;}
.y1d4{bottom:558.013333pt;}
.yde{bottom:559.773333pt;}
.y18a{bottom:561.693333pt;}
.y164{bottom:562.493333pt;}
.y10{bottom:566.973333pt;}
.y3e{bottom:568.253333pt;}
.y12e{bottom:569.853333pt;}
.y65{bottom:570.013333pt;}
.ydd{bottom:575.453333pt;}
.yc5{bottom:577.373333pt;}
.y163{bottom:578.173333pt;}
.y1d3{bottom:581.693333pt;}
.yf{bottom:582.653333pt;}
.y12d{bottom:585.373333pt;}
.ydc{bottom:591.133333pt;}
.y189{bottom:593.053333pt;}
.y162{bottom:593.693333pt;}
.y1d2{bottom:597.373333pt;}
.ye{bottom:598.333333pt;}
.y3d{bottom:599.773333pt;}
.y12c{bottom:601.053333pt;}
.y64{bottom:601.533333pt;}
.y1aa{bottom:601.693333pt;}
.ye9{bottom:608.573333pt;}
.ya2{bottom:609.053333pt;}
.y161{bottom:609.373333pt;}
.y102{bottom:611.613333pt;}
.yd{bottom:613.853333pt;}
.y3c{bottom:615.453333pt;}
.y12b{bottom:616.733333pt;}
.y1a9{bottom:617.373333pt;}
.y63{bottom:617.853333pt;}
.yda{bottom:620.413333pt;}
.y1d1{bottom:620.893333pt;}
.y188{bottom:624.573333pt;}
.y3b{bottom:631.133333pt;}
.y12a{bottom:632.253333pt;}
.y62{bottom:634.333333pt;}
.yc{bottom:637.693333pt;}
.y140{bottom:638.173333pt;}
.y160{bottom:640.893333pt;}
.y1d0{bottom:644.573333pt;}
.y129{bottom:647.933333pt;}
.y61{bottom:650.653333pt;}
.y187{bottom:656.253333pt;}
.y15f{bottom:656.573333pt;}
.y1cf{bottom:660.253333pt;}
.y3a{bottom:662.653333pt;}
.y60{bottom:666.973333pt;}
.y186{bottom:671.933333pt;}
.y15e{bottom:672.253333pt;}
.y39{bottom:678.333333pt;}
.y128{bottom:679.453333pt;}
.y1a8{bottom:680.253333pt;}
.yb{bottom:680.733333pt;}
.y5f{bottom:683.453333pt;}
.y1ce{bottom:683.773333pt;}
.y185{bottom:687.613333pt;}
.y15d{bottom:687.933333pt;}
.y13f{bottom:693.693333pt;}
.y38{bottom:694.013333pt;}
.yc1{bottom:695.453333pt;}
.y1a7{bottom:695.933333pt;}
.y117{bottom:696.253333pt;}
.y1cd{bottom:699.453333pt;}
.y5e{bottom:699.773333pt;}
.y184{bottom:703.133333pt;}
.y127{bottom:708.093333pt;}
.y1a6{bottom:711.613333pt;}
.ya{bottom:712.573333pt;}
.y101{bottom:717.373333pt;}
.y183{bottom:718.813333pt;}
.y15c{bottom:719.453333pt;}
.y1cc{bottom:723.133333pt;}
.y37{bottom:725.533333pt;}
.y98{bottom:727.133333pt;}
.y5d{bottom:732.253333pt;}
.y100{bottom:733.053333pt;}
.y15b{bottom:735.133333pt;}
.yd9{bottom:738.493333pt;}
.y1cb{bottom:738.813333pt;}
.y36{bottom:741.213333pt;}
.y182{bottom:742.333333pt;}
.y9{bottom:744.573333pt;}
.y13e{bottom:749.373333pt;}
.y15a{bottom:750.813333pt;}
.y35{bottom:756.893333pt;}
.y1ca{bottom:762.333333pt;}
.y5c{bottom:763.813333pt;}
.yff{bottom:764.773333pt;}
.y159{bottom:766.533333pt;}
.y181{bottom:774.213333pt;}
.y1c9{bottom:778.053333pt;}
.y8{bottom:779.973333pt;}
.y5b{bottom:780.133333pt;}
.yfe{bottom:780.453333pt;}
.y158{bottom:782.053333pt;}
.y34{bottom:788.453333pt;}
.y1a5{bottom:790.053333pt;}
.y1ec{bottom:793.893333pt;}
.y7{bottom:795.973333pt;}
.y5a{bottom:796.613333pt;}
.ye8{bottom:797.893333pt;}
.y1c8{bottom:801.573333pt;}
.y33{bottom:804.133333pt;}
.y13d{bottom:804.933333pt;}
.y157{bottom:805.733333pt;}
.yfd{bottom:811.653333pt;}
.y59{bottom:812.133333pt;}
.y180{bottom:817.253333pt;}
.y32{bottom:819.813333pt;}
.y6{bottom:824.613333pt;}
.yfc{bottom:827.333333pt;}
.y1a4{bottom:829.253333pt;}
.y17f{bottom:832.933333pt;}
.y31{bottom:835.493333pt;}
.y58{bottom:836.613333pt;}
.y156{bottom:837.253333pt;}
.y1c7{bottom:840.933333pt;}
.y5{bottom:841.893333pt;}
.yfb{bottom:843.013333pt;}
.y1a3{bottom:844.933333pt;}
.y17e{bottom:848.613333pt;}
.y155{bottom:852.933333pt;}
.y1eb{bottom:856.453333pt;}
.yd7{bottom:856.613333pt;}
.yfa{bottom:858.533333pt;}
.y30{bottom:859.173333pt;}
.yc0{bottom:860.453333pt;}
.y116{bottom:861.253333pt;}
.y17d{bottom:864.133333pt;}
.y57{bottom:868.293333pt;}
.y154{bottom:868.613333pt;}
.yf9{bottom:874.213333pt;}
.y4{bottom:875.813333pt;}
.y8f{bottom:876.453333pt;}
.y1c6{bottom:880.133333pt;}
.y56{bottom:883.973333pt;}
.y153{bottom:884.293333pt;}
.y82{bottom:885.573333pt;}
.y17c{bottom:887.813333pt;}
.y1c5{bottom:895.813333pt;}
.y3{bottom:897.733333pt;}
.y81{bottom:901.253333pt;}
.y2f{bottom:902.213333pt;}
.yf8{bottom:903.493333pt;}
.ye7{bottom:903.813333pt;}
.y55{bottom:907.493333pt;}
.y1a2{bottom:907.813333pt;}
.y152{bottom:908.133333pt;}
.y2e{bottom:918.213333pt;}
.ye6{bottom:919.493333pt;}
.y1a1{bottom:923.493333pt;}
.y80{bottom:924.773333pt;}
.ybf{bottom:935.013333pt;}
.y17b{bottom:935.173333pt;}
.y1a0{bottom:939.173333pt;}
.y54{bottom:939.333333pt;}
.y17a{bottom:950.693333pt;}
.y2d{bottom:951.013333pt;}
.y7f{bottom:956.453333pt;}
.y1c4{bottom:958.693333pt;}
.yd5{bottom:959.013333pt;}
.y19f{bottom:962.693333pt;}
.y13c{bottom:966.373333pt;}
.y2c{bottom:966.693333pt;}
.y7e{bottom:972.773333pt;}
.y1c3{bottom:974.373333pt;}
.y19e{bottom:978.373333pt;}
.y2b{bottom:982.373333pt;}
.y7d{bottom:989.093333pt;}
.yf7{bottom:990.213333pt;}
.y8e{bottom:997.893333pt;}
.y2a{bottom:998.053333pt;}
.y19d{bottom:1002.213333pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h2{height:26.415625pt;}
.h6{height:31.535625pt;}
.h3{height:35.083125pt;}
.h22{height:35.392000pt;}
.h19{height:39.200000pt;}
.h25{height:39.232000pt;}
.h21{height:39.360000pt;}
.hd{height:44.975625pt;}
.h7{height:46.220625pt;}
.h8{height:49.852500pt;}
.h5{height:51.232500pt;}
.hb{height:54.598989pt;}
.h14{height:54.880000pt;}
.h26{height:54.912000pt;}
.h27{height:55.040000pt;}
.ha{height:55.298750pt;}
.h13{height:56.000000pt;}
.h9{height:61.295000pt;}
.h4{height:65.154375pt;}
.h1a{height:66.592000pt;}
.h28{height:70.560000pt;}
.h20{height:86.080000pt;}
.h18{height:86.240000pt;}
.h17{height:86.272000pt;}
.h11{height:86.912000pt;}
.h10{height:87.040000pt;}
.hc{height:101.760000pt;}
.h1d{height:101.792000pt;}
.h12{height:101.920000pt;}
.h1c{height:117.280000pt;}
.hf{height:117.440000pt;}
.h1b{height:117.472000pt;}
.h1f{height:132.992000pt;}
.h1e{height:133.120000pt;}
.he{height:148.666667pt;}
.h24{height:164.320000pt;}
.h15{height:164.346667pt;}
.h23{height:211.226667pt;}
.h16{height:258.106667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2a{width:49.120000pt;}
.w27{width:50.080000pt;}
.w16{width:51.712000pt;}
.w2d{width:52.352000pt;}
.w2c{width:54.240000pt;}
.w24{width:63.232000pt;}
.w21{width:66.560000pt;}
.w1b{width:67.040000pt;}
.w26{width:68.192000pt;}
.w9{width:69.152000pt;}
.w28{width:69.952000pt;}
.w7{width:70.880000pt;}
.w29{width:71.360000pt;}
.w14{width:71.552000pt;}
.wd{width:71.680000pt;}
.w2b{width:72.000000pt;}
.w23{width:72.960000pt;}
.w6{width:77.600000pt;}
.w3{width:78.432000pt;}
.w1d{width:80.512000pt;}
.w1f{width:90.400000pt;}
.w10{width:92.992000pt;}
.w20{width:94.272000pt;}
.w22{width:95.232000pt;}
.w17{width:95.712000pt;}
.wa{width:96.512000pt;}
.w13{width:98.400000pt;}
.w19{width:99.360000pt;}
.w1a{width:100.992000pt;}
.wf{width:101.312000pt;}
.w1e{width:103.872000pt;}
.w4{width:110.752000pt;}
.w25{width:111.392000pt;}
.w8{width:112.672000pt;}
.w15{width:113.920000pt;}
.we{width:114.752000pt;}
.w1c{width:117.152000pt;}
.w18{width:118.272000pt;}
.w11{width:118.912000pt;}
.w12{width:120.512000pt;}
.wb{width:129.792000pt;}
.w5{width:148.346667pt;}
.wc{width:154.426667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:3.520000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.x15{left:77.471988pt;}
.x4{left:84.511988pt;}
.x31{left:98.911988pt;}
.x5{left:108.511988pt;}
.x9{left:140.186667pt;}
.x22{left:142.266667pt;}
.x17{left:154.746667pt;}
.x1d{left:157.466667pt;}
.xf{left:158.426667pt;}
.x2a{left:173.146667pt;}
.x2{left:179.066655pt;}
.x2b{left:242.146667pt;}
.x23{left:246.946667pt;}
.xa{left:251.586667pt;}
.x18{left:274.306667pt;}
.x1e{left:276.386667pt;}
.x10{left:288.866667pt;}
.x7{left:310.466655pt;}
.x24{left:337.986667pt;}
.x2c{left:360.546667pt;}
.x16{left:363.586655pt;}
.x1f{left:376.546667pt;}
.x19{left:395.453333pt;}
.xb{left:400.573333pt;}
.x2d{left:431.133333pt;}
.x25{left:432.893333pt;}
.x11{left:443.933333pt;}
.xc{left:478.813333pt;}
.x1a{left:494.493333pt;}
.x26{left:500.093333pt;}
.x2e{left:503.133333pt;}
.x12{left:516.253333pt;}
.x20{left:545.853333pt;}
.xd{left:550.333333pt;}
.x2f{left:552.933333pt;}
.x1b{left:566.693333pt;}
.x27{left:596.133333pt;}
.x6{left:617.093322pt;}
.x30{left:625.573333pt;}
.x13{left:631.653333pt;}
.xe{left:663.813333pt;}
.x28{left:669.733333pt;}
.x1c{left:681.253333pt;}
.x14{left:692.613322pt;}
.x3{left:703.973322pt;}
.x21{left:713.119988pt;}
}




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