
    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_f170e128c03d862fc9470bc2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fca0c7ff6f08e3df3bd7d2e5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_f4fc1c185b7c65f56d1034b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_923435c45959f46c6a50b74b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_9bb158f80ce4576d94e9eee6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.142090;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_4dcc38d206e3bd72af0e1130.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.866699;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_a8229badf5e3ddd93d2b1cc7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_878985a3208f60856d9947da.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4d1bac612dfc7de8ae02cf75.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941406;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:ffc;src:url('chunks/assets/font_bdaea07d4a658e8b733defbb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.936035;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;}
.m4{transform:matrix(0.000000,-0.250321,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250321,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250321,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.240194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240194,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-46.482941px;}
.v4{vertical-align:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:28.265518px;}
.ls23{letter-spacing:-1.138346px;}
.ls25{letter-spacing:-1.008000px;}
.lsc{letter-spacing:-0.936000px;}
.ls22{letter-spacing:-0.869956px;}
.lsb{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.584400px;}
.ls7{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.334200px;}
.ls14{letter-spacing:-0.089400px;}
.ls8{letter-spacing:-0.028800px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.027360px;}
.lse{letter-spacing:0.057600px;}
.ls1f{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.lsa{letter-spacing:0.126720px;}
.ls1a{letter-spacing:0.135600px;}
.ls17{letter-spacing:0.152400px;}
.lsd{letter-spacing:0.167040px;}
.ls4{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.241920px;}
.ls9{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.334080px;}
.ls1{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.385920px;}
.ls6{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.805172px;}
.ls11{letter-spacing:4.680000px;}
.ls19{letter-spacing:5.940000px;}
.ls5{letter-spacing:6.660000px;}
.ls18{letter-spacing:7.380000px;}
.ls16{letter-spacing:69.120000px;}
.ls1d{letter-spacing:160.419216px;}
.ls1b{letter-spacing:160.432090px;}
.ls1c{letter-spacing:161.951218px;}
.ls1e{letter-spacing:162.028462px;}
.ls12{letter-spacing:738.161287px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-39.956031px;}
.ws4{word-spacing:-19.764000px;}
.wsc{word-spacing:-18.194914px;}
.ws10{word-spacing:-16.712400px;}
.wsb{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.840000px;}
.wsf{word-spacing:-15.505800px;}
.ws1{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.247360px;}
.ws3{word-spacing:-14.220000px;}
.ws17{word-spacing:-13.385983px;}
.ws14{word-spacing:-12.580811px;}
.wsa{word-spacing:-10.440000px;}
.ws9{word-spacing:-10.350600px;}
.ws13{word-spacing:-9.437477px;}
.ws28{word-spacing:-0.813270px;}
.ws6{word-spacing:-0.488880px;}
.ws5{word-spacing:-0.056880px;}
.ws0{word-spacing:0.000000px;}
.ws32{word-spacing:0.949200px;}
.ws36{word-spacing:2.513848px;}
.ws1d{word-spacing:2.596564px;}
.ws22{word-spacing:2.705308px;}
.ws38{word-spacing:9.557367px;}
.ws3a{word-spacing:9.577612px;}
.ws35{word-spacing:9.585132px;}
.ws3b{word-spacing:9.600171px;}
.ws31{word-spacing:13.071318px;}
.ws21{word-spacing:13.168494px;}
.ws37{word-spacing:14.773053px;}
.ws20{word-spacing:16.543621px;}
.ws18{word-spacing:18.297994px;}
.ws2a{word-spacing:20.008984px;}
.ws2d{word-spacing:20.045425px;}
.ws29{word-spacing:21.301771px;}
.ws39{word-spacing:23.587718px;}
.ws3c{word-spacing:26.452673px;}
.ws2e{word-spacing:30.357641px;}
.ws30{word-spacing:30.483160px;}
.ws3e{word-spacing:30.549100px;}
.ws1f{word-spacing:32.738451px;}
.ws3d{word-spacing:33.507760px;}
.ws1e{word-spacing:35.652571px;}
.ws19{word-spacing:39.135865px;}
.ws34{word-spacing:39.236512px;}
.ws33{word-spacing:40.472034px;}
.ws23{word-spacing:43.921201px;}
.ws1c{word-spacing:44.401874px;}
.ws2f{word-spacing:49.343385px;}
.ws1b{word-spacing:51.055533px;}
.ws27{word-spacing:54.308034px;}
.ws26{word-spacing:56.524570px;}
.ws25{word-spacing:56.536139px;}
.ws24{word-spacing:59.537023px;}
.ws2c{word-spacing:59.958697px;}
.ws2b{word-spacing:63.007592px;}
.wsd{word-spacing:83.399784px;}
.ws1a{word-spacing:96.435529px;}
.ws12{word-spacing:121.156716px;}
.ws16{word-spacing:1384.131532px;}
.ws15{word-spacing:1441.604724px;}
._23{margin-left:-367.701582px;}
._1c{margin-left:-358.407845px;}
._21{margin-left:-269.789684px;}
._1a{margin-left:-169.224706px;}
._1e{margin-left:-163.090957px;}
._1f{margin-left:-151.673288px;}
._22{margin-left:-139.776706px;}
._1b{margin-left:-132.524517px;}
._1d{margin-left:-123.245220px;}
._20{margin-left:-85.743439px;}
._19{margin-left:-72.801415px;}
._24{margin-left:-12.240000px;}
._12{margin-left:-4.308480px;}
._7{margin-left:-2.787120px;}
._1{margin-left:-1.430880px;}
._0{width:1.015920px;}
._2{width:2.811600px;}
._3{width:3.981600px;}
._6{width:5.005440px;}
._a{width:6.688800px;}
._f{width:8.010720px;}
._11{width:9.297120px;}
._14{width:10.485120px;}
._9{width:11.489760px;}
._13{width:12.729120px;}
._e{width:14.210640px;}
._8{width:15.300720px;}
._15{width:17.207520px;}
._5{width:19.111680px;}
._4{width:20.135520px;}
._10{width:21.262560px;}
._45{width:22.545600px;}
._16{width:23.606880px;}
._46{width:25.280640px;}
._47{width:26.621760px;}
._37{width:27.673281px;}
._41{width:29.099186px;}
._28{width:30.122400px;}
._27{width:31.210080px;}
._32{width:33.505625px;}
._3b{width:35.254538px;}
._3c{width:36.539578px;}
._42{width:38.472662px;}
._43{width:40.329968px;}
._29{width:42.741600px;}
._3e{width:44.557850px;}
._35{width:47.149083px;}
._36{width:48.606419px;}
._40{width:53.463280px;}
._38{width:57.543988px;}
._34{width:59.328541px;}
._44{width:60.696772px;}
._33{width:64.818023px;}
._3f{width:72.820624px;}
._39{width:79.900584px;}
._31{width:90.420833px;}
._3d{width:92.047573px;}
._26{width:129.634560px;}
._2a{width:132.090532px;}
._2d{width:134.222907px;}
._2e{width:135.716672px;}
._2b{width:137.460780px;}
._2f{width:138.962517px;}
._3a{width:147.599806px;}
._17{width:165.072480px;}
._25{width:198.000000px;}
._18{width:205.560000px;}
._d{width:212.959200px;}
._c{width:229.748400px;}
._b{width:230.869440px;}
._2c{width:257.707265px;}
._30{width:431.035574px;}
.fc4{color:rgb(30,45,83);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(80,80,80);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:26.232154px;}
.fs15{font-size:32.970400px;}
.fs10{font-size:33.904232px;}
.fs12{font-size:33.947759px;}
.fs9{font-size:36.000000px;}
.fsb{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:42.442094px;}
.fs13{font-size:47.835332px;}
.fs7{font-size:48.240000px;}
.fs14{font-size:50.323243px;}
.fs8{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:63.360000px;}
.fsc{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fse{font-size:72.779656px;}
.fsd{font-size:74.017386px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y168{bottom:-9.116021px;}
.y0{bottom:0.000000px;}
.y14d{bottom:0.439606px;}
.y15c{bottom:2.174904px;}
.y171{bottom:2.602929px;}
.y19a{bottom:3.470576px;}
.y150{bottom:3.470583px;}
.y10f{bottom:3.600000px;}
.y111{bottom:3.780000px;}
.y2d{bottom:3.960000px;}
.ye0{bottom:4.471127px;}
.yec{bottom:5.093526px;}
.y160{bottom:5.205867px;}
.y156{bottom:5.240572px;}
.ye7{bottom:5.344578px;}
.y1b9{bottom:5.645464px;}
.y153{bottom:6.501546px;}
.y167{bottom:6.941143px;}
.y14e{bottom:8.676428px;}
.y14a{bottom:8.676435px;}
.y16a{bottom:9.544071px;}
.ye8{bottom:9.899984px;}
.ye1{bottom:10.023930px;}
.y16c{bottom:10.851319px;}
.y173{bottom:10.874455px;}
.y175{bottom:11.707390px;}
.y18c{bottom:12.586601px;}
.y1a7{bottom:14.315638px;}
.y14c{bottom:16.485201px;}
.yea{bottom:16.823355px;}
.y177{bottom:18.220486px;}
.y170{bottom:18.243626px;}
.y192{bottom:19.516169px;}
.y199{bottom:19.516170px;}
.ye6{bottom:19.584480px;}
.y17c{bottom:19.955774px;}
.y11e{bottom:21.240000px;}
.y1bb{bottom:21.691054px;}
.y1b8{bottom:21.691059px;}
.y179{bottom:22.986733px;}
.y166{bottom:22.986738px;}
.y2c{bottom:23.940000px;}
.ye3{bottom:24.176351px;}
.y16e{bottom:24.733590px;}
.ye4{bottom:25.036202px;}
.yeb{bottom:25.216275px;}
.y18b{bottom:28.666901px;}
.ye5{bottom:29.592058px;}
.y1a6{bottom:30.367017px;}
.y146{bottom:33.047988px;}
.y141{bottom:33.047998px;}
.y26{bottom:34.200000px;}
.y195{bottom:35.573328px;}
.y191{bottom:35.573332px;}
.y198{bottom:35.573334px;}
.ye9{bottom:35.797087px;}
.y6{bottom:35.925007px;}
.y15e{bottom:36.440983px;}
.yed{bottom:36.945054px;}
.y11d{bottom:38.520000px;}
.y2b{bottom:41.220000px;}
.y18a{bottom:44.712496px;}
.y5b{bottom:45.180000px;}
.y87{bottom:45.900000px;}
.y1a5{bottom:46.447318px;}
.y1b6{bottom:46.447319px;}
.y145{bottom:50.071495px;}
.y140{bottom:50.071505px;}
.y17a{bottom:51.653628px;}
.y190{bottom:51.653633px;}
.y197{bottom:51.653634px;}
.y11c{bottom:55.800000px;}
.y2a{bottom:58.500000px;}
.y144{bottom:58.969162px;}
.y13f{bottom:58.969172px;}
.y189{bottom:60.769659px;}
.y5a{bottom:62.460000px;}
.y1a4{bottom:62.498697px;}
.y1b5{bottom:62.498698px;}
.y86{bottom:65.880000px;}
.y5{bottom:66.525004px;}
.y143{bottom:72.895729px;}
.y13e{bottom:72.895739px;}
.y11b{bottom:73.080000px;}
.y29{bottom:75.600000px;}
.y188{bottom:76.849960px;}
.y1a3{bottom:78.550076px;}
.y1b4{bottom:78.550077px;}
.y59{bottom:79.740000px;}
.y85{bottom:83.160000px;}
.y11a{bottom:90.360000px;}
.y28{bottom:92.880000px;}
.y187{bottom:92.895555px;}
.y1a2{bottom:94.630376px;}
.y1b3{bottom:94.630377px;}
.y58{bottom:97.020000px;}
.y4{bottom:97.125005px;}
.y84{bottom:100.440000px;}
.y119{bottom:107.460000px;}
.y186{bottom:108.952718px;}
.y27{bottom:110.160000px;}
.y1a1{bottom:110.681755px;}
.y1b2{bottom:110.681757px;}
.y57{bottom:114.120000px;}
.y83{bottom:117.720000px;}
.y185{bottom:125.033019px;}
.y1a0{bottom:126.731978px;}
.y1b1{bottom:126.731979px;}
.y56{bottom:131.400000px;}
.y82{bottom:134.820000px;}
.y23{bottom:139.264499px;}
.y184{bottom:141.078613px;}
.y19f{bottom:142.812278px;}
.y1b0{bottom:142.812279px;}
.y55{bottom:148.680000px;}
.y81{bottom:152.100000px;}
.y183{bottom:157.135777px;}
.y19e{bottom:158.869441px;}
.y1af{bottom:158.869443px;}
.yd5{bottom:165.810000px;}
.y1dc{bottom:168.690000px;}
.y1df{bottom:170.130000px;}
.y54{bottom:170.670000px;}
.y1d9{bottom:171.030000px;}
.y182{bottom:173.216077px;}
.y164{bottom:174.487008px;}
.y1ab{bottom:174.915031px;}
.y19d{bottom:174.915036px;}
.y1ae{bottom:174.915038px;}
.y134{bottom:178.410000px;}
.y7f{bottom:183.630000px;}
.y53{bottom:187.230000px;}
.yd4{bottom:188.310000px;}
.y1d8{bottom:189.030000px;}
.y204{bottom:189.210000px;}
.y181{bottom:189.261672px;}
.y1a9{bottom:190.995332px;}
.y19c{bottom:190.995337px;}
.y1ad{bottom:190.995338px;}
.y1de{bottom:192.630000px;}
.yac{bottom:193.170000px;}
.y227{bottom:194.250000px;}
.y1a{bottom:196.933500px;}
.y13c{bottom:200.190000px;}
.y148{bottom:200.550000px;}
.y163{bottom:201.174636px;}
.y1ac{bottom:201.174639px;}
.y1aa{bottom:201.174646px;}
.y1a8{bottom:201.174647px;}
.y19b{bottom:201.174650px;}
.y158{bottom:203.143954px;}
.y52{bottom:203.790000px;}
.yd3{bottom:204.870000px;}
.y180{bottom:205.318835px;}
.yf2{bottom:205.590000px;}
.y7e{bottom:206.130000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y203{bottom:211.710000px;}
.y10c{bottom:215.130000px;}
.yab{bottom:215.670000px;}
.y226{bottom:216.750000px;}
.y133{bottom:217.830000px;}
.y1e0{bottom:218.010000px;}
.y51{bottom:220.170000px;}
.y18e{bottom:221.399131px;}
.y17f{bottom:221.399136px;}
.yd2{bottom:221.430000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y13b{bottom:222.690000px;}
.yf1{bottom:228.090000px;}
.y7d{bottom:228.630000px;}
.y202{bottom:234.210000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y10b{bottom:237.630000px;}
.yd1{bottom:237.810000px;}
.yaa{bottom:238.170000px;}
.y225{bottom:239.250000px;}
.y132{bottom:240.330000px;}
.y50{bottom:242.670000px;}
.y13a{bottom:245.010000px;}
.yf0{bottom:250.590000px;}
.y7c{bottom:251.130000px;}
.yd0{bottom:254.370000px;}
.y201{bottom:256.710000px;}
.y4f{bottom:259.230000px;}
.ycf{bottom:259.590000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y10a{bottom:260.130000px;}
.ya9{bottom:260.670000px;}
.y224{bottom:261.750000px;}
.y139{bottom:262.290000px;}
.y131{bottom:262.830000px;}
.y147{bottom:264.786834px;}
.y142{bottom:264.786843px;}
.yce{bottom:271.650000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.yef{bottom:273.090000px;}
.y7b{bottom:273.630000px;}
.y138{bottom:276.150000px;}
.y13d{bottom:276.390000px;}
.y200{bottom:279.210000px;}
.y4e{bottom:281.730000px;}
.y109{bottom:282.630000px;}
.ya8{bottom:283.170000px;}
.y223{bottom:284.250000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y130{bottom:285.330000px;}
.y7a{bottom:296.130000px;}
.y4d{bottom:298.290000px;}
.y1ff{bottom:301.710000px;}
.y108{bottom:305.130000px;}
.ya7{bottom:305.670000px;}
.y222{bottom:306.750000px;}
.y12f{bottom:307.830000px;}
.ycd{bottom:309.630000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.ye2{bottom:312.960000px;}
.y79{bottom:318.630000px;}
.y4c{bottom:319.890000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y1fe{bottom:324.210000px;}
.y107{bottom:327.630000px;}
.ya6{bottom:328.170000px;}
.y221{bottom:329.250000px;}
.y12e{bottom:330.330000px;}
.y4b{bottom:331.950000px;}
.ycc{bottom:332.130000px;}
.yee{bottom:336.810000px;}
.y78{bottom:341.130000px;}
.y1fd{bottom:346.710000px;}
.y11{bottom:348.133500px;}
.y106{bottom:350.130000px;}
.ya5{bottom:350.670000px;}
.y220{bottom:351.750000px;}
.y12d{bottom:352.830000px;}
.ycb{bottom:354.630000px;}
.y1dd{bottom:360.210000px;}
.y77{bottom:363.630000px;}
.y1fc{bottom:369.210000px;}
.ydf{bottom:370.709959px;}
.y105{bottom:372.630000px;}
.ya4{bottom:373.170000px;}
.y21f{bottom:374.250000px;}
.yde{bottom:375.150000px;}
.y12c{bottom:375.330000px;}
.yca{bottom:377.130000px;}
.y4a{bottom:383.790000px;}
.y76{bottom:386.130000px;}
.y1d6{bottom:386.715000px;}
.y10{bottom:386.785499px;}
.y162{bottom:388.699399px;}
.y1fb{bottom:391.755000px;}
.y1d7{bottom:393.555000px;}
.y104{bottom:395.175000px;}
.ya3{bottom:395.715000px;}
.y21e{bottom:396.795000px;}
.y12b{bottom:397.875000px;}
.yc9{bottom:399.675000px;}
.ydd{bottom:400.215000px;}
.y161{bottom:405.184599px;}
.y1ba{bottom:405.184610px;}
.y1b7{bottom:405.184613px;}
.yf{bottom:408.044999px;}
.y75{bottom:408.675000px;}
.y49{bottom:409.215000px;}
.y1fa{bottom:414.255000px;}
.y103{bottom:417.675000px;}
.ya2{bottom:418.215000px;}
.y21d{bottom:419.295000px;}
.y12a{bottom:420.375000px;}
.y15f{bottom:421.669799px;}
.yc8{bottom:422.175000px;}
.ydc{bottom:422.715000px;}
.y74{bottom:431.175000px;}
.y48{bottom:434.775000px;}
.y1f9{bottom:436.755000px;}
.y15d{bottom:439.924989px;}
.y196{bottom:439.924992px;}
.y194{bottom:439.924999px;}
.y193{bottom:439.925000px;}
.y18f{bottom:439.925003px;}
.y102{bottom:440.175000px;}
.ya1{bottom:440.715000px;}
.y21c{bottom:441.795000px;}
.y129{bottom:442.875000px;}
.yc7{bottom:444.675000px;}
.ydb{bottom:445.215000px;}
.y47{bottom:451.335000px;}
.y73{bottom:453.675000px;}
.y1f8{bottom:459.255000px;}
.y101{bottom:462.675000px;}
.ya0{bottom:463.215000px;}
.y21b{bottom:464.295000px;}
.y128{bottom:465.375000px;}
.yc6{bottom:467.175000px;}
.y46{bottom:467.715000px;}
.y1d5{bottom:476.175000px;}
.y1f7{bottom:481.755000px;}
.y45{bottom:484.275000px;}
.ye{bottom:484.864502px;}
.y100{bottom:485.175000px;}
.y9f{bottom:485.715000px;}
.y72{bottom:486.255000px;}
.y21a{bottom:486.795000px;}
.y127{bottom:487.875000px;}
.y15b{bottom:489.403726px;}
.yc5{bottom:489.675000px;}
.y1d4{bottom:498.675000px;}
.y44{bottom:500.835000px;}
.yd{bottom:502.864502px;}
.y1f6{bottom:504.255000px;}
.y15a{bottom:504.593248px;}
.y17d{bottom:504.593259px;}
.y17b{bottom:504.593262px;}
.yff{bottom:507.675000px;}
.y9e{bottom:508.215000px;}
.y219{bottom:509.295000px;}
.y126{bottom:510.375000px;}
.yc4{bottom:512.175000px;}
.y43{bottom:517.215000px;}
.yc{bottom:520.864502px;}
.y159{bottom:521.078448px;}
.y1d3{bottom:521.175000px;}
.y71{bottom:525.675000px;}
.y1f5{bottom:526.755000px;}
.yfe{bottom:530.175000px;}
.y9d{bottom:530.715000px;}
.y218{bottom:531.795000px;}
.y125{bottom:532.875000px;}
.y42{bottom:533.775000px;}
.yc3{bottom:534.675000px;}
.y16b{bottom:537.586795px;}
.yb{bottom:538.864499px;}
.y1d2{bottom:543.675000px;}
.y70{bottom:548.175000px;}
.yda{bottom:548.715000px;}
.y1f4{bottom:549.255000px;}
.y41{bottom:550.335000px;}
.yfd{bottom:552.675000px;}
.y9c{bottom:553.215000px;}
.y217{bottom:554.295000px;}
.y124{bottom:555.375000px;}
.ya{bottom:556.864499px;}
.yc2{bottom:557.175000px;}
.y1d1{bottom:566.175000px;}
.y40{bottom:566.715000px;}
.y157{bottom:568.821901px;}
.y18d{bottom:568.821912px;}
.y17e{bottom:568.821916px;}
.y6f{bottom:570.675000px;}
.yd9{bottom:571.215000px;}
.y1f3{bottom:571.755000px;}
.yfc{bottom:575.175000px;}
.y9b{bottom:575.715000px;}
.y216{bottom:576.795000px;}
.y123{bottom:577.875000px;}
.y1db{bottom:578.235000px;}
.yc1{bottom:579.675000px;}
.y3f{bottom:583.275000px;}
.y1d0{bottom:588.675000px;}
.y6e{bottom:593.175000px;}
.yd8{bottom:593.715000px;}
.y1f2{bottom:594.255000px;}
.y1da{bottom:596.235000px;}
.yfb{bottom:597.675000px;}
.y9a{bottom:598.215000px;}
.y215{bottom:599.295000px;}
.y3e{bottom:599.835000px;}
.y122{bottom:600.375000px;}
.yc0{bottom:602.175000px;}
.y137{bottom:604.695000px;}
.y1cf{bottom:611.175000px;}
.y6d{bottom:615.675000px;}
.y3d{bottom:616.215000px;}
.y1f1{bottom:616.755000px;}
.yfa{bottom:620.205000px;}
.y99{bottom:620.745000px;}
.y214{bottom:621.825000px;}
.y121{bottom:622.905000px;}
.ybf{bottom:624.705000px;}
.y3c{bottom:632.805000px;}
.y1ce{bottom:633.705000px;}
.y6c{bottom:638.205000px;}
.yd7{bottom:638.745000px;}
.y1f0{bottom:639.285000px;}
.yf9{bottom:642.705000px;}
.y98{bottom:643.245000px;}
.y136{bottom:644.325000px;}
.y120{bottom:645.405000px;}
.y9{bottom:645.510000px;}
.ybe{bottom:647.205000px;}
.y3b{bottom:649.365000px;}
.y1cd{bottom:656.205000px;}
.y6b{bottom:660.705000px;}
.y1ef{bottom:661.785000px;}
.yf8{bottom:665.205000px;}
.y3a{bottom:665.565000px;}
.y97{bottom:665.745000px;}
.y8{bottom:666.771000px;}
.y213{bottom:666.825000px;}
.y11f{bottom:667.905000px;}
.y135{bottom:668.265000px;}
.ybd{bottom:669.705000px;}
.yd6{bottom:671.325000px;}
.y1cc{bottom:678.705000px;}
.y39{bottom:682.125000px;}
.y6a{bottom:683.205000px;}
.y1ee{bottom:684.285000px;}
.y118{bottom:686.985000px;}
.yf7{bottom:687.705000px;}
.y96{bottom:688.245000px;}
.y212{bottom:689.325000px;}
.ybc{bottom:692.205000px;}
.y1cb{bottom:701.205000px;}
.y38{bottom:704.625000px;}
.y69{bottom:705.705000px;}
.y1ed{bottom:706.785000px;}
.yf6{bottom:710.205000px;}
.y95{bottom:710.745000px;}
.y211{bottom:711.825000px;}
.ybb{bottom:714.705000px;}
.y1ca{bottom:723.705000px;}
.y7{bottom:726.298500px;}
.y37{bottom:727.125000px;}
.y68{bottom:728.205000px;}
.y1ec{bottom:729.285000px;}
.yf5{bottom:732.705000px;}
.y94{bottom:733.245000px;}
.y210{bottom:734.325000px;}
.yba{bottom:737.205000px;}
.y1c9{bottom:746.205000px;}
.y36{bottom:749.625000px;}
.y67{bottom:750.705000px;}
.y1eb{bottom:751.785000px;}
.y3{bottom:752.599495px;}
.y93{bottom:755.745000px;}
.y20f{bottom:756.825000px;}
.yb9{bottom:759.705000px;}
.y232{bottom:761.505000px;}
.yf4{bottom:765.285000px;}
.y1c8{bottom:768.705000px;}
.y35{bottom:772.125000px;}
.y66{bottom:773.205000px;}
.y1ea{bottom:774.285000px;}
.y92{bottom:778.245000px;}
.y20e{bottom:779.325000px;}
.yb8{bottom:782.205000px;}
.y231{bottom:784.005000px;}
.y155{bottom:784.980473px;}
.y1c7{bottom:791.205000px;}
.y34{bottom:794.625000px;}
.y65{bottom:795.705000px;}
.y1e9{bottom:796.785000px;}
.y91{bottom:800.745000px;}
.y20d{bottom:801.825000px;}
.y154{bottom:803.235663px;}
.y178{bottom:803.235674px;}
.y165{bottom:803.235678px;}
.yb7{bottom:804.705000px;}
.y230{bottom:807.045000px;}
.y1c6{bottom:813.705000px;}
.y33{bottom:817.125000px;}
.y64{bottom:818.205000px;}
.y1e8{bottom:819.285000px;}
.y152{bottom:819.720863px;}
.y90{bottom:823.245000px;}
.y20c{bottom:824.325000px;}
.yb6{bottom:827.205000px;}
.y22f{bottom:828.285000px;}
.y1c5{bottom:836.205000px;}
.y117{bottom:837.285000px;}
.y151{bottom:839.271732px;}
.y176{bottom:839.271743px;}
.y174{bottom:839.271747px;}
.y32{bottom:839.625000px;}
.y63{bottom:840.705000px;}
.y1e7{bottom:841.785000px;}
.y8f{bottom:845.745000px;}
.y20b{bottom:846.825000px;}
.yf3{bottom:849.750000px;}
.yb4{bottom:850.290000px;}
.y22e{bottom:850.830000px;}
.y14f{bottom:855.756932px;}
.y116{bottom:856.230000px;}
.yb5{bottom:857.130000px;}
.y1c4{bottom:858.750000px;}
.y31{bottom:862.170000px;}
.y62{bottom:863.250000px;}
.y1e6{bottom:864.330000px;}
.y8e{bottom:868.290000px;}
.y20a{bottom:869.370000px;}
.y169{bottom:872.242142px;}
.yb3{bottom:872.250000px;}
.y22d{bottom:873.330000px;}
.y115{bottom:875.310000px;}
.y2{bottom:879.369000px;}
.y1c3{bottom:881.250000px;}
.y30{bottom:885.390000px;}
.y61{bottom:885.750000px;}
.y1e5{bottom:886.830000px;}
.y8d{bottom:890.790000px;}
.y209{bottom:891.870000px;}
.y114{bottom:894.210000px;}
.yb2{bottom:894.750000px;}
.y22c{bottom:895.830000px;}
.y149{bottom:900.897459px;}
.y14b{bottom:900.897469px;}
.y16d{bottom:900.897474px;}
.y1c2{bottom:903.750000px;}
.y60{bottom:908.250000px;}
.y1e4{bottom:909.330000px;}
.y2f{bottom:912.930000px;}
.y113{bottom:913.110000px;}
.y8c{bottom:913.290000px;}
.y208{bottom:914.370000px;}
.yb1{bottom:917.250000px;}
.y22b{bottom:918.330000px;}
.y1c1{bottom:926.070000px;}
.y172{bottom:928.233970px;}
.y16f{bottom:928.233980px;}
.y5f{bottom:930.750000px;}
.y1e3{bottom:931.830000px;}
.y112{bottom:932.190000px;}
.y8b{bottom:935.790000px;}
.y207{bottom:936.870000px;}
.yb0{bottom:939.750000px;}
.y2e{bottom:940.650000px;}
.y22a{bottom:940.830000px;}
.y1c0{bottom:943.350000px;}
.y110{bottom:951.090000px;}
.y5e{bottom:953.250000px;}
.y1e2{bottom:954.330000px;}
.y8a{bottom:958.290000px;}
.y206{bottom:959.370000px;}
.y1bf{bottom:960.630000px;}
.yaf{bottom:962.250000px;}
.y229{bottom:963.330000px;}
.y1{bottom:966.726000px;}
.y10e{bottom:971.250000px;}
.y5d{bottom:975.750000px;}
.y1e1{bottom:976.830000px;}
.y1be{bottom:977.910000px;}
.y89{bottom:980.790000px;}
.y205{bottom:981.870000px;}
.yae{bottom:984.750000px;}
.y228{bottom:985.830000px;}
.y1bd{bottom:995.010000px;}
.y88{bottom:1003.290000px;}
.y10d{bottom:1004.370000px;}
.yad{bottom:1007.250000px;}
.y5c{bottom:1008.330000px;}
.y1bc{bottom:1012.290000px;}
.y80{bottom:1026.330000px;}
.y25{bottom:1029.210000px;}
.y24{bottom:1046.310000px;}
.h33{height:14.749936px;}
.h2d{height:16.051399px;}
.h32{height:16.080321px;}
.h30{height:17.815605px;}
.h20{height:18.900000px;}
.h23{height:18.936000px;}
.h22{height:19.080000px;}
.h2f{height:19.117068px;}
.h27{height:19.174577px;}
.h26{height:24.782537px;}
.h28{height:24.814353px;}
.h17{height:26.250358px;}
.h2c{height:26.896907px;}
.h2a{height:26.896926px;}
.h37{height:28.227300px;}
.h39{height:30.801305px;}
.h3b{height:30.830221px;}
.h3d{height:30.830226px;}
.h7{height:32.130000px;}
.h14{height:32.273438px;}
.h3f{height:32.536581px;}
.h3e{height:32.536585px;}
.h44{height:32.565502px;}
.h43{height:32.565507px;}
.h11{height:33.345703px;}
.h4d{height:34.300787px;}
.h4c{height:34.300791px;}
.h29{height:34.965572px;}
.h1d{height:34.981570px;}
.h38{height:35.506389px;}
.h41{height:35.602250px;}
.h36{height:35.602254px;}
.h3c{height:36.341834px;}
.h2b{height:41.477360px;}
.h13{height:43.246406px;}
.h2e{height:45.114001px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h34{height:49.050721px;}
.hd{height:50.800781px;}
.h10{height:50.992031px;}
.h9{height:53.573906px;}
.h40{height:53.851428px;}
.h21{height:54.596250px;}
.h2{height:55.080000px;}
.h12{height:56.801250px;}
.h1a{height:57.749532px;}
.h3a{height:58.160949px;}
.h16{height:58.179375px;}
.hf{height:59.343750px;}
.h15{height:59.383125px;}
.h1e{height:59.986357px;}
.h18{height:61.006517px;}
.h42{height:64.234439px;}
.h47{height:64.234444px;}
.h48{height:64.234445px;}
.hb{height:64.546875px;}
.h1b{height:65.245825px;}
.h1c{height:66.314192px;}
.h19{height:66.355430px;}
.h1f{height:67.413578px;}
.he{height:68.443242px;}
.h5{height:78.030000px;}
.hc{height:85.847344px;}
.h4{height:119.055004px;}
.ha{height:124.236000px;}
.h24{height:130.500000px;}
.h35{height:187.098366px;}
.h4a{height:203.583547px;}
.h49{height:203.583551px;}
.h4b{height:203.583553px;}
.h31{height:215.730555px;}
.h46{height:233.974158px;}
.h45{height:233.974162px;}
.h25{height:305.910000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w7{width:14.924883px;}
.w10{width:35.167507px;}
.w1d{width:35.167510px;}
.w19{width:46.446560px;}
.w1f{width:46.446562px;}
.w18{width:58.593232px;}
.w1b{width:58.593234px;}
.wa{width:82.260000px;}
.wb{width:83.016000px;}
.wd{width:86.976000px;}
.wc{width:96.120000px;}
.w9{width:150.330000px;}
.w16{width:153.256294px;}
.w14{width:199.668149px;}
.w1a{width:199.668152px;}
.w1c{width:243.083825px;}
.w1e{width:243.083827px;}
.w8{width:268.572741px;}
.w17{width:336.832995px;}
.w15{width:353.352468px;}
.w5{width:594.825000px;}
.w2{width:637.794021px;}
.we{width:648.445548px;}
.w13{width:691.058869px;}
.w12{width:691.058871px;}
.w11{width:691.058875px;}
.wf{width:691.058876px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w6{width:917.999973px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x1f{left:2.132092px;}
.x54{left:4.326529px;}
.x20{left:5.398940px;}
.x50{left:6.501362px;}
.x4b{left:9.138925px;}
.x51{left:15.617150px;}
.x53{left:18.659602px;}
.x32{left:22.680000px;}
.x2c{left:25.506800px;}
.x36{left:29.745000px;}
.x34{left:33.300000px;}
.x30{left:35.460000px;}
.x2a{left:36.590781px;}
.x38{left:39.465000px;}
.x28{left:51.191748px;}
.x4c{left:58.188343px;}
.x2b{left:60.002925px;}
.x49{left:79.011209px;}
.x4e{left:82.018956px;}
.x48{left:83.349306px;}
.x1{left:102.045000px;}
.x3c{left:103.522766px;}
.x2{left:106.297500px;}
.x42{left:130.108800px;}
.x26{left:141.604823px;}
.x5{left:161.669986px;}
.x6{left:164.370000px;}
.x1c{left:166.889986px;}
.x14{left:170.309986px;}
.x3b{left:172.289986px;}
.xa{left:176.969986px;}
.x18{left:183.269986px;}
.x19{left:191.369986px;}
.x25{left:192.438693px;}
.xb{left:196.049986px;}
.x24{left:200.179364px;}
.x4{left:203.484001px;}
.x46{left:204.879649px;}
.x45{left:206.209999px;}
.x47{left:208.373264px;}
.x44{left:210.548096px;}
.x43{left:216.621432px;}
.x29{left:246.473644px;}
.x23{left:249.498043px;}
.x1a{left:251.129973px;}
.x57{left:253.694986px;}
.x27{left:255.966070px;}
.x1b{left:258.014986px;}
.x22{left:261.610615px;}
.x8{left:286.095000px;}
.x7{left:297.435000px;}
.x15{left:309.494986px;}
.x2f{left:312.015000px;}
.xc{left:313.454986px;}
.xe{left:318.134986px;}
.x4a{left:330.210758px;}
.x3e{left:341.514117px;}
.x3d{left:345.746433px;}
.x10{left:357.734986px;}
.x2e{left:361.154986px;}
.x39{left:373.394986px;}
.x13{left:377.714986px;}
.xf{left:378.974986px;}
.x12{left:383.294986px;}
.x1e{left:385.289959px;}
.x4f{left:389.266721px;}
.x31{left:394.275000px;}
.x21{left:400.214986px;}
.x40{left:411.017431px;}
.x1d{left:412.994986px;}
.xd{left:423.794986px;}
.x16{left:447.764986px;}
.x3f{left:450.041647px;}
.x3{left:454.959000px;}
.x11{left:459.104986px;}
.x33{left:477.285000px;}
.x4d{left:483.895077px;}
.x9{left:492.420000px;}
.x35{left:573.405000px;}
.x2d{left:626.009986px;}
.x17{left:654.089986px;}
.x37{left:660.390000px;}
.x55{left:684.149973px;}
.x56{left:690.269986px;}
.x52{left:774.293087px;}
.x3a{left:810.179986px;}
.x41{left:821.159986px;}
.x58{left:848.339986px;}
.x59{left:852.479986px;}
@media print{
.v6{vertical-align:-41.318170pt;}
.v4{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:25.124905pt;}
.ls23{letter-spacing:-1.011864pt;}
.ls25{letter-spacing:-0.896000pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls22{letter-spacing:-0.773294pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.519467pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.297067pt;}
.ls14{letter-spacing:-0.079467pt;}
.ls8{letter-spacing:-0.025600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.024320pt;}
.lse{letter-spacing:0.051200pt;}
.ls1f{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.lsa{letter-spacing:0.112640pt;}
.ls1a{letter-spacing:0.120533pt;}
.ls17{letter-spacing:0.135467pt;}
.lsd{letter-spacing:0.148480pt;}
.ls4{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.215040pt;}
.ls9{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.296960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.343040pt;}
.ls6{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.715708pt;}
.ls11{letter-spacing:4.160000pt;}
.ls19{letter-spacing:5.280000pt;}
.ls5{letter-spacing:5.920000pt;}
.ls18{letter-spacing:6.560000pt;}
.ls16{letter-spacing:61.440000pt;}
.ls1d{letter-spacing:142.594859pt;}
.ls1b{letter-spacing:142.606302pt;}
.ls1c{letter-spacing:143.956638pt;}
.ls1e{letter-spacing:144.025300pt;}
.ls12{letter-spacing:656.143367pt;}
.wse{word-spacing:-35.516472pt;}
.ws4{word-spacing:-17.568000pt;}
.wsc{word-spacing:-16.173257pt;}
.ws10{word-spacing:-14.855467pt;}
.wsb{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.080000pt;}
.wsf{word-spacing:-13.782933pt;}
.ws1{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.664320pt;}
.ws3{word-spacing:-12.640000pt;}
.ws17{word-spacing:-11.898651pt;}
.ws14{word-spacing:-11.182943pt;}
.wsa{word-spacing:-9.280000pt;}
.ws9{word-spacing:-9.200533pt;}
.ws13{word-spacing:-8.388868pt;}
.ws28{word-spacing:-0.722907pt;}
.ws6{word-spacing:-0.434560pt;}
.ws5{word-spacing:-0.050560pt;}
.ws0{word-spacing:0.000000pt;}
.ws32{word-spacing:0.843734pt;}
.ws36{word-spacing:2.234532pt;}
.ws1d{word-spacing:2.308057pt;}
.ws22{word-spacing:2.404718pt;}
.ws38{word-spacing:8.495437pt;}
.ws3a{word-spacing:8.513433pt;}
.ws35{word-spacing:8.520117pt;}
.ws3b{word-spacing:8.533485pt;}
.ws31{word-spacing:11.618949pt;}
.ws21{word-spacing:11.705328pt;}
.ws37{word-spacing:13.131603pt;}
.ws20{word-spacing:14.705441pt;}
.ws18{word-spacing:16.264883pt;}
.ws2a{word-spacing:17.785764pt;}
.ws2d{word-spacing:17.818156pt;}
.ws29{word-spacing:18.934907pt;}
.ws39{word-spacing:20.966861pt;}
.ws3c{word-spacing:23.513487pt;}
.ws2e{word-spacing:26.984569pt;}
.ws30{word-spacing:27.096142pt;}
.ws3e{word-spacing:27.154756pt;}
.ws1f{word-spacing:29.100845pt;}
.ws3d{word-spacing:29.784676pt;}
.ws1e{word-spacing:31.691174pt;}
.ws19{word-spacing:34.787436pt;}
.ws34{word-spacing:34.876899pt;}
.ws33{word-spacing:35.975141pt;}
.ws23{word-spacing:39.041067pt;}
.ws1c{word-spacing:39.468333pt;}
.ws2f{word-spacing:43.860787pt;}
.ws1b{word-spacing:45.382696pt;}
.ws27{word-spacing:48.273808pt;}
.ws26{word-spacing:50.244062pt;}
.ws25{word-spacing:50.254345pt;}
.ws24{word-spacing:52.921799pt;}
.ws2c{word-spacing:53.296620pt;}
.ws2b{word-spacing:56.006748pt;}
.wsd{word-spacing:74.133141pt;}
.ws1a{word-spacing:85.720470pt;}
.ws12{word-spacing:107.694859pt;}
.ws16{word-spacing:1230.339140pt;}
.ws15{word-spacing:1281.426421pt;}
._23{margin-left:-326.845850pt;}
._1c{margin-left:-318.584751pt;}
._21{margin-left:-239.813053pt;}
._1a{margin-left:-150.421961pt;}
._1e{margin-left:-144.969739pt;}
._1f{margin-left:-134.820701pt;}
._22{margin-left:-124.245961pt;}
._1b{margin-left:-117.799571pt;}
._1d{margin-left:-109.551307pt;}
._20{margin-left:-76.216390pt;}
._19{margin-left:-64.712369pt;}
._24{margin-left:-10.880000pt;}
._12{margin-left:-3.829760pt;}
._7{margin-left:-2.477440pt;}
._1{margin-left:-1.271893pt;}
._0{width:0.903040pt;}
._2{width:2.499200pt;}
._3{width:3.539200pt;}
._6{width:4.449280pt;}
._a{width:5.945600pt;}
._f{width:7.120640pt;}
._11{width:8.264107pt;}
._14{width:9.320107pt;}
._9{width:10.213120pt;}
._13{width:11.314773pt;}
._e{width:12.631680pt;}
._8{width:13.600640pt;}
._15{width:15.295573pt;}
._5{width:16.988160pt;}
._4{width:17.898240pt;}
._10{width:18.900053pt;}
._45{width:20.040533pt;}
._16{width:20.983893pt;}
._46{width:22.471680pt;}
._47{width:23.663787pt;}
._37{width:24.598472pt;}
._41{width:25.865943pt;}
._28{width:26.775467pt;}
._27{width:27.742293pt;}
._32{width:29.782778pt;}
._3b{width:31.337367pt;}
._3c{width:32.479625pt;}
._42{width:34.197922pt;}
._43{width:35.848861pt;}
._29{width:37.992533pt;}
._3e{width:39.606978pt;}
._35{width:41.910296pt;}
._36{width:43.205706pt;}
._40{width:47.522916pt;}
._38{width:51.150212pt;}
._34{width:52.736481pt;}
._44{width:53.952686pt;}
._33{width:57.616021pt;}
._3f{width:64.729444pt;}
._39{width:71.022741pt;}
._31{width:80.374074pt;}
._3d{width:81.820065pt;}
._26{width:115.230720pt;}
._2a{width:117.413806pt;}
._2d{width:119.309250pt;}
._2e{width:120.637042pt;}
._2b{width:122.187360pt;}
._2f{width:123.522238pt;}
._3a{width:131.199827pt;}
._17{width:146.731093pt;}
._25{width:176.000000pt;}
._18{width:182.720000pt;}
._d{width:189.297067pt;}
._c{width:204.220800pt;}
._b{width:205.217280pt;}
._2c{width:229.073125pt;}
._30{width:383.142733pt;}
.fs11{font-size:23.317470pt;}
.fs15{font-size:29.307022pt;}
.fs10{font-size:30.137095pt;}
.fs12{font-size:30.175786pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:37.726306pt;}
.fs13{font-size:42.520295pt;}
.fs7{font-size:42.880000pt;}
.fs14{font-size:44.731771pt;}
.fs8{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:56.320000pt;}
.fsc{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fse{font-size:64.693028pt;}
.fsd{font-size:65.793232pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y168{bottom:-8.103129pt;}
.y0{bottom:0.000000pt;}
.y14d{bottom:0.390761pt;}
.y15c{bottom:1.933248pt;}
.y171{bottom:2.313715pt;}
.y19a{bottom:3.084956pt;}
.y150{bottom:3.084962pt;}
.y10f{bottom:3.200000pt;}
.y111{bottom:3.360000pt;}
.y2d{bottom:3.520000pt;}
.ye0{bottom:3.974335pt;}
.yec{bottom:4.527578pt;}
.y160{bottom:4.627437pt;}
.y156{bottom:4.658287pt;}
.ye7{bottom:4.750736pt;}
.y1b9{bottom:5.018190pt;}
.y153{bottom:5.779152pt;}
.y167{bottom:6.169905pt;}
.y14e{bottom:7.712381pt;}
.y14a{bottom:7.712387pt;}
.y16a{bottom:8.483619pt;}
.ye8{bottom:8.799986pt;}
.ye1{bottom:8.910160pt;}
.y16c{bottom:9.645617pt;}
.y173{bottom:9.666182pt;}
.y175{bottom:10.406569pt;}
.y18c{bottom:11.188090pt;}
.y1a7{bottom:12.725012pt;}
.y14c{bottom:14.653512pt;}
.yea{bottom:14.954094pt;}
.y177{bottom:16.195987pt;}
.y170{bottom:16.216556pt;}
.y192{bottom:17.347706pt;}
.y199{bottom:17.347707pt;}
.ye6{bottom:17.408427pt;}
.y17c{bottom:17.738466pt;}
.y11e{bottom:18.880000pt;}
.y1bb{bottom:19.280937pt;}
.y1b8{bottom:19.280941pt;}
.y179{bottom:20.432652pt;}
.y166{bottom:20.432656pt;}
.y2c{bottom:21.280000pt;}
.ye3{bottom:21.490090pt;}
.y16e{bottom:21.985414pt;}
.ye4{bottom:22.254402pt;}
.yeb{bottom:22.414467pt;}
.y18b{bottom:25.481690pt;}
.ye5{bottom:26.304052pt;}
.y1a6{bottom:26.992904pt;}
.y146{bottom:29.375990pt;}
.y141{bottom:29.375998pt;}
.y26{bottom:30.400000pt;}
.y195{bottom:31.620736pt;}
.y191{bottom:31.620740pt;}
.y198{bottom:31.620741pt;}
.ye9{bottom:31.819633pt;}
.y6{bottom:31.933340pt;}
.y15e{bottom:32.391985pt;}
.yed{bottom:32.840048pt;}
.y11d{bottom:34.240000pt;}
.y2b{bottom:36.640000pt;}
.y18a{bottom:39.744441pt;}
.y5b{bottom:40.160000pt;}
.y87{bottom:40.800000pt;}
.y1a5{bottom:41.286504pt;}
.y1b6{bottom:41.286506pt;}
.y145{bottom:44.507996pt;}
.y140{bottom:44.508004pt;}
.y17a{bottom:45.914336pt;}
.y190{bottom:45.914340pt;}
.y197{bottom:45.914342pt;}
.y11c{bottom:49.600000pt;}
.y2a{bottom:52.000000pt;}
.y144{bottom:52.417033pt;}
.y13f{bottom:52.417042pt;}
.y189{bottom:54.017475pt;}
.y5a{bottom:55.520000pt;}
.y1a4{bottom:55.554397pt;}
.y1b5{bottom:55.554398pt;}
.y86{bottom:58.560000pt;}
.y5{bottom:59.133337pt;}
.y143{bottom:64.796204pt;}
.y13e{bottom:64.796212pt;}
.y11b{bottom:64.960000pt;}
.y29{bottom:67.200000pt;}
.y188{bottom:68.311075pt;}
.y1a3{bottom:69.822290pt;}
.y1b4{bottom:69.822291pt;}
.y59{bottom:70.880000pt;}
.y85{bottom:73.920000pt;}
.y11a{bottom:80.320000pt;}
.y28{bottom:82.560000pt;}
.y187{bottom:82.573826pt;}
.y1a2{bottom:84.115890pt;}
.y1b3{bottom:84.115891pt;}
.y58{bottom:86.240000pt;}
.y4{bottom:86.333337pt;}
.y84{bottom:89.280000pt;}
.y119{bottom:95.520000pt;}
.y186{bottom:96.846861pt;}
.y27{bottom:97.920000pt;}
.y1a1{bottom:98.383783pt;}
.y1b2{bottom:98.383784pt;}
.y57{bottom:101.440000pt;}
.y83{bottom:104.640000pt;}
.y185{bottom:111.140461pt;}
.y1a0{bottom:112.650647pt;}
.y1b1{bottom:112.650648pt;}
.y56{bottom:116.800000pt;}
.y82{bottom:119.840000pt;}
.y23{bottom:123.790666pt;}
.y184{bottom:125.403212pt;}
.y19f{bottom:126.944247pt;}
.y1b0{bottom:126.944248pt;}
.y55{bottom:132.160000pt;}
.y81{bottom:135.200000pt;}
.y183{bottom:139.676246pt;}
.y19e{bottom:141.217281pt;}
.y1af{bottom:141.217282pt;}
.yd5{bottom:147.386667pt;}
.y1dc{bottom:149.946667pt;}
.y1df{bottom:151.226667pt;}
.y54{bottom:151.706667pt;}
.y1d9{bottom:152.026667pt;}
.y182{bottom:153.969846pt;}
.y164{bottom:155.099563pt;}
.y1ab{bottom:155.480028pt;}
.y19d{bottom:155.480032pt;}
.y1ae{bottom:155.480033pt;}
.y134{bottom:158.586667pt;}
.y7f{bottom:163.226667pt;}
.y53{bottom:166.426667pt;}
.yd4{bottom:167.386667pt;}
.y1d8{bottom:168.026667pt;}
.y204{bottom:168.186667pt;}
.y181{bottom:168.232597pt;}
.y1a9{bottom:169.773629pt;}
.y19c{bottom:169.773633pt;}
.y1ad{bottom:169.773634pt;}
.y1de{bottom:171.226667pt;}
.yac{bottom:171.706667pt;}
.y227{bottom:172.666667pt;}
.y1a{bottom:175.052000pt;}
.y13c{bottom:177.946667pt;}
.y148{bottom:178.266667pt;}
.y163{bottom:178.821899pt;}
.y1ac{bottom:178.821901pt;}
.y1aa{bottom:178.821908pt;}
.y1a8{bottom:178.821908pt;}
.y19b{bottom:178.821912pt;}
.y158{bottom:180.572404pt;}
.y52{bottom:181.146667pt;}
.yd3{bottom:182.106667pt;}
.y180{bottom:182.505632pt;}
.yf2{bottom:182.746667pt;}
.y7e{bottom:183.226667pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y203{bottom:188.186667pt;}
.y10c{bottom:191.226667pt;}
.yab{bottom:191.706667pt;}
.y226{bottom:192.666667pt;}
.y133{bottom:193.626667pt;}
.y1e0{bottom:193.786667pt;}
.y51{bottom:195.706667pt;}
.y18e{bottom:196.799228pt;}
.y17f{bottom:196.799232pt;}
.yd2{bottom:196.826667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y13b{bottom:197.946667pt;}
.yf1{bottom:202.746667pt;}
.y7d{bottom:203.226667pt;}
.y202{bottom:208.186667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y10b{bottom:211.226667pt;}
.yd1{bottom:211.386667pt;}
.yaa{bottom:211.706667pt;}
.y225{bottom:212.666667pt;}
.y132{bottom:213.626667pt;}
.y50{bottom:215.706667pt;}
.y13a{bottom:217.786667pt;}
.yf0{bottom:222.746667pt;}
.y7c{bottom:223.226667pt;}
.yd0{bottom:226.106667pt;}
.y201{bottom:228.186667pt;}
.y4f{bottom:230.426667pt;}
.ycf{bottom:230.746667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y10a{bottom:231.226667pt;}
.ya9{bottom:231.706667pt;}
.y224{bottom:232.666667pt;}
.y139{bottom:233.146667pt;}
.y131{bottom:233.626667pt;}
.y147{bottom:235.366075pt;}
.y142{bottom:235.366083pt;}
.yce{bottom:241.466667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.yef{bottom:242.746667pt;}
.y7b{bottom:243.226667pt;}
.y138{bottom:245.466667pt;}
.y13d{bottom:245.680000pt;}
.y200{bottom:248.186667pt;}
.y4e{bottom:250.426667pt;}
.y109{bottom:251.226667pt;}
.ya8{bottom:251.706667pt;}
.y223{bottom:252.666667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y130{bottom:253.626667pt;}
.y7a{bottom:263.226667pt;}
.y4d{bottom:265.146667pt;}
.y1ff{bottom:268.186667pt;}
.y108{bottom:271.226667pt;}
.ya7{bottom:271.706667pt;}
.y222{bottom:272.666667pt;}
.y12f{bottom:273.626667pt;}
.ycd{bottom:275.226667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.ye2{bottom:278.186667pt;}
.y79{bottom:283.226667pt;}
.y4c{bottom:284.346667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y1fe{bottom:288.186667pt;}
.y107{bottom:291.226667pt;}
.ya6{bottom:291.706667pt;}
.y221{bottom:292.666667pt;}
.y12e{bottom:293.626667pt;}
.y4b{bottom:295.066667pt;}
.ycc{bottom:295.226667pt;}
.yee{bottom:299.386667pt;}
.y78{bottom:303.226667pt;}
.y1fd{bottom:308.186667pt;}
.y11{bottom:309.452000pt;}
.y106{bottom:311.226667pt;}
.ya5{bottom:311.706667pt;}
.y220{bottom:312.666667pt;}
.y12d{bottom:313.626667pt;}
.ycb{bottom:315.226667pt;}
.y1dd{bottom:320.186667pt;}
.y77{bottom:323.226667pt;}
.y1fc{bottom:328.186667pt;}
.ydf{bottom:329.519964pt;}
.y105{bottom:331.226667pt;}
.ya4{bottom:331.706667pt;}
.y21f{bottom:332.666667pt;}
.yde{bottom:333.466667pt;}
.y12c{bottom:333.626667pt;}
.yca{bottom:335.226667pt;}
.y4a{bottom:341.146667pt;}
.y76{bottom:343.226667pt;}
.y1d6{bottom:343.746667pt;}
.y10{bottom:343.809333pt;}
.y162{bottom:345.510576pt;}
.y1fb{bottom:348.226667pt;}
.y1d7{bottom:349.826667pt;}
.y104{bottom:351.266667pt;}
.ya3{bottom:351.746667pt;}
.y21e{bottom:352.706667pt;}
.y12b{bottom:353.666667pt;}
.yc9{bottom:355.266667pt;}
.ydd{bottom:355.746667pt;}
.y161{bottom:360.164088pt;}
.y1ba{bottom:360.164097pt;}
.y1b7{bottom:360.164101pt;}
.yf{bottom:362.706666pt;}
.y75{bottom:363.266667pt;}
.y49{bottom:363.746667pt;}
.y1fa{bottom:368.226667pt;}
.y103{bottom:371.266667pt;}
.ya2{bottom:371.746667pt;}
.y21d{bottom:372.706667pt;}
.y12a{bottom:373.666667pt;}
.y15f{bottom:374.817599pt;}
.yc8{bottom:375.266667pt;}
.ydc{bottom:375.746667pt;}
.y74{bottom:383.266667pt;}
.y48{bottom:386.466667pt;}
.y1f9{bottom:388.226667pt;}
.y15d{bottom:391.044435pt;}
.y196{bottom:391.044437pt;}
.y194{bottom:391.044443pt;}
.y193{bottom:391.044444pt;}
.y18f{bottom:391.044447pt;}
.y102{bottom:391.266667pt;}
.ya1{bottom:391.746667pt;}
.y21c{bottom:392.706667pt;}
.y129{bottom:393.666667pt;}
.yc7{bottom:395.266667pt;}
.ydb{bottom:395.746667pt;}
.y47{bottom:401.186667pt;}
.y73{bottom:403.266667pt;}
.y1f8{bottom:408.226667pt;}
.y101{bottom:411.266667pt;}
.ya0{bottom:411.746667pt;}
.y21b{bottom:412.706667pt;}
.y128{bottom:413.666667pt;}
.yc6{bottom:415.266667pt;}
.y46{bottom:415.746667pt;}
.y1d5{bottom:423.266667pt;}
.y1f7{bottom:428.226667pt;}
.y45{bottom:430.466667pt;}
.ye{bottom:430.990669pt;}
.y100{bottom:431.266667pt;}
.y9f{bottom:431.746667pt;}
.y72{bottom:432.226667pt;}
.y21a{bottom:432.706667pt;}
.y127{bottom:433.666667pt;}
.y15b{bottom:435.025535pt;}
.yc5{bottom:435.266667pt;}
.y1d4{bottom:443.266667pt;}
.y44{bottom:445.186667pt;}
.yd{bottom:446.990669pt;}
.y1f6{bottom:448.226667pt;}
.y15a{bottom:448.527331pt;}
.y17d{bottom:448.527341pt;}
.y17b{bottom:448.527344pt;}
.yff{bottom:451.266667pt;}
.y9e{bottom:451.746667pt;}
.y219{bottom:452.706667pt;}
.y126{bottom:453.666667pt;}
.yc4{bottom:455.266667pt;}
.y43{bottom:459.746667pt;}
.yc{bottom:462.990669pt;}
.y159{bottom:463.180843pt;}
.y1d3{bottom:463.266667pt;}
.y71{bottom:467.266667pt;}
.y1f5{bottom:468.226667pt;}
.yfe{bottom:471.266667pt;}
.y9d{bottom:471.746667pt;}
.y218{bottom:472.706667pt;}
.y125{bottom:473.666667pt;}
.y42{bottom:474.466667pt;}
.yc3{bottom:475.266667pt;}
.y16b{bottom:477.854929pt;}
.yb{bottom:478.990666pt;}
.y1d2{bottom:483.266667pt;}
.y70{bottom:487.266667pt;}
.yda{bottom:487.746667pt;}
.y1f4{bottom:488.226667pt;}
.y41{bottom:489.186667pt;}
.yfd{bottom:491.266667pt;}
.y9c{bottom:491.746667pt;}
.y217{bottom:492.706667pt;}
.y124{bottom:493.666667pt;}
.ya{bottom:494.990666pt;}
.yc2{bottom:495.266667pt;}
.y1d1{bottom:503.266667pt;}
.y40{bottom:503.746667pt;}
.y157{bottom:505.619468pt;}
.y18d{bottom:505.619478pt;}
.y17e{bottom:505.619481pt;}
.y6f{bottom:507.266667pt;}
.yd9{bottom:507.746667pt;}
.y1f3{bottom:508.226667pt;}
.yfc{bottom:511.266667pt;}
.y9b{bottom:511.746667pt;}
.y216{bottom:512.706667pt;}
.y123{bottom:513.666667pt;}
.y1db{bottom:513.986667pt;}
.yc1{bottom:515.266667pt;}
.y3f{bottom:518.466667pt;}
.y1d0{bottom:523.266667pt;}
.y6e{bottom:527.266667pt;}
.yd8{bottom:527.746667pt;}
.y1f2{bottom:528.226667pt;}
.y1da{bottom:529.986667pt;}
.yfb{bottom:531.266667pt;}
.y9a{bottom:531.746667pt;}
.y215{bottom:532.706667pt;}
.y3e{bottom:533.186667pt;}
.y122{bottom:533.666667pt;}
.yc0{bottom:535.266667pt;}
.y137{bottom:537.506667pt;}
.y1cf{bottom:543.266667pt;}
.y6d{bottom:547.266667pt;}
.y3d{bottom:547.746667pt;}
.y1f1{bottom:548.226667pt;}
.yfa{bottom:551.293333pt;}
.y99{bottom:551.773333pt;}
.y214{bottom:552.733333pt;}
.y121{bottom:553.693333pt;}
.ybf{bottom:555.293333pt;}
.y3c{bottom:562.493333pt;}
.y1ce{bottom:563.293333pt;}
.y6c{bottom:567.293333pt;}
.yd7{bottom:567.773333pt;}
.y1f0{bottom:568.253333pt;}
.yf9{bottom:571.293333pt;}
.y98{bottom:571.773333pt;}
.y136{bottom:572.733333pt;}
.y120{bottom:573.693333pt;}
.y9{bottom:573.786667pt;}
.ybe{bottom:575.293333pt;}
.y3b{bottom:577.213333pt;}
.y1cd{bottom:583.293333pt;}
.y6b{bottom:587.293333pt;}
.y1ef{bottom:588.253333pt;}
.yf8{bottom:591.293333pt;}
.y3a{bottom:591.613333pt;}
.y97{bottom:591.773333pt;}
.y8{bottom:592.685334pt;}
.y213{bottom:592.733333pt;}
.y11f{bottom:593.693333pt;}
.y135{bottom:594.013333pt;}
.ybd{bottom:595.293333pt;}
.yd6{bottom:596.733333pt;}
.y1cc{bottom:603.293333pt;}
.y39{bottom:606.333333pt;}
.y6a{bottom:607.293333pt;}
.y1ee{bottom:608.253333pt;}
.y118{bottom:610.653333pt;}
.yf7{bottom:611.293333pt;}
.y96{bottom:611.773333pt;}
.y212{bottom:612.733333pt;}
.ybc{bottom:615.293333pt;}
.y1cb{bottom:623.293333pt;}
.y38{bottom:626.333333pt;}
.y69{bottom:627.293333pt;}
.y1ed{bottom:628.253333pt;}
.yf6{bottom:631.293333pt;}
.y95{bottom:631.773333pt;}
.y211{bottom:632.733333pt;}
.ybb{bottom:635.293333pt;}
.y1ca{bottom:643.293333pt;}
.y7{bottom:645.598667pt;}
.y37{bottom:646.333333pt;}
.y68{bottom:647.293333pt;}
.y1ec{bottom:648.253333pt;}
.yf5{bottom:651.293333pt;}
.y94{bottom:651.773333pt;}
.y210{bottom:652.733333pt;}
.yba{bottom:655.293333pt;}
.y1c9{bottom:663.293333pt;}
.y36{bottom:666.333333pt;}
.y67{bottom:667.293333pt;}
.y1eb{bottom:668.253333pt;}
.y3{bottom:668.977329pt;}
.y93{bottom:671.773333pt;}
.y20f{bottom:672.733333pt;}
.yb9{bottom:675.293333pt;}
.y232{bottom:676.893333pt;}
.yf4{bottom:680.253333pt;}
.y1c8{bottom:683.293333pt;}
.y35{bottom:686.333333pt;}
.y66{bottom:687.293333pt;}
.y1ea{bottom:688.253333pt;}
.y92{bottom:691.773333pt;}
.y20e{bottom:692.733333pt;}
.yb8{bottom:695.293333pt;}
.y231{bottom:696.893333pt;}
.y155{bottom:697.760421pt;}
.y1c7{bottom:703.293333pt;}
.y34{bottom:706.333333pt;}
.y65{bottom:707.293333pt;}
.y1e9{bottom:708.253333pt;}
.y91{bottom:711.773333pt;}
.y20d{bottom:712.733333pt;}
.y154{bottom:713.987256pt;}
.y178{bottom:713.987266pt;}
.y165{bottom:713.987269pt;}
.yb7{bottom:715.293333pt;}
.y230{bottom:717.373333pt;}
.y1c6{bottom:723.293333pt;}
.y33{bottom:726.333333pt;}
.y64{bottom:727.293333pt;}
.y1e8{bottom:728.253333pt;}
.y152{bottom:728.640767pt;}
.y90{bottom:731.773333pt;}
.y20c{bottom:732.733333pt;}
.yb6{bottom:735.293333pt;}
.y22f{bottom:736.253333pt;}
.y1c5{bottom:743.293333pt;}
.y117{bottom:744.253333pt;}
.y151{bottom:746.019318pt;}
.y176{bottom:746.019327pt;}
.y174{bottom:746.019330pt;}
.y32{bottom:746.333333pt;}
.y63{bottom:747.293333pt;}
.y1e7{bottom:748.253333pt;}
.y8f{bottom:751.773333pt;}
.y20b{bottom:752.733333pt;}
.yf3{bottom:755.333333pt;}
.yb4{bottom:755.813333pt;}
.y22e{bottom:756.293333pt;}
.y14f{bottom:760.672829pt;}
.y116{bottom:761.093333pt;}
.yb5{bottom:761.893333pt;}
.y1c4{bottom:763.333333pt;}
.y31{bottom:766.373333pt;}
.y62{bottom:767.333333pt;}
.y1e6{bottom:768.293333pt;}
.y8e{bottom:771.813333pt;}
.y20a{bottom:772.773333pt;}
.y169{bottom:775.326349pt;}
.yb3{bottom:775.333333pt;}
.y22d{bottom:776.293333pt;}
.y115{bottom:778.053333pt;}
.y2{bottom:781.661334pt;}
.y1c3{bottom:783.333333pt;}
.y30{bottom:787.013333pt;}
.y61{bottom:787.333333pt;}
.y1e5{bottom:788.293333pt;}
.y8d{bottom:791.813333pt;}
.y209{bottom:792.773333pt;}
.y114{bottom:794.853333pt;}
.yb2{bottom:795.333333pt;}
.y22c{bottom:796.293333pt;}
.y149{bottom:800.797742pt;}
.y14b{bottom:800.797751pt;}
.y16d{bottom:800.797755pt;}
.y1c2{bottom:803.333333pt;}
.y60{bottom:807.333333pt;}
.y1e4{bottom:808.293333pt;}
.y2f{bottom:811.493333pt;}
.y113{bottom:811.653333pt;}
.y8c{bottom:811.813333pt;}
.y208{bottom:812.773333pt;}
.yb1{bottom:815.333333pt;}
.y22b{bottom:816.293333pt;}
.y1c1{bottom:823.173333pt;}
.y172{bottom:825.096862pt;}
.y16f{bottom:825.096871pt;}
.y5f{bottom:827.333333pt;}
.y1e3{bottom:828.293333pt;}
.y112{bottom:828.613333pt;}
.y8b{bottom:831.813333pt;}
.y207{bottom:832.773333pt;}
.yb0{bottom:835.333333pt;}
.y2e{bottom:836.133333pt;}
.y22a{bottom:836.293333pt;}
.y1c0{bottom:838.533333pt;}
.y110{bottom:845.413333pt;}
.y5e{bottom:847.333333pt;}
.y1e2{bottom:848.293333pt;}
.y8a{bottom:851.813333pt;}
.y206{bottom:852.773333pt;}
.y1bf{bottom:853.893333pt;}
.yaf{bottom:855.333333pt;}
.y229{bottom:856.293333pt;}
.y1{bottom:859.312000pt;}
.y10e{bottom:863.333333pt;}
.y5d{bottom:867.333333pt;}
.y1e1{bottom:868.293333pt;}
.y1be{bottom:869.253333pt;}
.y89{bottom:871.813333pt;}
.y205{bottom:872.773333pt;}
.yae{bottom:875.333333pt;}
.y228{bottom:876.293333pt;}
.y1bd{bottom:884.453333pt;}
.y88{bottom:891.813333pt;}
.y10d{bottom:892.773333pt;}
.yad{bottom:895.333333pt;}
.y5c{bottom:896.293333pt;}
.y1bc{bottom:899.813333pt;}
.y80{bottom:912.293333pt;}
.y25{bottom:914.853333pt;}
.y24{bottom:930.053333pt;}
.h33{height:13.111054pt;}
.h2d{height:14.267911pt;}
.h32{height:14.293618pt;}
.h30{height:15.836093pt;}
.h20{height:16.800000pt;}
.h23{height:16.832000pt;}
.h22{height:16.960000pt;}
.h2f{height:16.992949pt;}
.h27{height:17.044069pt;}
.h26{height:22.028921pt;}
.h28{height:22.057203pt;}
.h17{height:23.333651pt;}
.h2c{height:23.908361pt;}
.h2a{height:23.908378pt;}
.h37{height:25.090934pt;}
.h39{height:27.378938pt;}
.h3b{height:27.404641pt;}
.h3d{height:27.404646pt;}
.h7{height:28.560000pt;}
.h14{height:28.687500pt;}
.h3f{height:28.921405pt;}
.h3e{height:28.921409pt;}
.h44{height:28.947113pt;}
.h43{height:28.947117pt;}
.h11{height:29.640625pt;}
.h4d{height:30.489588pt;}
.h4c{height:30.489592pt;}
.h29{height:31.080509pt;}
.h1d{height:31.094729pt;}
.h38{height:31.561235pt;}
.h41{height:31.646444pt;}
.h36{height:31.646448pt;}
.h3c{height:32.303852pt;}
.h2b{height:36.868765pt;}
.h13{height:38.441250pt;}
.h2e{height:40.101334pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h34{height:43.600641pt;}
.hd{height:45.156250pt;}
.h10{height:45.326250pt;}
.h9{height:47.621250pt;}
.h40{height:47.867936pt;}
.h21{height:48.530000pt;}
.h2{height:48.960000pt;}
.h12{height:50.490000pt;}
.h1a{height:51.332917pt;}
.h3a{height:51.698621pt;}
.h16{height:51.715000pt;}
.hf{height:52.750000pt;}
.h15{height:52.785000pt;}
.h1e{height:53.321207pt;}
.h18{height:54.228016pt;}
.h42{height:57.097279pt;}
.h47{height:57.097283pt;}
.h48{height:57.097284pt;}
.hb{height:57.375000pt;}
.h1b{height:57.996289pt;}
.h1c{height:58.945949pt;}
.h19{height:58.982605pt;}
.h1f{height:59.923181pt;}
.he{height:60.838438pt;}
.h5{height:69.360000pt;}
.hc{height:76.308750pt;}
.h4{height:105.826671pt;}
.ha{height:110.432000pt;}
.h24{height:116.000000pt;}
.h35{height:166.309658pt;}
.h4a{height:180.963153pt;}
.h49{height:180.963157pt;}
.h4b{height:180.963158pt;}
.h31{height:191.760494pt;}
.h46{height:207.977030pt;}
.h45{height:207.977033pt;}
.h25{height:271.920000pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w7{width:13.266563pt;}
.w10{width:31.260007pt;}
.w1d{width:31.260009pt;}
.w19{width:41.285831pt;}
.w1f{width:41.285833pt;}
.w18{width:52.082873pt;}
.w1b{width:52.082875pt;}
.wa{width:73.120000pt;}
.wb{width:73.792000pt;}
.wd{width:77.312000pt;}
.wc{width:85.440000pt;}
.w9{width:133.626667pt;}
.w16{width:136.227817pt;}
.w14{width:177.482799pt;}
.w1a{width:177.482802pt;}
.w1c{width:216.074511pt;}
.w1e{width:216.074513pt;}
.w8{width:238.731326pt;}
.w17{width:299.407106pt;}
.w15{width:314.091083pt;}
.w5{width:528.733333pt;}
.w2{width:566.928019pt;}
.we{width:576.396043pt;}
.w13{width:614.274550pt;}
.w12{width:614.274552pt;}
.w11{width:614.274555pt;}
.wf{width:614.274556pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w6{width:815.999976pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:1.895193pt;}
.x54{left:3.845804pt;}
.x20{left:4.799058pt;}
.x50{left:5.778988pt;}
.x4b{left:8.123489pt;}
.x51{left:13.881911pt;}
.x53{left:16.586313pt;}
.x32{left:20.160000pt;}
.x2c{left:22.672711pt;}
.x36{left:26.440000pt;}
.x34{left:29.600000pt;}
.x30{left:31.520000pt;}
.x2a{left:32.525139pt;}
.x38{left:35.080000pt;}
.x28{left:45.503776pt;}
.x4c{left:51.722971pt;}
.x2b{left:53.335934pt;}
.x49{left:70.232185pt;}
.x4e{left:72.905739pt;}
.x48{left:74.088272pt;}
.x1{left:90.706667pt;}
.x3c{left:92.020237pt;}
.x2{left:94.486667pt;}
.x42{left:115.652267pt;}
.x26{left:125.870954pt;}
.x5{left:143.706655pt;}
.x6{left:146.106667pt;}
.x1c{left:148.346655pt;}
.x14{left:151.386655pt;}
.x3b{left:153.146655pt;}
.xa{left:157.306655pt;}
.x18{left:162.906655pt;}
.x19{left:170.106655pt;}
.x25{left:171.056616pt;}
.xb{left:174.266655pt;}
.x24{left:177.937212pt;}
.x4{left:180.874667pt;}
.x46{left:182.115244pt;}
.x45{left:183.297777pt;}
.x47{left:185.220679pt;}
.x44{left:187.153863pt;}
.x43{left:192.552384pt;}
.x29{left:219.087683pt;}
.x23{left:221.776038pt;}
.x1a{left:223.226642pt;}
.x57{left:225.506655pt;}
.x27{left:227.525396pt;}
.x1b{left:229.346655pt;}
.x22{left:232.542769pt;}
.x8{left:254.306667pt;}
.x7{left:264.386667pt;}
.x15{left:275.106655pt;}
.x2f{left:277.346667pt;}
.xc{left:278.626655pt;}
.xe{left:282.786655pt;}
.x4a{left:293.520674pt;}
.x3e{left:303.568104pt;}
.x3d{left:307.330162pt;}
.x10{left:317.986655pt;}
.x2e{left:321.026655pt;}
.x39{left:331.906655pt;}
.x13{left:335.746655pt;}
.xf{left:336.866655pt;}
.x12{left:340.706655pt;}
.x1e{left:342.479964pt;}
.x4f{left:346.014863pt;}
.x31{left:350.466667pt;}
.x21{left:355.746655pt;}
.x40{left:365.348828pt;}
.x1d{left:367.106655pt;}
.xd{left:376.706655pt;}
.x16{left:398.013321pt;}
.x3f{left:400.037019pt;}
.x3{left:404.408000pt;}
.x11{left:408.093321pt;}
.x33{left:424.253333pt;}
.x4d{left:430.128958pt;}
.x9{left:437.706667pt;}
.x35{left:509.693333pt;}
.x2d{left:556.453321pt;}
.x17{left:581.413321pt;}
.x37{left:587.013333pt;}
.x55{left:608.133309pt;}
.x56{left:613.573321pt;}
.x52{left:688.260521pt;}
.x3a{left:720.159988pt;}
.x41{left:729.919988pt;}
.x58{left:754.079988pt;}
.x59{left:757.759988pt;}
}




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