
    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_58380a96a0395238a8c3bd83.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1bea3d7103534bd7d6d498cb.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_f184a227732b7906d5b293c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.130371;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_cacf20eb499ebd55cb9ac87a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_e9ee2d9a0c94f0f935e86ad1.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_7d3d5a792ababa879f55bd71.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.768555;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_3ed988563debea1459c7f72d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_11349220217a25f5e11fe6e9.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.549805;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_b2e3f540d028681aac717281.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.549805;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v1a{vertical-align:-33.096000px;}
.v3{vertical-align:-25.200000px;}
.v8{vertical-align:-23.760000px;}
.v1b{vertical-align:-20.880000px;}
.v1{vertical-align:-14.400000px;}
.ve{vertical-align:-12.240000px;}
.vb{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.160000px;}
.v19{vertical-align:11.520000px;}
.vd{vertical-align:12.960000px;}
.v2{vertical-align:14.400000px;}
.v9{vertical-align:15.840000px;}
.v16{vertical-align:18.000000px;}
.v18{vertical-align:26.640000px;}
.v17{vertical-align:28.080000px;}
.v14{vertical-align:30.240000px;}
.v15{vertical-align:32.400000px;}
.v7{vertical-align:33.840000px;}
.v1c{vertical-align:35.280000px;}
.v10{vertical-align:40.320000px;}
.vc{vertical-align:43.920000px;}
.vf{vertical-align:46.080000px;}
.v6{vertical-align:48.240000px;}
.v5{vertical-align:51.120000px;}
.v4{vertical-align:54.720000px;}
.v11{vertical-align:66.240000px;}
.v13{vertical-align:89.280000px;}
.v12{vertical-align:101.520000px;}
.ls12{letter-spacing:-1.368000px;}
.ls10{letter-spacing:-1.224000px;}
.lsa{letter-spacing:-0.864000px;}
.ls11{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.504000px;}
.ls63{letter-spacing:-0.463800px;}
.ls9{letter-spacing:-0.360000px;}
.ls4d{letter-spacing:-0.262200px;}
.ls2{letter-spacing:-0.229800px;}
.ls4{letter-spacing:-0.216000px;}
.ls4f{letter-spacing:-0.175800px;}
.ls2a{letter-spacing:-0.169800px;}
.ls5{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.072000px;}
.ls5f{letter-spacing:-0.058320px;}
.ls61{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.004320px;}
.ls4b{letter-spacing:0.033120px;}
.ls8{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.115200px;}
.ls56{letter-spacing:0.125760px;}
.ls2f{letter-spacing:0.138240px;}
.ls13{letter-spacing:0.144000px;}
.ls4e{letter-spacing:0.174000px;}
.ls60{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.216000px;}
.ls4c{letter-spacing:0.241800px;}
.ls53{letter-spacing:0.247680px;}
.ls64{letter-spacing:0.256200px;}
.ls22{letter-spacing:0.285120px;}
.ls15{letter-spacing:0.288000px;}
.lse{letter-spacing:0.306000px;}
.ls25{letter-spacing:0.319680px;}
.ls6{letter-spacing:0.360000px;}
.ls51{letter-spacing:0.408960px;}
.ls19{letter-spacing:0.720000px;}
.lsd{letter-spacing:1.008000px;}
.ls50{letter-spacing:1.152000px;}
.ls3e{letter-spacing:1.396080px;}
.ls46{letter-spacing:1.800000px;}
.ls41{letter-spacing:2.195040px;}
.ls17{letter-spacing:2.232000px;}
.ls24{letter-spacing:2.545200px;}
.ls33{letter-spacing:2.847600px;}
.ls49{letter-spacing:2.880000px;}
.ls28{letter-spacing:2.932560px;}
.ls55{letter-spacing:3.029040px;}
.lsf{letter-spacing:3.168000px;}
.ls44{letter-spacing:3.225600px;}
.ls1e{letter-spacing:3.265200px;}
.ls5c{letter-spacing:3.281040px;}
.ls35{letter-spacing:3.441600px;}
.ls57{letter-spacing:3.775680px;}
.ls47{letter-spacing:3.816000px;}
.ls54{letter-spacing:3.855600px;}
.ls4a{letter-spacing:3.945600px;}
.ls62{letter-spacing:3.974400px;}
.ls59{letter-spacing:4.001040px;}
.ls18{letter-spacing:4.147200px;}
.ls1f{letter-spacing:4.248000px;}
.ls1a{letter-spacing:4.267200px;}
.ls5a{letter-spacing:4.424400px;}
.ls5b{letter-spacing:4.487040px;}
.ls38{letter-spacing:4.694400px;}
.ls1b{letter-spacing:4.867200px;}
.ls2c{letter-spacing:4.874400px;}
.ls1c{letter-spacing:4.968000px;}
.ls52{letter-spacing:5.271840px;}
.ls45{letter-spacing:6.768000px;}
.ls37{letter-spacing:7.058160px;}
.ls3d{letter-spacing:10.078560px;}
.ls31{letter-spacing:10.218240px;}
.ls2e{letter-spacing:10.670400px;}
.ls29{letter-spacing:11.520000px;}
.ls21{letter-spacing:11.649600px;}
.ls40{letter-spacing:13.158720px;}
.ls43{letter-spacing:13.260960px;}
.ls2d{letter-spacing:14.616000px;}
.ls27{letter-spacing:15.438720px;}
.ls3f{letter-spacing:15.505200px;}
.ls20{letter-spacing:16.038720px;}
.ls26{letter-spacing:16.200000px;}
.ls42{letter-spacing:16.905600px;}
.ls36{letter-spacing:17.654400px;}
.ls23{letter-spacing:18.385200px;}
.ls32{letter-spacing:19.094400px;}
.ls39{letter-spacing:19.761600px;}
.ls48{letter-spacing:20.505600px;}
.ls5d{letter-spacing:21.005760px;}
.ls1{letter-spacing:21.197280px;}
.ls3b{letter-spacing:21.906000px;}
.ls2b{letter-spacing:21.974400px;}
.ls3c{letter-spacing:22.626000px;}
.ls34{letter-spacing:22.694400px;}
.ls1d{letter-spacing:22.705200px;}
.ls5e{letter-spacing:59.885760px;}
.ls58{letter-spacing:62.045760px;}
.ls30{letter-spacing:83.808000px;}
.ls65{letter-spacing:1060.284000px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(47,84,150),0 0.015em rgb(47,84,150),0.015em 0 rgb(47,84,150),0 -0.015em  rgb(47,84,150);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(47,84,150);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-19.153440px;}
.ws2{word-spacing:-19.038240px;}
.ws1{word-spacing:-18.808440px;}
.ws4{word-spacing:-16.632000px;}
.wsc{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.488000px;}
.ws7{word-spacing:-16.344000px;}
.ws5{word-spacing:-16.272000px;}
.wsb{word-spacing:-16.200000px;}
.ws8{word-spacing:-16.128000px;}
.wsa{word-spacing:-16.056000px;}
.wsd{word-spacing:-15.840000px;}
.ws13{word-spacing:-15.768000px;}
.ws20{word-spacing:-15.696000px;}
.ws24{word-spacing:-15.624000px;}
.ws1a{word-spacing:-15.552000px;}
.ws9{word-spacing:-15.408000px;}
.ws23{word-spacing:-15.226440px;}
.ws21{word-spacing:-14.970240px;}
.ws17{word-spacing:-14.814600px;}
.wsf{word-spacing:-14.572800px;}
.ws22{word-spacing:-14.506440px;}
.ws12{word-spacing:-14.403000px;}
.ws1b{word-spacing:-13.505760px;}
.ws1c{word-spacing:-13.447440px;}
.ws14{word-spacing:-13.147200px;}
.ws1d{word-spacing:-12.204000px;}
.ws1e{word-spacing:-12.186000px;}
.wse{word-spacing:-11.246400px;}
.ws18{word-spacing:-10.984200px;}
.ws1f{word-spacing:-10.902240px;}
.ws11{word-spacing:-10.612800px;}
.ws19{word-spacing:-9.187200px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:6.953760px;}
.ws10{word-spacing:8.742240px;}
.ws16{word-spacing:198.994080px;}
._24{margin-left:-46.032000px;}
._23{margin-left:-38.558880px;}
._21{margin-left:-32.774400px;}
._20{margin-left:-31.161840px;}
._1f{margin-left:-29.688000px;}
._22{margin-left:-27.734400px;}
._26{margin-left:-26.549040px;}
._25{margin-left:-25.030320px;}
._6{margin-left:-20.515680px;}
._14{margin-left:-5.945520px;}
._2b{margin-left:-4.190400px;}
._19{margin-left:-2.736000px;}
._1{margin-left:-1.077360px;}
._2{width:1.079280px;}
._3{width:2.271360px;}
._11{width:3.720000px;}
._e{width:5.040000px;}
._7{width:6.096000px;}
._9{width:7.128000px;}
._5{width:8.645280px;}
._4{width:9.717360px;}
._b{width:10.987440px;}
._a{width:12.024000px;}
._17{width:13.029360px;}
._13{width:14.328000px;}
._1e{width:16.290000px;}
._16{width:18.000000px;}
._18{width:19.728000px;}
._15{width:21.612000px;}
._8{width:22.680000px;}
._f{width:24.120000px;}
._12{width:25.776000px;}
._d{width:27.504000px;}
._c{width:28.848000px;}
._10{width:30.000000px;}
._1a{width:31.452000px;}
._1d{width:32.592000px;}
._28{width:39.565920px;}
._2e{width:41.109360px;}
._2d{width:42.120000px;}
._1c{width:56.721360px;}
._1b{width:58.176000px;}
._2c{width:60.344640px;}
._29{width:62.118720px;}
._2a{width:65.399520px;}
._27{width:111.290400px;}
._0{width:847.848000px;}
.fc2{color:transparent;}
.fc1{color:rgb(47,84,150);}
.fc3{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fsc{font-size:62.991941px;}
.fsa{font-size:66.240000px;}
.fsd{font-size:69.822393px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:288.000000px;}
.y10{bottom:-32.220000px;}
.y7{bottom:-12.780000px;}
.y0{bottom:0.000000px;}
.yf{bottom:4.320000px;}
.y18e{bottom:4.500000px;}
.y104{bottom:4.860000px;}
.y5{bottom:5.400000px;}
.y197{bottom:5.940000px;}
.y18a{bottom:6.120000px;}
.y184{bottom:6.300000px;}
.y187{bottom:6.660000px;}
.y180{bottom:7.560000px;}
.y19b{bottom:7.920000px;}
.y199{bottom:8.100000px;}
.y9{bottom:10.620000px;}
.y194{bottom:12.600000px;}
.y17a{bottom:14.940000px;}
.yd{bottom:15.480000px;}
.y179{bottom:16.200000px;}
.y1ab{bottom:18.900000px;}
.y1aa{bottom:18.930000px;}
.y1af{bottom:20.520000px;}
.y186{bottom:23.220000px;}
.y175{bottom:24.480000px;}
.y17d{bottom:24.660000px;}
.y18d{bottom:24.690000px;}
.y17f{bottom:25.920000px;}
.y17c{bottom:26.100000px;}
.y181{bottom:27.360000px;}
.y18f{bottom:27.390000px;}
.y19d{bottom:27.405000px;}
.y188{bottom:27.540000px;}
.y193{bottom:30.960000px;}
.y4{bottom:31.320000px;}
.y195{bottom:33.660000px;}
.y15{bottom:34.740000px;}
.y1a8{bottom:35.100000px;}
.y124{bottom:36.180000px;}
.y177{bottom:40.320000px;}
.y14b{bottom:41.220000px;}
.y148{bottom:42.660000px;}
.yc{bottom:50.400000px;}
.y123{bottom:52.020000px;}
.y136{bottom:52.200000px;}
.y147{bottom:52.740000px;}
.y149{bottom:53.460000px;}
.y140{bottom:54.000000px;}
.y1a7{bottom:55.260000px;}
.y14d{bottom:55.620000px;}
.y13f{bottom:57.240000px;}
.y17{bottom:57.780000px;}
.y14a{bottom:62.460000px;}
.y135{bottom:63.360000px;}
.y122{bottom:64.080000px;}
.y14{bottom:70.200000px;}
.y125{bottom:75.600000px;}
.y14c{bottom:75.780000px;}
.y137{bottom:75.810000px;}
.y16{bottom:79.776000px;}
.yb{bottom:90.900000px;}
.y12{bottom:92.370000px;}
.y3{bottom:109.656000px;}
.y9e{bottom:110.196000px;}
.y4e{bottom:114.516000px;}
.y9d{bottom:115.416000px;}
.yf5{bottom:122.436000px;}
.y6c{bottom:126.936000px;}
.yae{bottom:128.376000px;}
.y9c{bottom:129.276000px;}
.yad{bottom:133.596000px;}
.y172{bottom:134.856000px;}
.y32{bottom:135.036000px;}
.ybf{bottom:140.076000px;}
.y15d{bottom:144.936000px;}
.y133{bottom:146.736000px;}
.y89{bottom:147.636000px;}
.yfc{bottom:149.076000px;}
.y132{bottom:151.950000px;}
.y15b{bottom:152.490000px;}
.y1c7{bottom:152.850000px;}
.y4d{bottom:153.030000px;}
.y15c{bottom:154.830000px;}
.ye5{bottom:155.010000px;}
.y6b{bottom:159.870000px;}
.y1a2{bottom:161.310000px;}
.y1e0{bottom:163.290000px;}
.yf4{bottom:164.370000px;}
.y131{bottom:165.090000px;}
.y1b7{bottom:166.710000px;}
.y171{bottom:167.790000px;}
.y31{bottom:173.550000px;}
.yd8{bottom:174.990000px;}
.y15a{bottom:175.350000px;}
.y9a{bottom:176.790000px;}
.y88{bottom:180.570000px;}
.ybe{bottom:182.010000px;}
.y9b{bottom:182.730000px;}
.y130{bottom:183.270000px;}
.y1c6{bottom:185.790000px;}
.y12f{bottom:188.490000px;}
.y4c{bottom:191.550000px;}
.y6a{bottom:192.810000px;}
.y159{bottom:193.710000px;}
.y1a1{bottom:194.250000px;}
.y1df{bottom:195.870000px;}
.ye4{bottom:196.950000px;}
.y1b6{bottom:199.650000px;}
.y170{bottom:200.730000px;}
.y12e{bottom:202.530000px;}
.yf3{bottom:206.310000px;}
.y117{bottom:207.750000px;}
.yd7{bottom:208.110000px;}
.y99{bottom:209.730000px;}
.y30{bottom:211.890000px;}
.y87{bottom:213.510000px;}
.ybd{bottom:214.950000px;}
.y1c5{bottom:218.730000px;}
.y1de{bottom:219.630000px;}
.y69{bottom:225.750000px;}
.y1a0{bottom:227.190000px;}
.y4b{bottom:227.550000px;}
.ye3{bottom:229.890000px;}
.y158{bottom:230.250000px;}
.y1b5{bottom:232.590000px;}
.y157{bottom:235.470000px;}
.yf2{bottom:239.250000px;}
.y116{bottom:240.690000px;}
.yd6{bottom:241.050000px;}
.y98{bottom:242.670000px;}
.y86{bottom:246.450000px;}
.ybc{bottom:247.890000px;}
.y156{bottom:249.510000px;}
.y2f{bottom:250.410000px;}
.y1c4{bottom:251.670000px;}
.y1dd{bottom:252.390000px;}
.y68{bottom:258.690000px;}
.y19f{bottom:260.130000px;}
.y12d{bottom:260.310000px;}
.y4a{bottom:260.490000px;}
.ye2{bottom:262.830000px;}
.y1b4{bottom:265.530000px;}
.yf1{bottom:272.190000px;}
.yd5{bottom:273.990000px;}
.y97{bottom:275.610000px;}
.y1dc{bottom:276.150000px;}
.y85{bottom:279.390000px;}
.ybb{bottom:280.830000px;}
.y115{bottom:282.630000px;}
.y1c3{bottom:284.610000px;}
.y2e{bottom:288.750000px;}
.y67{bottom:291.630000px;}
.y19e{bottom:292.890000px;}
.y12c{bottom:293.250000px;}
.y49{bottom:293.430000px;}
.ye1{bottom:295.950000px;}
.y1b3{bottom:298.470000px;}
.yf0{bottom:305.130000px;}
.yd4{bottom:306.930000px;}
.y96{bottom:308.550000px;}
.y1db{bottom:308.730000px;}
.y19c{bottom:310.710000px;}
.y84{bottom:312.330000px;}
.yba{bottom:313.950000px;}
.y114{bottom:315.570000px;}
.y1c2{bottom:317.550000px;}
.ye{bottom:323.310000px;}
.y66{bottom:324.570000px;}
.y12b{bottom:326.190000px;}
.y48{bottom:326.370000px;}
.y155{bottom:326.550000px;}
.y2d{bottom:327.270000px;}
.ye0{bottom:328.890000px;}
.y1b2{bottom:331.230000px;}
.y1da{bottom:332.490000px;}
.yef{bottom:338.115000px;}
.y95{bottom:341.715000px;}
.yb9{bottom:346.935000px;}
.y113{bottom:348.555000px;}
.yd3{bottom:348.915000px;}
.y1b1{bottom:349.095000px;}
.y1c1{bottom:350.715000px;}
.y19a{bottom:351.075000px;}
.y83{bottom:354.315000px;}
.y65{bottom:357.735000px;}
.y12a{bottom:359.175000px;}
.y47{bottom:359.355000px;}
.y154{bottom:359.535000px;}
.ydf{bottom:361.515000px;}
.y1d9{bottom:365.295000px;}
.y2c{bottom:365.835000px;}
.ya{bottom:367.455000px;}
.y94{bottom:374.655000px;}
.yac{bottom:378.255000px;}
.yb8{bottom:379.875000px;}
.yee{bottom:380.055000px;}
.yd2{bottom:381.855000px;}
.y112{bottom:382.215000px;}
.y1b0{bottom:383.655000px;}
.y82{bottom:387.255000px;}
.y1d8{bottom:389.055000px;}
.y198{bottom:391.215000px;}
.y129{bottom:392.115000px;}
.y46{bottom:392.295000px;}
.y153{bottom:392.475000px;}
.y64{bottom:399.675000px;}
.yde{bottom:403.635000px;}
.y2b{bottom:404.175000px;}
.y16f{bottom:407.595000px;}
.y93{bottom:408.135000px;}
.yab{bottom:411.195000px;}
.yc5{bottom:412.095000px;}
.yb7{bottom:412.815000px;}
.yed{bottom:412.995000px;}
.yd1{bottom:414.795000px;}
.y1c0{bottom:416.595000px;}
.yc6{bottom:418.035000px;}
.y111{bottom:418.215000px;}
.y81{bottom:420.195000px;}
.y1d7{bottom:421.635000px;}
.y128{bottom:425.055000px;}
.y45{bottom:425.235000px;}
.y196{bottom:431.535000px;}
.y63{bottom:432.615000px;}
.y152{bottom:434.595000px;}
.y16e{bottom:440.535000px;}
.y2a{bottom:442.695000px;}
.y92{bottom:444.135000px;}
.yc4{bottom:445.035000px;}
.y1d6{bottom:445.395000px;}
.ydd{bottom:445.575000px;}
.yb6{bottom:445.755000px;}
.yec{bottom:445.935000px;}
.yd0{bottom:447.735000px;}
.yfb{bottom:448.455000px;}
.y1bf{bottom:449.535000px;}
.y110{bottom:451.155000px;}
.y1ae{bottom:452.775000px;}
.y80{bottom:453.135000px;}
.y127{bottom:457.995000px;}
.y44{bottom:458.175000px;}
.y62{bottom:465.555000px;}
.y150{bottom:467.535000px;}
.y192{bottom:471.855000px;}
.yfa{bottom:472.215000px;}
.y151{bottom:473.475000px;}
.yaa{bottom:477.255000px;}
.yc3{bottom:477.975000px;}
.y1d5{bottom:478.155000px;}
.ydc{bottom:478.515000px;}
.yb5{bottom:478.695000px;}
.yeb{bottom:479.055000px;}
.ycf{bottom:480.675000px;}
.y29{bottom:481.215000px;}
.y1be{bottom:482.475000px;}
.y10f{bottom:484.095000px;}
.y91{bottom:486.255000px;}
.y1ad{bottom:488.955000px;}
.y126{bottom:491.115000px;}
.y43{bottom:491.295000px;}
.y7f{bottom:495.255000px;}
.y61{bottom:498.495000px;}
.y13{bottom:499.215000px;}
.y14e{bottom:500.295000px;}
.y1d4{bottom:501.735000px;}
.y14f{bottom:504.795000px;}
.y16d{bottom:506.415000px;}
.y121{bottom:508.215000px;}
.ya9{bottom:510.195000px;}
.yc2{bottom:510.915000px;}
.ydb{bottom:511.455000px;}
.yea{bottom:511.995000px;}
.yce{bottom:513.615000px;}
.y1bd{bottom:515.415000px;}
.y10e{bottom:517.215000px;}
.y191{bottom:518.475000px;}
.y90{bottom:519.195000px;}
.y28{bottom:519.555000px;}
.y146{bottom:520.095000px;}
.yb4{bottom:520.635000px;}
.y1ac{bottom:523.515000px;}
.y42{bottom:524.235000px;}
.y1d3{bottom:527.655000px;}
.y7e{bottom:528.195000px;}
.y60{bottom:531.435000px;}
.ya8{bottom:543.135000px;}
.yc1{bottom:543.855000px;}
.ye9{bottom:544.935000px;}
.ycd{bottom:546.735000px;}
.yda{bottom:547.095000px;}
.y16c{bottom:548.355000px;}
.y10d{bottom:550.155000px;}
.y11{bottom:550.515000px;}
.y8f{bottom:552.135000px;}
.yb3{bottom:553.395000px;}
.y27{bottom:558.075000px;}
.y190{bottom:558.615000px;}
.y41{bottom:559.515000px;}
.y7d{bottom:561.135000px;}
.y5f{bottom:564.375000px;}
.yd9{bottom:570.855000px;}
.ya7{bottom:576.075000px;}
.yc0{bottom:576.795000px;}
.ye8{bottom:577.875000px;}
.ycc{bottom:579.675000px;}
.y16b{bottom:581.295000px;}
.y10c{bottom:583.095000px;}
.y8e{bottom:585.075000px;}
.yb2{bottom:586.155000px;}
.y1a9{bottom:592.635000px;}
.y7c{bottom:594.075000px;}
.y26{bottom:596.415000px;}
.y5e{bottom:597.315000px;}
.y40{bottom:598.035000px;}
.y18c{bottom:598.935000px;}
.yb1{bottom:609.765000px;}
.ye7{bottom:610.845000px;}
.y1d2{bottom:612.105000px;}
.ycb{bottom:612.645000px;}
.y16a{bottom:614.265000px;}
.y10b{bottom:616.065000px;}
.y8d{bottom:618.045000px;}
.y120{bottom:624.525000px;}
.y7b{bottom:627.045000px;}
.y1a6{bottom:627.225000px;}
.y5d{bottom:631.005000px;}
.y25{bottom:634.965000px;}
.y3f{bottom:636.405000px;}
.y18b{bottom:639.285000px;}
.y1d1{bottom:645.045000px;}
.yb0{bottom:645.405000px;}
.yca{bottom:645.585000px;}
.y169{bottom:647.385000px;}
.y10a{bottom:649.005000px;}
.y8c{bottom:650.985000px;}
.ye6{bottom:654.765000px;}
.y11f{bottom:657.465000px;}
.y7a{bottom:659.985000px;}
.y109{bottom:666.825000px;}
.y5c{bottom:667.005000px;}
.y145{bottom:669.345000px;}
.y1bc{bottom:671.865000px;}
.y24{bottom:673.485000px;}
.y3e{bottom:674.925000px;}
.y1d0{bottom:677.985000px;}
.yaf{bottom:678.525000px;}
.y189{bottom:679.605000px;}
.y168{bottom:680.325000px;}
.yc9{bottom:687.525000px;}
.y108{bottom:689.505000px;}
.y11e{bottom:690.405000px;}
.y79{bottom:692.925000px;}
.ya6{bottom:701.925000px;}
.y143{bottom:702.285000px;}
.y5b{bottom:702.465000px;}
.y144{bottom:708.225000px;}
.y1cf{bottom:710.925000px;}
.y23{bottom:711.825000px;}
.y107{bottom:712.365000px;}
.y167{bottom:713.265000px;}
.y3d{bottom:713.445000px;}
.y1bb{bottom:716.865000px;}
.y1a5{bottom:717.405000px;}
.y185{bottom:719.745000px;}
.yc8{bottom:720.285000px;}
.y11d{bottom:723.345000px;}
.y78{bottom:725.865000px;}
.ya5{bottom:734.865000px;}
.y106{bottom:735.045000px;}
.y142{bottom:735.405000px;}
.y5a{bottom:738.465000px;}
.y1ce{bottom:743.865000px;}
.y166{bottom:746.205000px;}
.y22{bottom:750.345000px;}
.y3c{bottom:751.785000px;}
.y1a4{bottom:755.205000px;}
.yc7{bottom:755.925000px;}
.y1eb{bottom:756.105000px;}
.y11c{bottom:756.285000px;}
.y105{bottom:757.725000px;}
.y77{bottom:758.805000px;}
.y183{bottom:760.065000px;}
.ya4{bottom:767.805000px;}
.y141{bottom:768.345000px;}
.y59{bottom:771.405000px;}
.y1cd{bottom:776.805000px;}
.y103{bottom:780.405000px;}
.y13e{bottom:785.445000px;}
.y165{bottom:788.145000px;}
.y21{bottom:788.865000px;}
.y3b{bottom:790.305000px;}
.y76{bottom:791.925000px;}
.y11b{bottom:798.225000px;}
.y182{bottom:800.385000px;}
.ya3{bottom:800.925000px;}
.y58{bottom:804.345000px;}
.y1cc{bottom:809.925000px;}
.y164{bottom:821.085000px;}
.y102{bottom:821.625000px;}
.y1ea{bottom:824.685000px;}
.y8b{bottom:824.865000px;}
.y20{bottom:827.205000px;}
.y3a{bottom:828.825000px;}
.y119{bottom:831.165000px;}
.y75{bottom:833.865000px;}
.y11a{bottom:835.665000px;}
.y57{bottom:837.285000px;}
.y101{bottom:838.185000px;}
.y17e{bottom:840.705000px;}
.y1cb{bottom:842.865000px;}
.y163{bottom:854.025000px;}
.y1e9{bottom:857.265000px;}
.y1ba{bottom:857.805000px;}
.y1f{bottom:865.725000px;}
.y74{bottom:866.805000px;}
.y39{bottom:867.165000px;}
.y56{bottom:870.225000px;}
.y1ca{bottom:875.850000px;}
.y100{bottom:876.030000px;}
.y17b{bottom:880.890000px;}
.y1e8{bottom:881.070000px;}
.y13d{bottom:883.230000px;}
.y162{bottom:887.010000px;}
.y1b9{bottom:890.790000px;}
.y73{bottom:899.790000px;}
.y55{bottom:903.210000px;}
.y1e{bottom:904.110000px;}
.y38{bottom:905.730000px;}
.y1c9{bottom:908.790000px;}
.yff{bottom:908.970000px;}
.y1e7{bottom:913.830000px;}
.y13c{bottom:916.170000px;}
.y161{bottom:919.950000px;}
.y178{bottom:921.930000px;}
.y72{bottom:932.730000px;}
.y54{bottom:936.150000px;}
.y1e6{bottom:937.410000px;}
.y1c8{bottom:941.730000px;}
.yfe{bottom:941.910000px;}
.y1d{bottom:942.630000px;}
.y37{bottom:944.070000px;}
.y13b{bottom:949.110000px;}
.y160{bottom:952.890000px;}
.y176{bottom:953.250000px;}
.y1a3{bottom:953.610000px;}
.y71{bottom:965.670000px;}
.yf9{bottom:965.850000px;}
.y53{bottom:969.270000px;}
.y1e5{bottom:970.170000px;}
.ya2{bottom:974.670000px;}
.yfd{bottom:974.850000px;}
.y1c{bottom:981.150000px;}
.y13a{bottom:982.050000px;}
.y36{bottom:982.590000px;}
.y15f{bottom:986.010000px;}
.y70{bottom:998.610000px;}
.y52{bottom:1002.210000px;}
.y1e4{bottom:1002.930000px;}
.ya1{bottom:1007.610000px;}
.yf8{bottom:1007.970000px;}
.y174{bottom:1009.230000px;}
.y139{bottom:1015.170000px;}
.y15e{bottom:1019.490000px;}
.y35{bottom:1021.110000px;}
.y1b{bottom:1026.150000px;}
.y6f{bottom:1031.550000px;}
.y51{bottom:1035.150000px;}
.y1e3{bottom:1035.690000px;}
.y8{bottom:1037.490000px;}
.ya0{bottom:1040.550000px;}
.yf7{bottom:1040.910000px;}
.y138{bottom:1048.110000px;}
.y6{bottom:1048.650000px;}
.y1a{bottom:1059.090000px;}
.y1e2{bottom:1059.270000px;}
.y34{bottom:1059.450000px;}
.y6e{bottom:1064.490000px;}
.y134{bottom:1065.210000px;}
.y50{bottom:1068.090000px;}
.y173{bottom:1068.630000px;}
.y8a{bottom:1073.490000px;}
.yf6{bottom:1073.850000px;}
.y9f{bottom:1079.430000px;}
.y19{bottom:1092.030000px;}
.y33{bottom:1097.970000px;}
.y4f{bottom:1101.030000px;}
.y6d{bottom:1106.430000px;}
.y2{bottom:1106.790000px;}
.y1b8{bottom:1112.370000px;}
.y1e1{bottom:1115.790000px;}
.y18{bottom:1136.490000px;}
.y1{bottom:1139.580000px;}
.y118{bottom:1145.520000px;}
.h19{height:21.960000px;}
.hb{height:24.516000px;}
.h32{height:30.600000px;}
.h3d{height:34.560000px;}
.h3c{height:34.596000px;}
.h3e{height:36.180000px;}
.h15{height:38.671172px;}
.h30{height:40.140000px;}
.h35{height:40.176000px;}
.h33{height:40.320000px;}
.h39{height:40.356000px;}
.h18{height:43.453125px;}
.h3a{height:46.620000px;}
.h14{height:47.980898px;}
.h34{height:48.088125px;}
.h37{height:53.709961px;}
.h31{height:55.980000px;}
.h11{height:57.937500px;}
.h16{height:59.439023px;}
.h1f{height:65.884219px;}
.h13{height:68.554688px;}
.h3b{height:70.920000px;}
.h8{height:71.613281px;}
.h24{height:72.900000px;}
.h2{height:73.722656px;}
.h17{height:74.953125px;}
.h1b{height:75.304336px;}
.h10{height:80.208984px;}
.h4{height:83.787539px;}
.h6{height:86.255508px;}
.h12{height:87.695156px;}
.ha{height:91.177734px;}
.h1c{height:91.260000px;}
.h21{height:91.476000px;}
.h2d{height:93.287461px;}
.he{height:96.120000px;}
.h36{height:98.332635px;}
.h5{height:98.676000px;}
.hf{height:102.832031px;}
.h20{height:103.402969px;}
.h2e{height:104.807461px;}
.h7{height:108.576000px;}
.h38{height:108.995209px;}
.h1a{height:112.394531px;}
.h9{height:113.760000px;}
.h3{height:116.100000px;}
.h2f{height:123.503461px;}
.h25{height:125.354531px;}
.h2c{height:133.607461px;}
.h2a{height:133.642969px;}
.h26{height:139.367461px;}
.h28{height:143.722969px;}
.h23{height:157.034531px;}
.h1d{height:158.122969px;}
.hc{height:160.950000px;}
.h22{height:162.914531px;}
.h1e{height:163.514531px;}
.h27{height:179.687461px;}
.h2b{height:185.447461px;}
.h29{height:194.807461px;}
.hd{height:274.218750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:63.756000px;}
.w17{width:63.900000px;}
.w16{width:74.016000px;}
.w1b{width:82.080000px;}
.w1a{width:84.960000px;}
.wb{width:88.560000px;}
.wd{width:107.280000px;}
.wc{width:107.316000px;}
.we{width:107.496000px;}
.w1c{width:121.680000px;}
.w20{width:132.156000px;}
.w1f{width:132.336000px;}
.w21{width:132.660000px;}
.w7{width:136.656000px;}
.w12{width:145.836000px;}
.w19{width:148.860000px;}
.w13{width:156.240000px;}
.w10{width:159.120000px;}
.w4{width:192.450000px;}
.w14{width:201.675000px;}
.w5{width:251.850000px;}
.w1d{width:265.395000px;}
.w1e{width:265.530000px;}
.w15{width:294.690000px;}
.w9{width:455.685000px;}
.w11{width:500.295000px;}
.wf{width:550.365000px;}
.w3{width:551.985000px;}
.w6{width:560.805000px;}
.w8{width:613.545000px;}
.wa{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:7.740000px;}
.xc{left:10.800000px;}
.x3c{left:16.200000px;}
.x10{left:18.174000px;}
.x54{left:20.340000px;}
.x53{left:23.220000px;}
.xa{left:28.800000px;}
.x5c{left:29.880000px;}
.x55{left:32.754000px;}
.x12{left:36.360000px;}
.x4f{left:38.340000px;}
.x5b{left:41.034000px;}
.x52{left:43.425000px;}
.x51{left:44.640000px;}
.x39{left:55.080000px;}
.x34{left:61.560000px;}
.x37{left:63.000000px;}
.xb{left:65.880000px;}
.x4a{left:81.045000px;}
.x57{left:83.925000px;}
.x35{left:96.294000px;}
.x13{left:105.885000px;}
.x4c{left:113.580000px;}
.x31{left:116.814000px;}
.x30{left:119.556000px;}
.xe{left:125.850000px;}
.x15{left:127.655987px;}
.x7{left:129.456000px;}
.x1b{left:132.515987px;}
.xf{left:137.736000px;}
.x17{left:154.649987px;}
.x19{left:160.409973px;}
.x9{left:165.990000px;}
.x3d{left:177.879000px;}
.x5f{left:181.649987px;}
.x6{left:184.005000px;}
.x4{left:190.305000px;}
.x3e{left:201.639000px;}
.x2{left:213.330000px;}
.x11{left:218.370000px;}
.x32{left:220.359000px;}
.x8{left:224.499000px;}
.x2e{left:226.829973px;}
.x27{left:227.910000px;}
.x3{left:230.085000px;}
.x2f{left:233.489987px;}
.x56{left:241.950000px;}
.x24{left:246.989987px;}
.x1f{left:250.409987px;}
.x25{left:253.289987px;}
.x43{left:256.709973px;}
.x44{left:263.369987px;}
.x3f{left:275.439000px;}
.x49{left:276.870000px;}
.x45{left:280.874987px;}
.x40{left:284.079000px;}
.x28{left:335.955000px;}
.x1a{left:343.694987px;}
.x4d{left:350.895000px;}
.x46{left:355.214987px;}
.x38{left:356.469000px;}
.x36{left:357.729000px;}
.x16{left:368.894987px;}
.x59{left:375.015000px;}
.xd{left:377.715000px;}
.x1{left:396.434987px;}
.x18{left:411.194987px;}
.x4e{left:414.795000px;}
.x23{left:437.474987px;}
.x14{left:441.974987px;}
.x29{left:443.955000px;}
.x41{left:448.809000px;}
.x4b{left:478.545000px;}
.x58{left:508.065000px;}
.x1c{left:543.164973px;}
.x1d{left:549.284987px;}
.x2a{left:552.165000px;}
.x3a{left:565.124973px;}
.x5{left:568.365000px;}
.x3b{left:571.244987px;}
.x47{left:592.124987px;}
.x42{left:619.845000px;}
.x50{left:627.405000px;}
.x20{left:630.104973px;}
.x48{left:633.884987px;}
.x21{left:636.224987px;}
.x5d{left:638.744973px;}
.x5a{left:641.445000px;}
.x5e{left:644.864987px;}
.x2b{left:660.210000px;}
.x33{left:669.930000px;}
.x2c{left:675.149973px;}
.x2d{left:681.269987px;}
.x22{left:691.889987px;}
.x1e{left:765.509987px;}
@media print{
.v1a{vertical-align:-29.418667pt;}
.v3{vertical-align:-22.400000pt;}
.v8{vertical-align:-21.120000pt;}
.v1b{vertical-align:-18.560000pt;}
.v1{vertical-align:-12.800000pt;}
.ve{vertical-align:-10.880000pt;}
.vb{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.920000pt;}
.v19{vertical-align:10.240000pt;}
.vd{vertical-align:11.520000pt;}
.v2{vertical-align:12.800000pt;}
.v9{vertical-align:14.080000pt;}
.v16{vertical-align:16.000000pt;}
.v18{vertical-align:23.680000pt;}
.v17{vertical-align:24.960000pt;}
.v14{vertical-align:26.880000pt;}
.v15{vertical-align:28.800000pt;}
.v7{vertical-align:30.080000pt;}
.v1c{vertical-align:31.360000pt;}
.v10{vertical-align:35.840000pt;}
.vc{vertical-align:39.040000pt;}
.vf{vertical-align:40.960000pt;}
.v6{vertical-align:42.880000pt;}
.v5{vertical-align:45.440000pt;}
.v4{vertical-align:48.640000pt;}
.v11{vertical-align:58.880000pt;}
.v13{vertical-align:79.360000pt;}
.v12{vertical-align:90.240000pt;}
.ls12{letter-spacing:-1.216000pt;}
.ls10{letter-spacing:-1.088000pt;}
.lsa{letter-spacing:-0.768000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.448000pt;}
.ls63{letter-spacing:-0.412267pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls4d{letter-spacing:-0.233067pt;}
.ls2{letter-spacing:-0.204267pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls4f{letter-spacing:-0.156267pt;}
.ls2a{letter-spacing:-0.150933pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls5f{letter-spacing:-0.051840pt;}
.ls61{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.003840pt;}
.ls4b{letter-spacing:0.029440pt;}
.ls8{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.102400pt;}
.ls56{letter-spacing:0.111787pt;}
.ls2f{letter-spacing:0.122880pt;}
.ls13{letter-spacing:0.128000pt;}
.ls4e{letter-spacing:0.154667pt;}
.ls60{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls4c{letter-spacing:0.214933pt;}
.ls53{letter-spacing:0.220160pt;}
.ls64{letter-spacing:0.227733pt;}
.ls22{letter-spacing:0.253440pt;}
.ls15{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.272000pt;}
.ls25{letter-spacing:0.284160pt;}
.ls6{letter-spacing:0.320000pt;}
.ls51{letter-spacing:0.363520pt;}
.ls19{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.896000pt;}
.ls50{letter-spacing:1.024000pt;}
.ls3e{letter-spacing:1.240960pt;}
.ls46{letter-spacing:1.600000pt;}
.ls41{letter-spacing:1.951147pt;}
.ls17{letter-spacing:1.984000pt;}
.ls24{letter-spacing:2.262400pt;}
.ls33{letter-spacing:2.531200pt;}
.ls49{letter-spacing:2.560000pt;}
.ls28{letter-spacing:2.606720pt;}
.ls55{letter-spacing:2.692480pt;}
.lsf{letter-spacing:2.816000pt;}
.ls44{letter-spacing:2.867200pt;}
.ls1e{letter-spacing:2.902400pt;}
.ls5c{letter-spacing:2.916480pt;}
.ls35{letter-spacing:3.059200pt;}
.ls57{letter-spacing:3.356160pt;}
.ls47{letter-spacing:3.392000pt;}
.ls54{letter-spacing:3.427200pt;}
.ls4a{letter-spacing:3.507200pt;}
.ls62{letter-spacing:3.532800pt;}
.ls59{letter-spacing:3.556480pt;}
.ls18{letter-spacing:3.686400pt;}
.ls1f{letter-spacing:3.776000pt;}
.ls1a{letter-spacing:3.793067pt;}
.ls5a{letter-spacing:3.932800pt;}
.ls5b{letter-spacing:3.988480pt;}
.ls38{letter-spacing:4.172800pt;}
.ls1b{letter-spacing:4.326400pt;}
.ls2c{letter-spacing:4.332800pt;}
.ls1c{letter-spacing:4.416000pt;}
.ls52{letter-spacing:4.686080pt;}
.ls45{letter-spacing:6.016000pt;}
.ls37{letter-spacing:6.273920pt;}
.ls3d{letter-spacing:8.958720pt;}
.ls31{letter-spacing:9.082880pt;}
.ls2e{letter-spacing:9.484800pt;}
.ls29{letter-spacing:10.240000pt;}
.ls21{letter-spacing:10.355200pt;}
.ls40{letter-spacing:11.696640pt;}
.ls43{letter-spacing:11.787520pt;}
.ls2d{letter-spacing:12.992000pt;}
.ls27{letter-spacing:13.723307pt;}
.ls3f{letter-spacing:13.782400pt;}
.ls20{letter-spacing:14.256640pt;}
.ls26{letter-spacing:14.400000pt;}
.ls42{letter-spacing:15.027200pt;}
.ls36{letter-spacing:15.692800pt;}
.ls23{letter-spacing:16.342400pt;}
.ls32{letter-spacing:16.972800pt;}
.ls39{letter-spacing:17.565867pt;}
.ls48{letter-spacing:18.227200pt;}
.ls5d{letter-spacing:18.671787pt;}
.ls1{letter-spacing:18.842027pt;}
.ls3b{letter-spacing:19.472000pt;}
.ls2b{letter-spacing:19.532800pt;}
.ls3c{letter-spacing:20.112000pt;}
.ls34{letter-spacing:20.172800pt;}
.ls1d{letter-spacing:20.182400pt;}
.ls5e{letter-spacing:53.231787pt;}
.ls58{letter-spacing:55.151787pt;}
.ls30{letter-spacing:74.496000pt;}
.ls65{letter-spacing:942.474667pt;}
.ws3{word-spacing:-17.025280pt;}
.ws2{word-spacing:-16.922880pt;}
.ws1{word-spacing:-16.718613pt;}
.ws4{word-spacing:-14.784000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.656000pt;}
.ws7{word-spacing:-14.528000pt;}
.ws5{word-spacing:-14.464000pt;}
.wsb{word-spacing:-14.400000pt;}
.ws8{word-spacing:-14.336000pt;}
.wsa{word-spacing:-14.272000pt;}
.wsd{word-spacing:-14.080000pt;}
.ws13{word-spacing:-14.016000pt;}
.ws20{word-spacing:-13.952000pt;}
.ws24{word-spacing:-13.888000pt;}
.ws1a{word-spacing:-13.824000pt;}
.ws9{word-spacing:-13.696000pt;}
.ws23{word-spacing:-13.534613pt;}
.ws21{word-spacing:-13.306880pt;}
.ws17{word-spacing:-13.168533pt;}
.wsf{word-spacing:-12.953600pt;}
.ws22{word-spacing:-12.894613pt;}
.ws12{word-spacing:-12.802667pt;}
.ws1b{word-spacing:-12.005120pt;}
.ws1c{word-spacing:-11.953280pt;}
.ws14{word-spacing:-11.686400pt;}
.ws1d{word-spacing:-10.848000pt;}
.ws1e{word-spacing:-10.832000pt;}
.wse{word-spacing:-9.996800pt;}
.ws18{word-spacing:-9.763733pt;}
.ws1f{word-spacing:-9.690880pt;}
.ws11{word-spacing:-9.433600pt;}
.ws19{word-spacing:-8.166400pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:6.181120pt;}
.ws10{word-spacing:7.770880pt;}
.ws16{word-spacing:176.883627pt;}
._24{margin-left:-40.917333pt;}
._23{margin-left:-34.274560pt;}
._21{margin-left:-29.132800pt;}
._20{margin-left:-27.699413pt;}
._1f{margin-left:-26.389333pt;}
._22{margin-left:-24.652800pt;}
._26{margin-left:-23.599147pt;}
._25{margin-left:-22.249173pt;}
._6{margin-left:-18.236160pt;}
._14{margin-left:-5.284907pt;}
._2b{margin-left:-3.724800pt;}
._19{margin-left:-2.432000pt;}
._1{margin-left:-0.957653pt;}
._2{width:0.959360pt;}
._3{width:2.018987pt;}
._11{width:3.306667pt;}
._e{width:4.480000pt;}
._7{width:5.418667pt;}
._9{width:6.336000pt;}
._5{width:7.684693pt;}
._4{width:8.637653pt;}
._b{width:9.766613pt;}
._a{width:10.688000pt;}
._17{width:11.581653pt;}
._13{width:12.736000pt;}
._1e{width:14.480000pt;}
._16{width:16.000000pt;}
._18{width:17.536000pt;}
._15{width:19.210667pt;}
._8{width:20.160000pt;}
._f{width:21.440000pt;}
._12{width:22.912000pt;}
._d{width:24.448000pt;}
._c{width:25.642667pt;}
._10{width:26.666667pt;}
._1a{width:27.957333pt;}
._1d{width:28.970667pt;}
._28{width:35.169707pt;}
._2e{width:36.541653pt;}
._2d{width:37.440000pt;}
._1c{width:50.418987pt;}
._1b{width:51.712000pt;}
._2c{width:53.639680pt;}
._29{width:55.216640pt;}
._2a{width:58.132907pt;}
._27{width:98.924800pt;}
._0{width:753.642667pt;}
.fs6{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fsc{font-size:55.992837pt;}
.fsa{font-size:58.880000pt;}
.fsd{font-size:62.064349pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:256.000000pt;}
.y10{bottom:-28.640000pt;}
.y7{bottom:-11.360000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.840000pt;}
.y18e{bottom:4.000000pt;}
.y104{bottom:4.320000pt;}
.y5{bottom:4.800000pt;}
.y197{bottom:5.280000pt;}
.y18a{bottom:5.440000pt;}
.y184{bottom:5.600000pt;}
.y187{bottom:5.920000pt;}
.y180{bottom:6.720000pt;}
.y19b{bottom:7.040000pt;}
.y199{bottom:7.200000pt;}
.y9{bottom:9.440000pt;}
.y194{bottom:11.200000pt;}
.y17a{bottom:13.280000pt;}
.yd{bottom:13.760000pt;}
.y179{bottom:14.400000pt;}
.y1ab{bottom:16.800000pt;}
.y1aa{bottom:16.826667pt;}
.y1af{bottom:18.240000pt;}
.y186{bottom:20.640000pt;}
.y175{bottom:21.760000pt;}
.y17d{bottom:21.920000pt;}
.y18d{bottom:21.946667pt;}
.y17f{bottom:23.040000pt;}
.y17c{bottom:23.200000pt;}
.y181{bottom:24.320000pt;}
.y18f{bottom:24.346667pt;}
.y19d{bottom:24.360000pt;}
.y188{bottom:24.480000pt;}
.y193{bottom:27.520000pt;}
.y4{bottom:27.840000pt;}
.y195{bottom:29.920000pt;}
.y15{bottom:30.880000pt;}
.y1a8{bottom:31.200000pt;}
.y124{bottom:32.160000pt;}
.y177{bottom:35.840000pt;}
.y14b{bottom:36.640000pt;}
.y148{bottom:37.920000pt;}
.yc{bottom:44.800000pt;}
.y123{bottom:46.240000pt;}
.y136{bottom:46.400000pt;}
.y147{bottom:46.880000pt;}
.y149{bottom:47.520000pt;}
.y140{bottom:48.000000pt;}
.y1a7{bottom:49.120000pt;}
.y14d{bottom:49.440000pt;}
.y13f{bottom:50.880000pt;}
.y17{bottom:51.360000pt;}
.y14a{bottom:55.520000pt;}
.y135{bottom:56.320000pt;}
.y122{bottom:56.960000pt;}
.y14{bottom:62.400000pt;}
.y125{bottom:67.200000pt;}
.y14c{bottom:67.360000pt;}
.y137{bottom:67.386667pt;}
.y16{bottom:70.912000pt;}
.yb{bottom:80.800000pt;}
.y12{bottom:82.106667pt;}
.y3{bottom:97.472000pt;}
.y9e{bottom:97.952000pt;}
.y4e{bottom:101.792000pt;}
.y9d{bottom:102.592000pt;}
.yf5{bottom:108.832000pt;}
.y6c{bottom:112.832000pt;}
.yae{bottom:114.112000pt;}
.y9c{bottom:114.912000pt;}
.yad{bottom:118.752000pt;}
.y172{bottom:119.872000pt;}
.y32{bottom:120.032000pt;}
.ybf{bottom:124.512000pt;}
.y15d{bottom:128.832000pt;}
.y133{bottom:130.432000pt;}
.y89{bottom:131.232000pt;}
.yfc{bottom:132.512000pt;}
.y132{bottom:135.066667pt;}
.y15b{bottom:135.546667pt;}
.y1c7{bottom:135.866667pt;}
.y4d{bottom:136.026667pt;}
.y15c{bottom:137.626667pt;}
.ye5{bottom:137.786667pt;}
.y6b{bottom:142.106667pt;}
.y1a2{bottom:143.386667pt;}
.y1e0{bottom:145.146667pt;}
.yf4{bottom:146.106667pt;}
.y131{bottom:146.746667pt;}
.y1b7{bottom:148.186667pt;}
.y171{bottom:149.146667pt;}
.y31{bottom:154.266667pt;}
.yd8{bottom:155.546667pt;}
.y15a{bottom:155.866667pt;}
.y9a{bottom:157.146667pt;}
.y88{bottom:160.506667pt;}
.ybe{bottom:161.786667pt;}
.y9b{bottom:162.426667pt;}
.y130{bottom:162.906667pt;}
.y1c6{bottom:165.146667pt;}
.y12f{bottom:167.546667pt;}
.y4c{bottom:170.266667pt;}
.y6a{bottom:171.386667pt;}
.y159{bottom:172.186667pt;}
.y1a1{bottom:172.666667pt;}
.y1df{bottom:174.106667pt;}
.ye4{bottom:175.066667pt;}
.y1b6{bottom:177.466667pt;}
.y170{bottom:178.426667pt;}
.y12e{bottom:180.026667pt;}
.yf3{bottom:183.386667pt;}
.y117{bottom:184.666667pt;}
.yd7{bottom:184.986667pt;}
.y99{bottom:186.426667pt;}
.y30{bottom:188.346667pt;}
.y87{bottom:189.786667pt;}
.ybd{bottom:191.066667pt;}
.y1c5{bottom:194.426667pt;}
.y1de{bottom:195.226667pt;}
.y69{bottom:200.666667pt;}
.y1a0{bottom:201.946667pt;}
.y4b{bottom:202.266667pt;}
.ye3{bottom:204.346667pt;}
.y158{bottom:204.666667pt;}
.y1b5{bottom:206.746667pt;}
.y157{bottom:209.306667pt;}
.yf2{bottom:212.666667pt;}
.y116{bottom:213.946667pt;}
.yd6{bottom:214.266667pt;}
.y98{bottom:215.706667pt;}
.y86{bottom:219.066667pt;}
.ybc{bottom:220.346667pt;}
.y156{bottom:221.786667pt;}
.y2f{bottom:222.586667pt;}
.y1c4{bottom:223.706667pt;}
.y1dd{bottom:224.346667pt;}
.y68{bottom:229.946667pt;}
.y19f{bottom:231.226667pt;}
.y12d{bottom:231.386667pt;}
.y4a{bottom:231.546667pt;}
.ye2{bottom:233.626667pt;}
.y1b4{bottom:236.026667pt;}
.yf1{bottom:241.946667pt;}
.yd5{bottom:243.546667pt;}
.y97{bottom:244.986667pt;}
.y1dc{bottom:245.466667pt;}
.y85{bottom:248.346667pt;}
.ybb{bottom:249.626667pt;}
.y115{bottom:251.226667pt;}
.y1c3{bottom:252.986667pt;}
.y2e{bottom:256.666667pt;}
.y67{bottom:259.226667pt;}
.y19e{bottom:260.346667pt;}
.y12c{bottom:260.666667pt;}
.y49{bottom:260.826667pt;}
.ye1{bottom:263.066667pt;}
.y1b3{bottom:265.306667pt;}
.yf0{bottom:271.226667pt;}
.yd4{bottom:272.826667pt;}
.y96{bottom:274.266667pt;}
.y1db{bottom:274.426667pt;}
.y19c{bottom:276.186667pt;}
.y84{bottom:277.626667pt;}
.yba{bottom:279.066667pt;}
.y114{bottom:280.506667pt;}
.y1c2{bottom:282.266667pt;}
.ye{bottom:287.386667pt;}
.y66{bottom:288.506667pt;}
.y12b{bottom:289.946667pt;}
.y48{bottom:290.106667pt;}
.y155{bottom:290.266667pt;}
.y2d{bottom:290.906667pt;}
.ye0{bottom:292.346667pt;}
.y1b2{bottom:294.426667pt;}
.y1da{bottom:295.546667pt;}
.yef{bottom:300.546667pt;}
.y95{bottom:303.746667pt;}
.yb9{bottom:308.386667pt;}
.y113{bottom:309.826667pt;}
.yd3{bottom:310.146667pt;}
.y1b1{bottom:310.306667pt;}
.y1c1{bottom:311.746667pt;}
.y19a{bottom:312.066667pt;}
.y83{bottom:314.946667pt;}
.y65{bottom:317.986667pt;}
.y12a{bottom:319.266667pt;}
.y47{bottom:319.426667pt;}
.y154{bottom:319.586667pt;}
.ydf{bottom:321.346667pt;}
.y1d9{bottom:324.706667pt;}
.y2c{bottom:325.186667pt;}
.ya{bottom:326.626667pt;}
.y94{bottom:333.026667pt;}
.yac{bottom:336.226667pt;}
.yb8{bottom:337.666667pt;}
.yee{bottom:337.826667pt;}
.yd2{bottom:339.426667pt;}
.y112{bottom:339.746667pt;}
.y1b0{bottom:341.026667pt;}
.y82{bottom:344.226667pt;}
.y1d8{bottom:345.826667pt;}
.y198{bottom:347.746667pt;}
.y129{bottom:348.546667pt;}
.y46{bottom:348.706667pt;}
.y153{bottom:348.866667pt;}
.y64{bottom:355.266667pt;}
.yde{bottom:358.786667pt;}
.y2b{bottom:359.266667pt;}
.y16f{bottom:362.306667pt;}
.y93{bottom:362.786667pt;}
.yab{bottom:365.506667pt;}
.yc5{bottom:366.306667pt;}
.yb7{bottom:366.946667pt;}
.yed{bottom:367.106667pt;}
.yd1{bottom:368.706667pt;}
.y1c0{bottom:370.306667pt;}
.yc6{bottom:371.586667pt;}
.y111{bottom:371.746667pt;}
.y81{bottom:373.506667pt;}
.y1d7{bottom:374.786667pt;}
.y128{bottom:377.826667pt;}
.y45{bottom:377.986667pt;}
.y196{bottom:383.586667pt;}
.y63{bottom:384.546667pt;}
.y152{bottom:386.306667pt;}
.y16e{bottom:391.586667pt;}
.y2a{bottom:393.506667pt;}
.y92{bottom:394.786667pt;}
.yc4{bottom:395.586667pt;}
.y1d6{bottom:395.906667pt;}
.ydd{bottom:396.066667pt;}
.yb6{bottom:396.226667pt;}
.yec{bottom:396.386667pt;}
.yd0{bottom:397.986667pt;}
.yfb{bottom:398.626667pt;}
.y1bf{bottom:399.586667pt;}
.y110{bottom:401.026667pt;}
.y1ae{bottom:402.466667pt;}
.y80{bottom:402.786667pt;}
.y127{bottom:407.106667pt;}
.y44{bottom:407.266667pt;}
.y62{bottom:413.826667pt;}
.y150{bottom:415.586667pt;}
.y192{bottom:419.426667pt;}
.yfa{bottom:419.746667pt;}
.y151{bottom:420.866667pt;}
.yaa{bottom:424.226667pt;}
.yc3{bottom:424.866667pt;}
.y1d5{bottom:425.026667pt;}
.ydc{bottom:425.346667pt;}
.yb5{bottom:425.506667pt;}
.yeb{bottom:425.826667pt;}
.ycf{bottom:427.266667pt;}
.y29{bottom:427.746667pt;}
.y1be{bottom:428.866667pt;}
.y10f{bottom:430.306667pt;}
.y91{bottom:432.226667pt;}
.y1ad{bottom:434.626667pt;}
.y126{bottom:436.546667pt;}
.y43{bottom:436.706667pt;}
.y7f{bottom:440.226667pt;}
.y61{bottom:443.106667pt;}
.y13{bottom:443.746667pt;}
.y14e{bottom:444.706667pt;}
.y1d4{bottom:445.986667pt;}
.y14f{bottom:448.706667pt;}
.y16d{bottom:450.146667pt;}
.y121{bottom:451.746667pt;}
.ya9{bottom:453.506667pt;}
.yc2{bottom:454.146667pt;}
.ydb{bottom:454.626667pt;}
.yea{bottom:455.106667pt;}
.yce{bottom:456.546667pt;}
.y1bd{bottom:458.146667pt;}
.y10e{bottom:459.746667pt;}
.y191{bottom:460.866667pt;}
.y90{bottom:461.506667pt;}
.y28{bottom:461.826667pt;}
.y146{bottom:462.306667pt;}
.yb4{bottom:462.786667pt;}
.y1ac{bottom:465.346667pt;}
.y42{bottom:465.986667pt;}
.y1d3{bottom:469.026667pt;}
.y7e{bottom:469.506667pt;}
.y60{bottom:472.386667pt;}
.ya8{bottom:482.786667pt;}
.yc1{bottom:483.426667pt;}
.ye9{bottom:484.386667pt;}
.ycd{bottom:485.986667pt;}
.yda{bottom:486.306667pt;}
.y16c{bottom:487.426667pt;}
.y10d{bottom:489.026667pt;}
.y11{bottom:489.346667pt;}
.y8f{bottom:490.786667pt;}
.yb3{bottom:491.906667pt;}
.y27{bottom:496.066667pt;}
.y190{bottom:496.546667pt;}
.y41{bottom:497.346667pt;}
.y7d{bottom:498.786667pt;}
.y5f{bottom:501.666667pt;}
.yd9{bottom:507.426667pt;}
.ya7{bottom:512.066667pt;}
.yc0{bottom:512.706667pt;}
.ye8{bottom:513.666667pt;}
.ycc{bottom:515.266667pt;}
.y16b{bottom:516.706667pt;}
.y10c{bottom:518.306667pt;}
.y8e{bottom:520.066667pt;}
.yb2{bottom:521.026667pt;}
.y1a9{bottom:526.786667pt;}
.y7c{bottom:528.066667pt;}
.y26{bottom:530.146667pt;}
.y5e{bottom:530.946667pt;}
.y40{bottom:531.586667pt;}
.y18c{bottom:532.386667pt;}
.yb1{bottom:542.013333pt;}
.ye7{bottom:542.973333pt;}
.y1d2{bottom:544.093333pt;}
.ycb{bottom:544.573333pt;}
.y16a{bottom:546.013333pt;}
.y10b{bottom:547.613333pt;}
.y8d{bottom:549.373333pt;}
.y120{bottom:555.133333pt;}
.y7b{bottom:557.373333pt;}
.y1a6{bottom:557.533333pt;}
.y5d{bottom:560.893333pt;}
.y25{bottom:564.413333pt;}
.y3f{bottom:565.693333pt;}
.y18b{bottom:568.253333pt;}
.y1d1{bottom:573.373333pt;}
.yb0{bottom:573.693333pt;}
.yca{bottom:573.853333pt;}
.y169{bottom:575.453333pt;}
.y10a{bottom:576.893333pt;}
.y8c{bottom:578.653333pt;}
.ye6{bottom:582.013333pt;}
.y11f{bottom:584.413333pt;}
.y7a{bottom:586.653333pt;}
.y109{bottom:592.733333pt;}
.y5c{bottom:592.893333pt;}
.y145{bottom:594.973333pt;}
.y1bc{bottom:597.213333pt;}
.y24{bottom:598.653333pt;}
.y3e{bottom:599.933333pt;}
.y1d0{bottom:602.653333pt;}
.yaf{bottom:603.133333pt;}
.y189{bottom:604.093333pt;}
.y168{bottom:604.733333pt;}
.yc9{bottom:611.133333pt;}
.y108{bottom:612.893333pt;}
.y11e{bottom:613.693333pt;}
.y79{bottom:615.933333pt;}
.ya6{bottom:623.933333pt;}
.y143{bottom:624.253333pt;}
.y5b{bottom:624.413333pt;}
.y144{bottom:629.533333pt;}
.y1cf{bottom:631.933333pt;}
.y23{bottom:632.733333pt;}
.y107{bottom:633.213333pt;}
.y167{bottom:634.013333pt;}
.y3d{bottom:634.173333pt;}
.y1bb{bottom:637.213333pt;}
.y1a5{bottom:637.693333pt;}
.y185{bottom:639.773333pt;}
.yc8{bottom:640.253333pt;}
.y11d{bottom:642.973333pt;}
.y78{bottom:645.213333pt;}
.ya5{bottom:653.213333pt;}
.y106{bottom:653.373333pt;}
.y142{bottom:653.693333pt;}
.y5a{bottom:656.413333pt;}
.y1ce{bottom:661.213333pt;}
.y166{bottom:663.293333pt;}
.y22{bottom:666.973333pt;}
.y3c{bottom:668.253333pt;}
.y1a4{bottom:671.293333pt;}
.yc7{bottom:671.933333pt;}
.y1eb{bottom:672.093333pt;}
.y11c{bottom:672.253333pt;}
.y105{bottom:673.533333pt;}
.y77{bottom:674.493333pt;}
.y183{bottom:675.613333pt;}
.ya4{bottom:682.493333pt;}
.y141{bottom:682.973333pt;}
.y59{bottom:685.693333pt;}
.y1cd{bottom:690.493333pt;}
.y103{bottom:693.693333pt;}
.y13e{bottom:698.173333pt;}
.y165{bottom:700.573333pt;}
.y21{bottom:701.213333pt;}
.y3b{bottom:702.493333pt;}
.y76{bottom:703.933333pt;}
.y11b{bottom:709.533333pt;}
.y182{bottom:711.453333pt;}
.ya3{bottom:711.933333pt;}
.y58{bottom:714.973333pt;}
.y1cc{bottom:719.933333pt;}
.y164{bottom:729.853333pt;}
.y102{bottom:730.333333pt;}
.y1ea{bottom:733.053333pt;}
.y8b{bottom:733.213333pt;}
.y20{bottom:735.293333pt;}
.y3a{bottom:736.733333pt;}
.y119{bottom:738.813333pt;}
.y75{bottom:741.213333pt;}
.y11a{bottom:742.813333pt;}
.y57{bottom:744.253333pt;}
.y101{bottom:745.053333pt;}
.y17e{bottom:747.293333pt;}
.y1cb{bottom:749.213333pt;}
.y163{bottom:759.133333pt;}
.y1e9{bottom:762.013333pt;}
.y1ba{bottom:762.493333pt;}
.y1f{bottom:769.533333pt;}
.y74{bottom:770.493333pt;}
.y39{bottom:770.813333pt;}
.y56{bottom:773.533333pt;}
.y1ca{bottom:778.533333pt;}
.y100{bottom:778.693333pt;}
.y17b{bottom:783.013333pt;}
.y1e8{bottom:783.173333pt;}
.y13d{bottom:785.093333pt;}
.y162{bottom:788.453333pt;}
.y1b9{bottom:791.813333pt;}
.y73{bottom:799.813333pt;}
.y55{bottom:802.853333pt;}
.y1e{bottom:803.653333pt;}
.y38{bottom:805.093333pt;}
.y1c9{bottom:807.813333pt;}
.yff{bottom:807.973333pt;}
.y1e7{bottom:812.293333pt;}
.y13c{bottom:814.373333pt;}
.y161{bottom:817.733333pt;}
.y178{bottom:819.493333pt;}
.y72{bottom:829.093333pt;}
.y54{bottom:832.133333pt;}
.y1e6{bottom:833.253333pt;}
.y1c8{bottom:837.093333pt;}
.yfe{bottom:837.253333pt;}
.y1d{bottom:837.893333pt;}
.y37{bottom:839.173333pt;}
.y13b{bottom:843.653333pt;}
.y160{bottom:847.013333pt;}
.y176{bottom:847.333333pt;}
.y1a3{bottom:847.653333pt;}
.y71{bottom:858.373333pt;}
.yf9{bottom:858.533333pt;}
.y53{bottom:861.573333pt;}
.y1e5{bottom:862.373333pt;}
.ya2{bottom:866.373333pt;}
.yfd{bottom:866.533333pt;}
.y1c{bottom:872.133333pt;}
.y13a{bottom:872.933333pt;}
.y36{bottom:873.413333pt;}
.y15f{bottom:876.453333pt;}
.y70{bottom:887.653333pt;}
.y52{bottom:890.853333pt;}
.y1e4{bottom:891.493333pt;}
.ya1{bottom:895.653333pt;}
.yf8{bottom:895.973333pt;}
.y174{bottom:897.093333pt;}
.y139{bottom:902.373333pt;}
.y15e{bottom:906.213333pt;}
.y35{bottom:907.653333pt;}
.y1b{bottom:912.133333pt;}
.y6f{bottom:916.933333pt;}
.y51{bottom:920.133333pt;}
.y1e3{bottom:920.613333pt;}
.y8{bottom:922.213333pt;}
.ya0{bottom:924.933333pt;}
.yf7{bottom:925.253333pt;}
.y138{bottom:931.653333pt;}
.y6{bottom:932.133333pt;}
.y1a{bottom:941.413333pt;}
.y1e2{bottom:941.573333pt;}
.y34{bottom:941.733333pt;}
.y6e{bottom:946.213333pt;}
.y134{bottom:946.853333pt;}
.y50{bottom:949.413333pt;}
.y173{bottom:949.893333pt;}
.y8a{bottom:954.213333pt;}
.yf6{bottom:954.533333pt;}
.y9f{bottom:959.493333pt;}
.y19{bottom:970.693333pt;}
.y33{bottom:975.973333pt;}
.y4f{bottom:978.693333pt;}
.y6d{bottom:983.493333pt;}
.y2{bottom:983.813333pt;}
.y1b8{bottom:988.773333pt;}
.y1e1{bottom:991.813333pt;}
.y18{bottom:1010.213333pt;}
.y1{bottom:1012.960000pt;}
.y118{bottom:1018.240000pt;}
.h19{height:19.520000pt;}
.hb{height:21.792000pt;}
.h32{height:27.200000pt;}
.h3d{height:30.720000pt;}
.h3c{height:30.752000pt;}
.h3e{height:32.160000pt;}
.h15{height:34.374375pt;}
.h30{height:35.680000pt;}
.h35{height:35.712000pt;}
.h33{height:35.840000pt;}
.h39{height:35.872000pt;}
.h18{height:38.625000pt;}
.h3a{height:41.440000pt;}
.h14{height:42.649687pt;}
.h34{height:42.745000pt;}
.h37{height:47.742188pt;}
.h31{height:49.760000pt;}
.h11{height:51.500000pt;}
.h16{height:52.834688pt;}
.h1f{height:58.563750pt;}
.h13{height:60.937500pt;}
.h3b{height:63.040000pt;}
.h8{height:63.656250pt;}
.h24{height:64.800000pt;}
.h2{height:65.531250pt;}
.h17{height:66.625000pt;}
.h1b{height:66.937187pt;}
.h10{height:71.296875pt;}
.h4{height:74.477812pt;}
.h6{height:76.671562pt;}
.h12{height:77.951250pt;}
.ha{height:81.046875pt;}
.h1c{height:81.120000pt;}
.h21{height:81.312000pt;}
.h2d{height:82.922188pt;}
.he{height:85.440000pt;}
.h36{height:87.406786pt;}
.h5{height:87.712000pt;}
.hf{height:91.406250pt;}
.h20{height:91.913750pt;}
.h2e{height:93.162188pt;}
.h7{height:96.512000pt;}
.h38{height:96.884631pt;}
.h1a{height:99.906250pt;}
.h9{height:101.120000pt;}
.h3{height:103.200000pt;}
.h2f{height:109.780854pt;}
.h25{height:111.426250pt;}
.h2c{height:118.762188pt;}
.h2a{height:118.793750pt;}
.h26{height:123.882187pt;}
.h28{height:127.753750pt;}
.h23{height:139.586250pt;}
.h1d{height:140.553750pt;}
.hc{height:143.066667pt;}
.h22{height:144.812917pt;}
.h1e{height:145.346250pt;}
.h27{height:159.722188pt;}
.h2b{height:164.842188pt;}
.h29{height:173.162187pt;}
.hd{height:243.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:56.672000pt;}
.w17{width:56.800000pt;}
.w16{width:65.792000pt;}
.w1b{width:72.960000pt;}
.w1a{width:75.520000pt;}
.wb{width:78.720000pt;}
.wd{width:95.360000pt;}
.wc{width:95.392000pt;}
.we{width:95.552000pt;}
.w1c{width:108.160000pt;}
.w20{width:117.472000pt;}
.w1f{width:117.632000pt;}
.w21{width:117.920000pt;}
.w7{width:121.472000pt;}
.w12{width:129.632000pt;}
.w19{width:132.320000pt;}
.w13{width:138.880000pt;}
.w10{width:141.440000pt;}
.w4{width:171.066667pt;}
.w14{width:179.266667pt;}
.w5{width:223.866667pt;}
.w1d{width:235.906667pt;}
.w1e{width:236.026667pt;}
.w15{width:261.946667pt;}
.w9{width:405.053333pt;}
.w11{width:444.706667pt;}
.wf{width:489.213333pt;}
.w3{width:490.653333pt;}
.w6{width:498.493333pt;}
.w8{width:545.373333pt;}
.wa{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.880000pt;}
.xc{left:9.600000pt;}
.x3c{left:14.400000pt;}
.x10{left:16.154667pt;}
.x54{left:18.080000pt;}
.x53{left:20.640000pt;}
.xa{left:25.600000pt;}
.x5c{left:26.560000pt;}
.x55{left:29.114667pt;}
.x12{left:32.320000pt;}
.x4f{left:34.080000pt;}
.x5b{left:36.474667pt;}
.x52{left:38.600000pt;}
.x51{left:39.680000pt;}
.x39{left:48.960000pt;}
.x34{left:54.720000pt;}
.x37{left:56.000000pt;}
.xb{left:58.560000pt;}
.x4a{left:72.040000pt;}
.x57{left:74.600000pt;}
.x35{left:85.594667pt;}
.x13{left:94.120000pt;}
.x4c{left:100.960000pt;}
.x31{left:103.834667pt;}
.x30{left:106.272000pt;}
.xe{left:111.866667pt;}
.x15{left:113.471988pt;}
.x7{left:115.072000pt;}
.x1b{left:117.791988pt;}
.xf{left:122.432000pt;}
.x17{left:137.466655pt;}
.x19{left:142.586643pt;}
.x9{left:147.546667pt;}
.x3d{left:158.114667pt;}
.x5f{left:161.466655pt;}
.x6{left:163.560000pt;}
.x4{left:169.160000pt;}
.x3e{left:179.234667pt;}
.x2{left:189.626667pt;}
.x11{left:194.106667pt;}
.x32{left:195.874667pt;}
.x8{left:199.554667pt;}
.x2e{left:201.626643pt;}
.x27{left:202.586667pt;}
.x3{left:204.520000pt;}
.x2f{left:207.546655pt;}
.x56{left:215.066667pt;}
.x24{left:219.546655pt;}
.x1f{left:222.586655pt;}
.x25{left:225.146655pt;}
.x43{left:228.186643pt;}
.x44{left:234.106655pt;}
.x3f{left:244.834667pt;}
.x49{left:246.106667pt;}
.x45{left:249.666655pt;}
.x40{left:252.514667pt;}
.x28{left:298.626667pt;}
.x1a{left:305.506655pt;}
.x4d{left:311.906667pt;}
.x46{left:315.746655pt;}
.x38{left:316.861333pt;}
.x36{left:317.981333pt;}
.x16{left:327.906655pt;}
.x59{left:333.346667pt;}
.xd{left:335.746667pt;}
.x1{left:352.386655pt;}
.x18{left:365.506655pt;}
.x4e{left:368.706667pt;}
.x23{left:388.866655pt;}
.x14{left:392.866655pt;}
.x29{left:394.626667pt;}
.x41{left:398.941333pt;}
.x4b{left:425.373333pt;}
.x58{left:451.613333pt;}
.x1c{left:482.813310pt;}
.x1d{left:488.253322pt;}
.x2a{left:490.813333pt;}
.x3a{left:502.333310pt;}
.x5{left:505.213333pt;}
.x3b{left:507.773322pt;}
.x47{left:526.333322pt;}
.x42{left:550.973333pt;}
.x50{left:557.693333pt;}
.x20{left:560.093310pt;}
.x48{left:563.453322pt;}
.x21{left:565.533322pt;}
.x5d{left:567.773310pt;}
.x5a{left:570.173333pt;}
.x5e{left:573.213322pt;}
.x2b{left:586.853333pt;}
.x33{left:595.493333pt;}
.x2c{left:600.133310pt;}
.x2d{left:605.573322pt;}
.x22{left:615.013322pt;}
.x1e{left:680.453322pt;}
}




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