
    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_3c33f040a3c35938a3194fe6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.185000;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_aae538ce30d7941f2550bb8c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.222000;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_83962cc63b106cf9690c4d4b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_7f5e3c9fb45ee3e87794e0db.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_85f30f5e5d3fbe01304700aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_1ac663650de5b542e1a48926.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_e52d88f355f95b8feba596bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.692871;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_a483c6338015aa4b43dd9759.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;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_2228d06459b2c69fa24d98df.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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.225803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,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);}
.v5{vertical-align:-89.030877px;}
.v6{vertical-align:-84.239870px;}
.vf{vertical-align:-63.360077px;}
.v2{vertical-align:-58.319824px;}
.vb{vertical-align:-51.119937px;}
.va{vertical-align:-47.519991px;}
.v8{vertical-align:-36.720018px;}
.v4{vertical-align:-18.000000px;}
.ve{vertical-align:-13.679901px;}
.vd{vertical-align:-11.519986px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:23.759995px;}
.v7{vertical-align:36.720018px;}
.v9{vertical-align:47.519991px;}
.vc{vertical-align:62.639923px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.179554px;}
.ls3{letter-spacing:0.214214px;}
.ls7{letter-spacing:2.207666px;}
.ls5{letter-spacing:16.322790px;}
.ls6{letter-spacing:16.322837px;}
.ls9{letter-spacing:288.183164px;}
.lsb{letter-spacing:535.992680px;}
.lsa{letter-spacing:620.952703px;}
.ls1{letter-spacing:849.041377px;}
.ls0{letter-spacing:1132.253530px;}
.ls8{letter-spacing:1556.232617px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(219,65,67),0 0.015em rgb(219,65,67),0.015em 0 rgb(219,65,67),0 -0.015em  rgb(219,65,67);}
.sc1{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);}
.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(219,65,67);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-180.007191px;}
.wsa{word-spacing:-19.120340px;}
.ws1{word-spacing:-15.875132px;}
.ws0{word-spacing:-15.500719px;}
.wsb{word-spacing:-14.220563px;}
.wsc{word-spacing:-11.336823px;}
.wsd{word-spacing:-11.165801px;}
.ws5{word-spacing:-10.564954px;}
.ws4{word-spacing:-9.934234px;}
.ws7{word-spacing:-9.000349px;}
.ws8{word-spacing:-8.644655px;}
.ws3{word-spacing:-8.515045px;}
.ws6{word-spacing:-6.622816px;}
.ws9{word-spacing:0.000000px;}
._71{margin-left:-11.690437px;}
._73{margin-left:-10.670350px;}
._e{margin-left:-7.284512px;}
._72{margin-left:-4.918531px;}
._12{margin-left:-3.526699px;}
._7{margin-left:-2.489606px;}
._0{margin-left:-1.302529px;}
._1{width:1.061320px;}
._8{width:2.489854px;}
._5{width:3.925397px;}
._6{width:5.770799px;}
._9{width:7.283761px;}
._2{width:9.098289px;}
._3{width:10.731315px;}
._b{width:12.108692px;}
._a{width:13.411220px;}
._17{width:14.448092px;}
._1b{width:16.325206px;}
._14{width:18.278645px;}
._13{width:19.283083px;}
._6f{width:20.553935px;}
._c{width:21.660568px;}
._d{width:22.818371px;}
._11{width:23.884782px;}
._10{width:25.028190px;}
._47{width:26.450246px;}
._70{width:28.080388px;}
._15{width:29.143155px;}
._16{width:30.716415px;}
._18{width:39.495725px;}
._19{width:40.651366px;}
._4b{width:53.114222px;}
._53{width:59.702346px;}
._5e{width:60.832910px;}
._59{width:63.314244px;}
._52{width:64.614737px;}
._4f{width:66.361750px;}
._54{width:69.111532px;}
._50{width:72.507425px;}
._51{width:74.726548px;}
._57{width:78.103474px;}
._5d{width:80.062421px;}
._68{width:82.040335px;}
._65{width:83.554798px;}
._56{width:86.786998px;}
._40{width:88.874607px;}
._6c{width:90.091426px;}
._66{width:92.933279px;}
._20{width:94.119752px;}
._3f{width:96.529409px;}
._33{width:97.786129px;}
._67{width:99.445115px;}
._36{width:101.838440px;}
._39{width:103.575145px;}
._1c{width:105.601300px;}
._34{width:107.482730px;}
._46{width:111.872734px;}
._30{width:113.416472px;}
._3b{width:116.199982px;}
._6d{width:118.797195px;}
._6e{width:120.058650px;}
._49{width:121.957703px;}
._3e{width:123.933184px;}
._45{width:125.476922px;}
._61{width:128.274946px;}
._4a{width:130.880003px;}
._41{width:134.063962px;}
._28{width:135.208416px;}
._43{width:136.476052px;}
._3d{width:137.537372px;}
._27{width:141.589683px;}
._4d{width:143.292660px;}
._48{width:145.931445px;}
._44{width:149.115404px;}
._2f{width:150.369691px;}
._1d{width:155.097387px;}
._6a{width:157.027059px;}
._60{width:158.715522px;}
._2a{width:162.333657px;}
._69{width:164.022120px;}
._23{width:165.710583px;}
._64{width:167.254321px;}
._63{width:168.605091px;}
._62{width:173.490863px;}
._24{width:174.863175px;}
._29{width:176.661472px;}
._2b{width:179.411254px;}
._2d{width:181.292684px;}
._38{width:183.453799px;}
._37{width:185.263026px;}
._35{width:186.295357px;}
._6b{width:188.963131px;}
._1f{width:193.291543px;}
._1a{width:195.331048px;}
._f{width:202.519076px;}
._1e{width:203.821605px;}
._2c{width:205.896002px;}
._32{width:207.864773px;}
._2e{width:221.371642px;}
._58{width:224.079992px;}
._5a{width:225.271028px;}
._31{width:228.087230px;}
._25{width:233.442070px;}
._5b{width:238.851285px;}
._26{width:240.099439px;}
._4e{width:242.865655px;}
._5f{width:252.401098px;}
._21{width:257.659454px;}
._22{width:264.509789px;}
._55{width:307.049179px;}
._5c{width:318.930074px;}
._4c{width:349.367116px;}
._3c{width:430.785768px;}
._42{width:494.969291px;}
._3a{width:549.198124px;}
._4{width:1196.879058px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(219,65,67);}
.fc2{color:rgb(1,3,2);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:23.760900px;}
.fse{font-size:30.241170px;}
.fsf{font-size:36.001395px;}
.fs8{font-size:38.881485px;}
.fs5{font-size:41.759538px;}
.fsc{font-size:41.761620px;}
.fsb{font-size:45.361800px;}
.fs0{font-size:48.241800px;}
.fs10{font-size:50.985391px;}
.fsa{font-size:54.002250px;}
.fs9{font-size:56.882250px;}
.fs2{font-size:59.762250px;}
.fs12{font-size:60.117237px;}
.fs13{font-size:63.362250px;}
.fs7{font-size:66.242700px;}
.fs1{font-size:74.882700px;}
.fs3{font-size:77.763154px;}
.fs11{font-size:81.363150px;}
.fs6{font-size:95.763600px;}
.fs4{font-size:180.007191px;}
.yed{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.y47{bottom:2.879997px;}
.y146{bottom:3.420009px;}
.yb{bottom:4.679995px;}
.y8{bottom:4.680000px;}
.y106{bottom:6.479993px;}
.y143{bottom:6.479994px;}
.y160{bottom:6.480011px;}
.y19{bottom:14.760132px;}
.y18{bottom:28.620072px;}
.y17{bottom:43.020127px;}
.y16{bottom:43.033969px;}
.y15{bottom:55.096090px;}
.y14{bottom:67.151989px;}
.y13{bottom:79.210999px;}
.yf{bottom:83.340088px;}
.y12{bottom:91.273120px;}
.y1e5{bottom:102.600083px;}
.y11{bottom:103.335366px;}
.ycb{bottom:108.720016px;}
.y96{bottom:109.260132px;}
.y218{bottom:110.700028px;}
.y102{bottom:110.880066px;}
.yd5{bottom:112.140060px;}
.y10{bottom:115.572842px;}
.y1e4{bottom:115.920043px;}
.y177{bottom:117.000068px;}
.y13a{bottom:122.040047px;}
.y217{bottom:124.920043px;}
.y138{bottom:125.820099px;}
.ye{bottom:127.800041px;}
.y1e3{bottom:129.240074px;}
.yc9{bottom:129.960091px;}
.y95{bottom:130.500068px;}
.y101{bottom:131.940033px;}
.yd4{bottom:133.200096px;}
.y176{bottom:138.060036px;}
.y216{bottom:139.140060px;}
.y1a7{bottom:142.200096px;}
.y1e2{bottom:142.560036px;}
.y137{bottom:143.640060px;}
.y139{bottom:147.600083px;}
.yc8{bottom:151.020058px;}
.y94{bottom:151.560036px;}
.y100{bottom:153.180039px;}
.yd3{bottom:154.440033px;}
.y1e1{bottom:155.880066px;}
.y175{bottom:159.120072px;}
.y215{bottom:160.920043px;}
.y1a6{bottom:163.260064px;}
.y1e0{bottom:169.200096px;}
.yc7{bottom:172.080093px;}
.y93{bottom:172.800041px;}
.y136{bottom:172.980079px;}
.yff{bottom:174.240074px;}
.y214{bottom:175.140060px;}
.y1c0{bottom:175.500068px;}
.y134{bottom:176.940033px;}
.y174{bottom:180.360077px;}
.y1df{bottom:182.520058px;}
.y1a5{bottom:184.320099px;}
.yc6{bottom:193.320099px;}
.y92{bottom:193.860077px;}
.y133{bottom:194.760064px;}
.yfe{bottom:195.480079px;}
.yd2{bottom:196.560036px;}
.y213{bottom:196.920043px;}
.y135{bottom:198.540047px;}
.y1de{bottom:200.880066px;}
.y173{bottom:201.420043px;}
.y1a4{bottom:205.560036px;}
.y212{bottom:211.140060px;}
.yc5{bottom:214.380066px;}
.y91{bottom:214.920043px;}
.yfd{bottom:216.540047px;}
.yd1{bottom:217.800041px;}
.y1dd{bottom:218.160049px;}
.y172{bottom:222.660049px;}
.y132{bottom:224.100083px;}
.y1a3{bottom:226.620072px;}
.y130{bottom:227.880066px;}
.y1dc{bottom:231.480079px;}
.y211{bottom:232.740074px;}
.yc4{bottom:235.620072px;}
.yfc{bottom:237.600083px;}
.yd0{bottom:238.860077px;}
.y90{bottom:239.220085px;}
.y171{bottom:243.720085px;}
.y1db{bottom:244.800041px;}
.y12f{bottom:245.700096px;}
.y210{bottom:246.960091px;}
.y1a2{bottom:247.860077px;}
.y131{bottom:249.480079px;}
.yc3{bottom:256.680039px;}
.y1da{bottom:258.120072px;}
.yfb{bottom:258.840088px;}
.ycf{bottom:260.100083px;}
.y170{bottom:264.780052px;}
.y20f{bottom:268.740074px;}
.y1a1{bottom:268.920043px;}
.y8f{bottom:269.280052px;}
.y1d9{bottom:271.440033px;}
.y12e{bottom:275.040047px;}
.yc2{bottom:277.740074px;}
.y12c{bottom:278.820099px;}
.yfa{bottom:279.900055px;}
.yce{bottom:281.160049px;}
.y20e{bottom:282.960091px;}
.y1d8{bottom:284.760064px;}
.y16f{bottom:286.020058px;}
.y1a0{bottom:289.980079px;}
.y8e{bottom:296.100083px;}
.y12b{bottom:296.640060px;}
.yc1{bottom:298.980079px;}
.y12d{bottom:300.600083px;}
.y1bf{bottom:302.220085px;}
.yf9{bottom:303.120072px;}
.y20d{bottom:304.740074px;}
.ycd{bottom:305.460091px;}
.y16e{bottom:306.000068px;}
.yf7{bottom:307.980079px;}
.y19f{bottom:311.220085px;}
.y8d{bottom:317.340088px;}
.y20c{bottom:318.960091px;}
.yc0{bottom:320.040047px;}
.y1be{bottom:323.460091px;}
.yf6{bottom:325.800041px;}
.y12a{bottom:325.980079px;}
.yf8{bottom:328.680039px;}
.y16b{bottom:331.380066px;}
.y16d{bottom:331.560036px;}
.y19e{bottom:332.280052px;}
.y20b{bottom:333.180039px;}
.y1d7{bottom:335.340088px;}
.ycc{bottom:335.520058px;}
.y8c{bottom:338.400055px;}
.ybf{bottom:341.280052px;}
.y1bd{bottom:344.520058px;}
.y1d6{bottom:348.660049px;}
.y129{bottom:349.200096px;}
.y19d{bottom:353.520058px;}
.yf5{bottom:354.060036px;}
.y20a{bottom:354.780052px;}
.y16c{bottom:356.040047px;}
.yf3{bottom:358.920043px;}
.y8b{bottom:359.640060px;}
.y1d5{bottom:362.160049px;}
.ybe{bottom:362.340088px;}
.y1bc{bottom:365.760064px;}
.y209{bottom:369.000068px;}
.y19c{bottom:374.580093px;}
.y45{bottom:375.120072px;}
.y1d4{bottom:375.480079px;}
.yf2{bottom:376.740074px;}
.yf4{bottom:379.620072px;}
.y8a{bottom:380.700096px;}
.y168{bottom:381.420043px;}
.y16a{bottom:381.600083px;}
.ybd{bottom:383.400055px;}
.y1bb{bottom:386.820099px;}
.y1d3{bottom:388.800041px;}
.y208{bottom:390.780052px;}
.y44{bottom:390.960091px;}
.y128{bottom:391.500068px;}
.y19b{bottom:395.640060px;}
.y167{bottom:399.240074px;}
.y89{bottom:401.760064px;}
.y1d2{bottom:402.120072px;}
.ybc{bottom:404.640060px;}
.y207{bottom:405.000068px;}
.yf1{bottom:405.180039px;}
.y169{bottom:406.080093px;}
.y43{bottom:406.980079px;}
.y1ba{bottom:407.880066px;}
.y127{bottom:412.560036px;}
.y1d1{bottom:415.440033px;}
.y19a{bottom:416.880066px;}
.yf0{bottom:418.860077px;}
.y206{bottom:419.220085px;}
.y42{bottom:422.640060px;}
.y88{bottom:423.000068px;}
.ybb{bottom:425.700096px;}
.y1b9{bottom:429.120072px;}
.y166{bottom:431.640060px;}
.y126{bottom:433.800041px;}
.y199{bottom:437.940033px;}
.y163{bottom:440.280052px;}
.y205{bottom:441.000068px;}
.y87{bottom:444.060036px;}
.yba{bottom:446.940033px;}
.y164{bottom:449.640060px;}
.y1b8{bottom:450.180039px;}
.y1d0{bottom:450.900055px;}
.y41{bottom:451.440033px;}
.y165{bottom:453.060036px;}
.y125{bottom:454.860077px;}
.y204{bottom:455.220085px;}
.yef{bottom:456.120072px;}
.y198{bottom:459.180039px;}
.y1cf{bottom:464.220085px;}
.y86{bottom:465.300041px;}
.y40{bottom:467.820099px;}
.yb9{bottom:468.000068px;}
.y203{bottom:469.440033px;}
.yee{bottom:469.800041px;}
.y1b7{bottom:471.420043px;}
.y1ce{bottom:477.720085px;}
.y63{bottom:479.880066px;}
.y197{bottom:480.240074px;}
.y162{bottom:481.680039px;}
.y3f{bottom:485.460091px;}
.y85{bottom:486.360077px;}
.yb8{bottom:489.060036px;}
.y161{bottom:490.320099px;}
.y1cd{bottom:491.040047px;}
.y1b6{bottom:492.480079px;}
.y62{bottom:494.100083px;}
.y124{bottom:497.160049px;}
.yec{bottom:498.240074px;}
.y3e{bottom:499.680039px;}
.y196{bottom:501.300041px;}
.y1cc{bottom:504.360077px;}
.y202{bottom:505.260064px;}
.yeb{bottom:507.060036px;}
.y61{bottom:507.420043px;}
.yb7{bottom:510.300041px;}
.y1b5{bottom:513.540047px;}
.y3d{bottom:513.900055px;}
.y123{bottom:517.140060px;}
.y1cb{bottom:517.680039px;}
.y195{bottom:522.540047px;}
.y15f{bottom:525.240074px;}
.y201{bottom:527.040047px;}
.y3c{bottom:528.120072px;}
.y84{bottom:528.660049px;}
.y60{bottom:529.380066px;}
.y1ca{bottom:531.000068px;}
.yb6{bottom:531.360077px;}
.y1b4{bottom:534.780052px;}
.y122{bottom:535.680039px;}
.y15e{bottom:540.360077px;}
.y200{bottom:541.260064px;}
.y3b{bottom:542.340088px;}
.y194{bottom:543.600083px;}
.y1c9{bottom:544.320099px;}
.y121{bottom:545.040047px;}
.y83{bottom:549.720085px;}
.y5f{bottom:551.160049px;}
.yea{bottom:552.420043px;}
.yb5{bottom:552.600083px;}
.y1b3{bottom:555.840088px;}
.y3a{bottom:556.560036px;}
.y1c8{bottom:557.640060px;}
.y1ff{bottom:563.040047px;}
.y193{bottom:564.840088px;}
.y39{bottom:570.780052px;}
.y82{bottom:570.960091px;}
.y120{bottom:572.760064px;}
.y5e{bottom:573.120072px;}
.yb4{bottom:573.660049px;}
.y1b2{bottom:577.080093px;}
.y1fe{bottom:577.260064px;}
.y15d{bottom:581.580093px;}
.y11f{bottom:582.120072px;}
.y1c7{bottom:584.280052px;}
.y38{bottom:585.000068px;}
.y192{bottom:585.900055px;}
.y15c{bottom:590.400055px;}
.y81{bottom:592.020058px;}
.yb3{bottom:594.720085px;}
.y5d{bottom:595.260064px;}
.y1c6{bottom:597.600083px;}
.y1b1{bottom:598.140060px;}
.y1fd{bottom:598.860077px;}
.y37{bottom:599.220085px;}
.y191{bottom:606.960091px;}
.y11e{bottom:609.840088px;}
.y1c5{bottom:610.920043px;}
.y80{bottom:613.080093px;}
.y36{bottom:613.440033px;}
.ye9{bottom:615.780052px;}
.yb2{bottom:615.960091px;}
.y5c{bottom:617.400055px;}
.y11d{bottom:619.200096px;}
.y1c4{bottom:624.240074px;}
.y35{bottom:627.660049px;}
.y190{bottom:628.200096px;}
.y15b{bottom:631.620072px;}
.y7f{bottom:634.320099px;}
.y1fc{bottom:634.860077px;}
.yb1{bottom:637.020058px;}
.y5b{bottom:640.260064px;}
.y15a{bottom:640.440033px;}
.y34{bottom:641.880066px;}
.y1c3{bottom:642.600083px;}
.y11c{bottom:646.920043px;}
.y1fb{bottom:649.080093px;}
.y18f{bottom:649.260064px;}
.y7e{bottom:655.380066px;}
.y33{bottom:656.100083px;}
.y11b{bottom:656.280052px;}
.ye8{bottom:658.080093px;}
.yca{bottom:658.260064px;}
.y1b0{bottom:661.500068px;}
.y5a{bottom:662.940033px;}
.y32{bottom:670.320099px;}
.y18e{bottom:670.500068px;}
.y1fa{bottom:670.860077px;}
.y1c2{bottom:676.080093px;}
.y7d{bottom:676.620072px;}
.yb0{bottom:679.320099px;}
.y159{bottom:681.660049px;}
.y1af{bottom:682.740074px;}
.y11a{bottom:684.000068px;}
.y59{bottom:684.900055px;}
.y1f9{bottom:685.080093px;}
.y31{bottom:685.260064px;}
.y158{bottom:690.480079px;}
.y18d{bottom:691.560070px;}
.y119{bottom:693.360077px;}
.y1c1{bottom:697.140060px;}
.y7c{bottom:697.680073px;}
.yaf{bottom:700.380066px;}
.y30{bottom:702.900055px;}
.y1ae{bottom:703.800076px;}
.y58{bottom:704.340054px;}
.y1f8{bottom:706.680073px;}
.y18c{bottom:712.620072px;}
.y57{bottom:714.780052px;}
.y2f{bottom:717.840054px;}
.y7b{bottom:718.920078px;}
.ye7{bottom:720.360077px;}
.y1f7{bottom:720.900055px;}
.y118{bottom:721.080059px;}
.yae{bottom:721.620072px;}
.y56{bottom:723.060070px;}
.y1ad{bottom:724.860077px;}
.y157{bottom:728.820065px;}
.y117{bottom:730.440067px;}
.y18b{bottom:733.860077px;}
.y2e{bottom:735.480079px;}
.ye6{bottom:738.900055px;}
.y7a{bottom:739.980079px;}
.yad{bottom:742.680073px;}
.y1ac{bottom:746.100083px;}
.y55{bottom:747.000068px;}
.ye5{bottom:748.260064px;}
.y2d{bottom:749.700061px;}
.y156{bottom:752.580059px;}
.y18a{bottom:754.920078px;}
.y1f6{bottom:756.900055px;}
.y116{bottom:758.160049px;}
.y79{bottom:761.040081px;}
.y54{bottom:761.220051px;}
.y2c{bottom:763.920078px;}
.y1ab{bottom:767.160049px;}
.y115{bottom:767.520058px;}
.y1f5{bottom:771.120072px;}
.y155{bottom:773.820065px;}
.y53{bottom:775.440067px;}
.ye4{bottom:775.980079px;}
.y189{bottom:776.160049px;}
.y2b{bottom:778.140060px;}
.y78{bottom:782.280052px;}
.yac{bottom:784.980079px;}
.ye3{bottom:785.340054px;}
.y1aa{bottom:788.400055px;}
.y52{bottom:789.660049px;}
.y2a{bottom:792.360077px;}
.y154{bottom:794.880066px;}
.y114{bottom:795.240074px;}
.y188{bottom:797.220051px;}
.y77{bottom:803.340054px;}
.y113{bottom:804.600083px;}
.yab{bottom:806.040081px;}
.y29{bottom:806.580059px;}
.y51{bottom:808.380066px;}
.y22c{bottom:810.360077px;}
.y1a9{bottom:812.700061px;}
.ye2{bottom:813.060070px;}
.y153{bottom:816.120072px;}
.y50{bottom:818.100083px;}
.y187{bottom:818.280052px;}
.y28{bottom:820.800076px;}
.ye1{bottom:822.420078px;}
.y76{bottom:824.580059px;}
.y1f4{bottom:825.300076px;}
.yaa{bottom:827.280052px;}
.y27{bottom:835.020058px;}
.y22b{bottom:837.000068px;}
.y152{bottom:837.180073px;}
.y186{bottom:839.520058px;}
.y4f{bottom:841.320065px;}
.y1a8{bottom:842.580059px;}
.y75{bottom:845.640060px;}
.y112{bottom:846.360077px;}
.ya9{bottom:848.340054px;}
.y26{bottom:849.240074px;}
.ye0{bottom:854.280052px;}
.y4e{bottom:855.540081px;}
.y151{bottom:858.240074px;}
.y22a{bottom:860.040081px;}
.y185{bottom:860.580059px;}
.y25{bottom:863.460056px;}
.y1f3{bottom:865.620072px;}
.y74{bottom:866.700061px;}
.ya8{bottom:869.580059px;}
.y4d{bottom:869.760064px;}
.y24{bottom:877.680073px;}
.ydf{bottom:877.860077px;}
.y150{bottom:879.480079px;}
.y1f2{bottom:879.840054px;}
.y111{bottom:880.200061px;}
.y229{bottom:880.920078px;}
.y184{bottom:881.820065px;}
.y4c{bottom:883.980079px;}
.y73{bottom:887.940067px;}
.ya7{bottom:890.640060px;}
.y23{bottom:891.900055px;}
.y1f1{bottom:894.060070px;}
.y228{bottom:895.140060px;}
.yde{bottom:899.100083px;}
.y14f{bottom:900.540081px;}
.y4b{bottom:901.620072px;}
.y183{bottom:902.880066px;}
.y22{bottom:906.120072px;}
.y72{bottom:909.000068px;}
.y227{bottom:909.360077px;}
.y4a{bottom:910.980079px;}
.ya6{bottom:911.700061px;}
.ydd{bottom:920.160049px;}
.y21{bottom:920.340054px;}
.y14e{bottom:921.780052px;}
.y110{bottom:922.320065px;}
.y182{bottom:923.940067px;}
.y49{bottom:924.480079px;}
.y71{bottom:930.240074px;}
.y1f0{bottom:931.140060px;}
.ya5{bottom:932.940067px;}
.y48{bottom:938.340054px;}
.y20{bottom:938.880066px;}
.ydc{bottom:941.220051px;}
.y14d{bottom:942.840054px;}
.y10f{bottom:943.560070px;}
.y181{bottom:945.180073px;}
.y226{bottom:945.360077px;}
.y46{bottom:949.320065px;}
.y70{bottom:951.300076px;}
.ya4{bottom:954.000068px;}
.ydb{bottom:962.460056px;}
.y14c{bottom:962.820065px;}
.y10e{bottom:964.620072px;}
.y180{bottom:966.240074px;}
.y225{bottom:967.140060px;}
.y6f{bottom:972.360077px;}
.ya3{bottom:975.240074px;}
.y1f{bottom:976.500068px;}
.y1ef{bottom:979.740074px;}
.y224{bottom:981.360060px;}
.yda{bottom:983.160067px;}
.y14b{bottom:984.780069px;}
.y10d{bottom:985.860060px;}
.y17f{bottom:987.480063px;}
.y149{bottom:988.740074px;}
.y6e{bottom:993.600065px;}
.y223{bottom:995.580059px;}
.ya2{bottom:996.300058px;}
.y1e{bottom:1001.700061px;}
.y148{bottom:1006.560070px;}
.y10c{bottom:1006.920061px;}
.y17e{bottom:1008.540064px;}
.y14a{bottom:1010.340070px;}
.y1ee{bottom:1010.880066px;}
.y6d{bottom:1014.660067px;}
.y222{bottom:1017.180073px;}
.ya1{bottom:1017.540064px;}
.y1d{bottom:1021.320065px;}
.y1ed{bottom:1024.380066px;}
.y145{bottom:1025.820065px;}
.y10b{bottom:1027.980063px;}
.yd9{bottom:1028.700061px;}
.y17d{bottom:1029.600065px;}
.y221{bottom:1031.400072px;}
.y6c{bottom:1035.900072px;}
.ya0{bottom:1038.600065px;}
.y1c{bottom:1040.760064px;}
.y144{bottom:1047.060070px;}
.y10a{bottom:1049.220068px;}
.y17c{bottom:1050.840070px;}
.y220{bottom:1053.180073px;}
.y6b{bottom:1056.960074px;}
.y142{bottom:1058.400072px;}
.y9f{bottom:1059.660067px;}
.y1ec{bottom:1060.740074px;}
.y147{bottom:1061.280069px;}
.y21f{bottom:1067.400072px;}
.y109{bottom:1069.200061px;}
.y1b{bottom:1070.100065px;}
.y17b{bottom:1071.900072px;}
.yd8{bottom:1074.240074px;}
.y6a{bottom:1078.020058px;}
.y9e{bottom:1080.900072px;}
.y141{bottom:1086.840070px;}
.y21e{bottom:1089.180073px;}
.y108{bottom:1090.080059px;}
.y13f{bottom:1090.620072px;}
.y1eb{bottom:1092.960074px;}
.y17a{bottom:1093.140060px;}
.y105{bottom:1097.460074px;}
.y1a{bottom:1098.900072px;}
.y69{bottom:1099.260064px;}
.y9d{bottom:1101.960074px;}
.y21d{bottom:1103.400072px;}
.y104{bottom:1103.940067px;}
.y1ea{bottom:1106.280069px;}
.y13e{bottom:1108.440067px;}
.y140{bottom:1112.400072px;}
.y179{bottom:1114.200061px;}
.y107{bottom:1115.640060px;}
.y21c{bottom:1117.620072px;}
.y1e9{bottom:1119.600065px;}
.yd7{bottom:1119.780069px;}
.y68{bottom:1120.320065px;}
.y9c{bottom:1123.200061px;}
.yd{bottom:1131.840063px;}
.y13d{bottom:1137.780069px;}
.y1e8{bottom:1137.960065px;}
.y178{bottom:1138.500068px;}
.y21b{bottom:1139.220068px;}
.y103{bottom:1141.200061px;}
.y13b{bottom:1141.740066px;}
.y9b{bottom:1144.260064px;}
.yc{bottom:1149.660067px;}
.y21a{bottom:1153.440067px;}
.y1e7{bottom:1155.060070px;}
.y67{bottom:1159.560070px;}
.y13c{bottom:1163.340063px;}
.y9a{bottom:1165.320065px;}
.yd6{bottom:1166.040064px;}
.y219{bottom:1167.660067px;}
.y1e6{bottom:1168.380066px;}
.ya{bottom:1173.780069px;}
.y9{bottom:1178.460065px;}
.y4{bottom:1187.280069px;}
.y99{bottom:1187.640069px;}
.y7{bottom:1196.640065px;}
.y6{bottom:1201.320065px;}
.y66{bottom:1201.500065px;}
.y3{bottom:1201.680064px;}
.y98{bottom:1202.040064px;}
.y2{bottom:1215.720068px;}
.y65{bottom:1216.080068px;}
.y97{bottom:1216.620067px;}
.y5{bottom:1223.820065px;}
.y64{bottom:1230.300067px;}
.y1{bottom:1230.480067px;}
.h22{height:2.340019px;}
.h12{height:13.319996px;}
.h29{height:14.759994px;}
.h28{height:17.639992px;}
.h25{height:17.819996px;}
.h8{height:22.499995px;}
.h6{height:22.500000px;}
.h15{height:23.119356px;}
.h18{height:25.137693px;}
.h17{height:28.275494px;}
.hb{height:29.158271px;}
.h4{height:33.684460px;}
.h19{height:40.634056px;}
.h13{height:42.413283px;}
.h14{height:44.137031px;}
.h2{height:45.106083px;}
.h1f{height:45.829710px;}
.h1a{height:45.926194px;}
.h16{height:46.275494px;}
.h3{height:46.891030px;}
.h2d{height:47.671340px;}
.h1b{height:48.538092px;}
.h11{height:50.492104px;}
.h1e{height:51.302138px;}
.hf{height:54.038138px;}
.h2c{height:56.774138px;}
.h1d{height:57.111375px;}
.h10{height:58.148669px;}
.he{height:61.936925px;}
.h2e{height:62.665265px;}
.hd{height:63.063050px;}
.h5{height:71.288330px;}
.h7{height:72.860867px;}
.h9{height:76.907760px;}
.h1c{height:77.294993px;}
.h26{height:82.549589px;}
.h21{height:82.549723px;}
.h20{height:82.549728px;}
.h27{height:82.549863px;}
.hc{height:91.166947px;}
.h24{height:92.629544px;}
.h23{height:93.349701px;}
.h2a{height:108.469633px;}
.h2b{height:108.469908px;}
.ha{height:121.909167px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w9{width:4.500000px;}
.w7{width:5.219982px;}
.w4{width:5.579991px;}
.wc{width:5.939999px;}
.w6{width:6.299973px;}
.wa{width:6.300007px;}
.w2{width:8.100014px;}
.w5{width:11.340019px;}
.wb{width:54.719983px;}
.wd{width:61.560001px;}
.w8{width:67.860008px;}
.w3{width:81.360008px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:54.000000px;}
.xa{left:79.560001px;}
.x10{left:82.439999px;}
.x1{left:89.640000px;}
.x14{left:95.219999px;}
.x15{left:100.620002px;}
.x7{left:102.959997px;}
.x12{left:124.379998px;}
.x13{left:162.180005px;}
.x11{left:163.800007px;}
.x17{left:191.340002px;}
.x4d{left:197.280001px;}
.x24{left:199.439999px;}
.x2c{left:202.139992px;}
.x3e{left:203.400003px;}
.x45{left:204.840002px;}
.x4b{left:206.819996px;}
.x26{left:207.900003px;}
.x47{left:209.159998px;}
.x30{left:210.419992px;}
.x18{left:212.580008px;}
.x29{left:214.379998px;}
.x32{left:216.900003px;}
.x31{left:217.979994px;}
.x2e{left:219.060001px;}
.x27{left:220.319996px;}
.x2f{left:223.740006px;}
.x3f{left:225.900003px;}
.x44{left:227.520006px;}
.x48{left:230.580008px;}
.x41{left:233.099997px;}
.x42{left:236.159998px;}
.x35{left:237.240006px;}
.x3b{left:238.500000px;}
.x3c{left:242.099997px;}
.x8{left:244.263088px;}
.x34{left:250.740006px;}
.x38{left:253.259994px;}
.x3a{left:260.460005px;}
.x3d{left:263.520006px;}
.xd{left:266.400003px;}
.x25{left:267.659998px;}
.x57{left:270.360008px;}
.x4f{left:272.699993px;}
.x20{left:279.539996px;}
.x43{left:282.060001px;}
.x1b{left:283.680005px;}
.x28{left:291.240006px;}
.x23{left:294.300007px;}
.x33{left:297.540012px;}
.x21{left:299.339985px;}
.x1e{left:303.480011px;}
.x22{left:307.620002px;}
.x49{left:308.699993px;}
.x36{left:311.220017px;}
.x1f{left:317.160015px;}
.x1a{left:318.600013px;}
.x1c{left:323.100013px;}
.x40{left:326.699993px;}
.x5b{left:329.399987px;}
.xc{left:336.779983px;}
.xf{left:350.100014px;}
.x50{left:361.800007px;}
.x46{left:366.660015px;}
.x4a{left:370.079990px;}
.x4c{left:373.139992px;}
.x39{left:377.819996px;}
.x58{left:378.899987px;}
.x2d{left:379.980011px;}
.x59{left:383.759994px;}
.x5a{left:395.459988px;}
.x37{left:399.240006px;}
.x1d{left:405.180005px;}
.x53{left:444.779983px;}
.xb{left:446.399987px;}
.x16{left:453.600014px;}
.x19{left:456.120002px;}
.x51{left:459.180005px;}
.x52{left:465.120002px;}
.x5c{left:474.480011px;}
.xe{left:552.600014px;}
.x2{left:561.600014px;}
.x3{left:584.820030px;}
.x4e{left:593.460023px;}
.x5d{left:603.720017px;}
.x5e{left:608.580025px;}
.x5f{left:620.279983px;}
.x5{left:625.860008px;}
.x54{left:648.720017px;}
.x55{left:653.399987px;}
.x56{left:659.340019px;}
.x2a{left:664.019989px;}
.x2b{left:675.360008px;}
.x9{left:723.960023px;}
.x4{left:803.340019px;}
@media print{
.v5{vertical-align:-79.138557pt;}
.v6{vertical-align:-74.879884pt;}
.vf{vertical-align:-56.320068pt;}
.v2{vertical-align:-51.839844pt;}
.vb{vertical-align:-45.439944pt;}
.va{vertical-align:-42.239992pt;}
.v8{vertical-align:-32.640016pt;}
.v4{vertical-align:-16.000000pt;}
.ve{vertical-align:-12.159912pt;}
.vd{vertical-align:-10.239988pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.119996pt;}
.v7{vertical-align:32.640016pt;}
.v9{vertical-align:42.239992pt;}
.vc{vertical-align:55.679932pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.159604pt;}
.ls3{letter-spacing:0.190413pt;}
.ls7{letter-spacing:1.962370pt;}
.ls5{letter-spacing:14.509147pt;}
.ls6{letter-spacing:14.509188pt;}
.ls9{letter-spacing:256.162812pt;}
.lsb{letter-spacing:476.437938pt;}
.lsa{letter-spacing:551.957958pt;}
.ls1{letter-spacing:754.703446pt;}
.ls0{letter-spacing:1006.447582pt;}
.ls8{letter-spacing:1383.317882pt;}
.ws2{word-spacing:-160.006392pt;}
.wsa{word-spacing:-16.995858pt;}
.ws1{word-spacing:-14.111229pt;}
.ws0{word-spacing:-13.778417pt;}
.wsb{word-spacing:-12.640500pt;}
.wsc{word-spacing:-10.077176pt;}
.wsd{word-spacing:-9.925156pt;}
.ws5{word-spacing:-9.391070pt;}
.ws4{word-spacing:-8.830430pt;}
.ws7{word-spacing:-8.000310pt;}
.ws8{word-spacing:-7.684138pt;}
.ws3{word-spacing:-7.568929pt;}
.ws6{word-spacing:-5.886948pt;}
.ws9{word-spacing:0.000000pt;}
._71{margin-left:-10.391500pt;}
._73{margin-left:-9.484756pt;}
._e{margin-left:-6.475122pt;}
._72{margin-left:-4.372027pt;}
._12{margin-left:-3.134844pt;}
._7{margin-left:-2.212984pt;}
._0{margin-left:-1.157803pt;}
._1{width:0.943395pt;}
._8{width:2.213203pt;}
._5{width:3.489241pt;}
._6{width:5.129599pt;}
._9{width:6.474455pt;}
._2{width:8.087368pt;}
._3{width:9.538947pt;}
._b{width:10.763282pt;}
._a{width:11.921085pt;}
._17{width:12.842748pt;}
._1b{width:14.511294pt;}
._14{width:16.247685pt;}
._13{width:17.140518pt;}
._6f{width:18.270165pt;}
._c{width:19.253838pt;}
._d{width:20.282997pt;}
._11{width:21.230917pt;}
._10{width:22.247280pt;}
._47{width:23.511330pt;}
._70{width:24.960345pt;}
._15{width:25.905027pt;}
._16{width:27.303480pt;}
._18{width:35.107311pt;}
._19{width:36.134547pt;}
._4b{width:47.212642pt;}
._53{width:53.068752pt;}
._5e{width:54.073698pt;}
._59{width:56.279328pt;}
._52{width:57.435322pt;}
._4f{width:58.988222pt;}
._54{width:61.432473pt;}
._50{width:64.451045pt;}
._51{width:66.423598pt;}
._57{width:69.425310pt;}
._5d{width:71.166596pt;}
._68{width:72.924742pt;}
._65{width:74.270931pt;}
._56{width:77.143998pt;}
._40{width:78.999650pt;}
._6c{width:80.081267pt;}
._66{width:82.607359pt;}
._20{width:83.662002pt;}
._3f{width:85.803919pt;}
._33{width:86.921003pt;}
._67{width:88.395658pt;}
._36{width:90.523058pt;}
._39{width:92.066795pt;}
._1c{width:93.867822pt;}
._34{width:95.540205pt;}
._46{width:99.442430pt;}
._30{width:100.814642pt;}
._3b{width:103.288873pt;}
._6d{width:105.597506pt;}
._6e{width:106.718800pt;}
._49{width:108.406847pt;}
._3e{width:110.162830pt;}
._45{width:111.535042pt;}
._61{width:114.022174pt;}
._4a{width:116.337781pt;}
._41{width:119.167966pt;}
._28{width:120.185258pt;}
._43{width:121.312046pt;}
._3d{width:122.255442pt;}
._27{width:125.857496pt;}
._4d{width:127.371253pt;}
._48{width:129.716840pt;}
._44{width:132.547026pt;}
._2f{width:133.661947pt;}
._1d{width:137.864344pt;}
._6a{width:139.579608pt;}
._60{width:141.080464pt;}
._2a{width:144.296584pt;}
._69{width:145.797440pt;}
._23{width:147.298296pt;}
._64{width:148.670507pt;}
._63{width:149.871192pt;}
._62{width:154.214100pt;}
._24{width:155.433934pt;}
._29{width:157.032419pt;}
._2b{width:159.476670pt;}
._2d{width:161.149053pt;}
._38{width:163.070043pt;}
._37{width:164.678245pt;}
._35{width:165.595873pt;}
._6b{width:167.967227pt;}
._1f{width:171.814705pt;}
._1a{width:173.627598pt;}
._f{width:180.016957pt;}
._1e{width:181.174760pt;}
._2c{width:183.018669pt;}
._32{width:184.768687pt;}
._2e{width:196.774793pt;}
._58{width:199.182215pt;}
._5a{width:200.240914pt;}
._31{width:202.744205pt;}
._25{width:207.504062pt;}
._5b{width:212.312254pt;}
._26{width:213.421723pt;}
._4e{width:215.880582pt;}
._5f{width:224.356531pt;}
._21{width:229.030626pt;}
._22{width:235.119813pt;}
._55{width:272.932603pt;}
._5c{width:283.493399pt;}
._4c{width:310.548547pt;}
._3c{width:382.920682pt;}
._42{width:439.972703pt;}
._3a{width:488.176110pt;}
._4{width:1063.892496pt;}
.fsd{font-size:21.120800pt;}
.fse{font-size:26.881040pt;}
.fsf{font-size:32.001240pt;}
.fs8{font-size:34.561320pt;}
.fs5{font-size:37.119590pt;}
.fsc{font-size:37.121440pt;}
.fsb{font-size:40.321600pt;}
.fs0{font-size:42.881600pt;}
.fs10{font-size:45.320347pt;}
.fsa{font-size:48.002000pt;}
.fs9{font-size:50.562000pt;}
.fs2{font-size:53.122000pt;}
.fs12{font-size:53.437544pt;}
.fs13{font-size:56.322000pt;}
.fs7{font-size:58.882400pt;}
.fs1{font-size:66.562400pt;}
.fs3{font-size:69.122804pt;}
.fs11{font-size:72.322800pt;}
.fs6{font-size:85.123200pt;}
.fs4{font-size:160.006392pt;}
.yed{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:2.559997pt;}
.y146{bottom:3.040008pt;}
.yb{bottom:4.159996pt;}
.y8{bottom:4.160000pt;}
.y106{bottom:5.759994pt;}
.y143{bottom:5.759995pt;}
.y160{bottom:5.760010pt;}
.y19{bottom:13.120118pt;}
.y18{bottom:25.440064pt;}
.y17{bottom:38.240113pt;}
.y16{bottom:38.252417pt;}
.y15{bottom:48.974302pt;}
.y14{bottom:59.690657pt;}
.y13{bottom:70.409777pt;}
.yf{bottom:74.080079pt;}
.y12{bottom:81.131662pt;}
.y1e5{bottom:91.200074pt;}
.y11{bottom:91.853659pt;}
.ycb{bottom:96.640015pt;}
.y96{bottom:97.120118pt;}
.y218{bottom:98.400025pt;}
.y102{bottom:98.560059pt;}
.yd5{bottom:99.680054pt;}
.y10{bottom:102.731415pt;}
.y1e4{bottom:103.040039pt;}
.y177{bottom:104.000061pt;}
.y13a{bottom:108.480042pt;}
.y217{bottom:111.040039pt;}
.y138{bottom:111.840088pt;}
.ye{bottom:113.600037pt;}
.y1e3{bottom:114.880066pt;}
.yc9{bottom:115.520081pt;}
.y95{bottom:116.000061pt;}
.y101{bottom:117.280030pt;}
.yd4{bottom:118.400086pt;}
.y176{bottom:122.720032pt;}
.y216{bottom:123.680054pt;}
.y1a7{bottom:126.400086pt;}
.y1e2{bottom:126.720032pt;}
.y137{bottom:127.680054pt;}
.y139{bottom:131.200074pt;}
.yc8{bottom:134.240052pt;}
.y94{bottom:134.720032pt;}
.y100{bottom:136.160035pt;}
.yd3{bottom:137.280030pt;}
.y1e1{bottom:138.560059pt;}
.y175{bottom:141.440064pt;}
.y215{bottom:143.040039pt;}
.y1a6{bottom:145.120057pt;}
.y1e0{bottom:150.400086pt;}
.yc7{bottom:152.960083pt;}
.y93{bottom:153.600037pt;}
.y136{bottom:153.760071pt;}
.yff{bottom:154.880066pt;}
.y214{bottom:155.680054pt;}
.y1c0{bottom:156.000061pt;}
.y134{bottom:157.280030pt;}
.y174{bottom:160.320069pt;}
.y1df{bottom:162.240052pt;}
.y1a5{bottom:163.840088pt;}
.yc6{bottom:171.840088pt;}
.y92{bottom:172.320069pt;}
.y133{bottom:173.120057pt;}
.yfe{bottom:173.760071pt;}
.yd2{bottom:174.720032pt;}
.y213{bottom:175.040039pt;}
.y135{bottom:176.480042pt;}
.y1de{bottom:178.560059pt;}
.y173{bottom:179.040039pt;}
.y1a4{bottom:182.720032pt;}
.y212{bottom:187.680054pt;}
.yc5{bottom:190.560059pt;}
.y91{bottom:191.040039pt;}
.yfd{bottom:192.480042pt;}
.yd1{bottom:193.600037pt;}
.y1dd{bottom:193.920044pt;}
.y172{bottom:197.920044pt;}
.y132{bottom:199.200074pt;}
.y1a3{bottom:201.440064pt;}
.y130{bottom:202.560059pt;}
.y1dc{bottom:205.760071pt;}
.y211{bottom:206.880066pt;}
.yc4{bottom:209.440064pt;}
.yfc{bottom:211.200074pt;}
.yd0{bottom:212.320069pt;}
.y90{bottom:212.640076pt;}
.y171{bottom:216.640076pt;}
.y1db{bottom:217.600037pt;}
.y12f{bottom:218.400086pt;}
.y210{bottom:219.520081pt;}
.y1a2{bottom:220.320069pt;}
.y131{bottom:221.760071pt;}
.yc3{bottom:228.160035pt;}
.y1da{bottom:229.440064pt;}
.yfb{bottom:230.080079pt;}
.ycf{bottom:231.200074pt;}
.y170{bottom:235.360047pt;}
.y20f{bottom:238.880066pt;}
.y1a1{bottom:239.040039pt;}
.y8f{bottom:239.360047pt;}
.y1d9{bottom:241.280030pt;}
.y12e{bottom:244.480042pt;}
.yc2{bottom:246.880066pt;}
.y12c{bottom:247.840088pt;}
.yfa{bottom:248.800049pt;}
.yce{bottom:249.920044pt;}
.y20e{bottom:251.520081pt;}
.y1d8{bottom:253.120057pt;}
.y16f{bottom:254.240052pt;}
.y1a0{bottom:257.760071pt;}
.y8e{bottom:263.200074pt;}
.y12b{bottom:263.680054pt;}
.yc1{bottom:265.760071pt;}
.y12d{bottom:267.200074pt;}
.y1bf{bottom:268.640076pt;}
.yf9{bottom:269.440064pt;}
.y20d{bottom:270.880066pt;}
.ycd{bottom:271.520081pt;}
.y16e{bottom:272.000061pt;}
.yf7{bottom:273.760071pt;}
.y19f{bottom:276.640076pt;}
.y8d{bottom:282.080079pt;}
.y20c{bottom:283.520081pt;}
.yc0{bottom:284.480042pt;}
.y1be{bottom:287.520081pt;}
.yf6{bottom:289.600037pt;}
.y12a{bottom:289.760071pt;}
.yf8{bottom:292.160035pt;}
.y16b{bottom:294.560059pt;}
.y16d{bottom:294.720032pt;}
.y19e{bottom:295.360047pt;}
.y20b{bottom:296.160035pt;}
.y1d7{bottom:298.080079pt;}
.ycc{bottom:298.240052pt;}
.y8c{bottom:300.800049pt;}
.ybf{bottom:303.360047pt;}
.y1bd{bottom:306.240052pt;}
.y1d6{bottom:309.920044pt;}
.y129{bottom:310.400086pt;}
.y19d{bottom:314.240052pt;}
.yf5{bottom:314.720032pt;}
.y20a{bottom:315.360047pt;}
.y16c{bottom:316.480042pt;}
.yf3{bottom:319.040039pt;}
.y8b{bottom:319.680054pt;}
.y1d5{bottom:321.920044pt;}
.ybe{bottom:322.080079pt;}
.y1bc{bottom:325.120057pt;}
.y209{bottom:328.000061pt;}
.y19c{bottom:332.960083pt;}
.y45{bottom:333.440064pt;}
.y1d4{bottom:333.760071pt;}
.yf2{bottom:334.880066pt;}
.yf4{bottom:337.440064pt;}
.y8a{bottom:338.400086pt;}
.y168{bottom:339.040039pt;}
.y16a{bottom:339.200074pt;}
.ybd{bottom:340.800049pt;}
.y1bb{bottom:343.840088pt;}
.y1d3{bottom:345.600037pt;}
.y208{bottom:347.360047pt;}
.y44{bottom:347.520081pt;}
.y128{bottom:348.000061pt;}
.y19b{bottom:351.680054pt;}
.y167{bottom:354.880066pt;}
.y89{bottom:357.120057pt;}
.y1d2{bottom:357.440064pt;}
.ybc{bottom:359.680054pt;}
.y207{bottom:360.000061pt;}
.yf1{bottom:360.160035pt;}
.y169{bottom:360.960083pt;}
.y43{bottom:361.760071pt;}
.y1ba{bottom:362.560059pt;}
.y127{bottom:366.720032pt;}
.y1d1{bottom:369.280030pt;}
.y19a{bottom:370.560059pt;}
.yf0{bottom:372.320069pt;}
.y206{bottom:372.640076pt;}
.y42{bottom:375.680054pt;}
.y88{bottom:376.000061pt;}
.ybb{bottom:378.400086pt;}
.y1b9{bottom:381.440064pt;}
.y166{bottom:383.680054pt;}
.y126{bottom:385.600037pt;}
.y199{bottom:389.280030pt;}
.y163{bottom:391.360047pt;}
.y205{bottom:392.000061pt;}
.y87{bottom:394.720032pt;}
.yba{bottom:397.280030pt;}
.y164{bottom:399.680054pt;}
.y1b8{bottom:400.160035pt;}
.y1d0{bottom:400.800049pt;}
.y41{bottom:401.280030pt;}
.y165{bottom:402.720032pt;}
.y125{bottom:404.320069pt;}
.y204{bottom:404.640076pt;}
.yef{bottom:405.440064pt;}
.y198{bottom:408.160035pt;}
.y1cf{bottom:412.640076pt;}
.y86{bottom:413.600037pt;}
.y40{bottom:415.840088pt;}
.yb9{bottom:416.000061pt;}
.y203{bottom:417.280030pt;}
.yee{bottom:417.600037pt;}
.y1b7{bottom:419.040039pt;}
.y1ce{bottom:424.640076pt;}
.y63{bottom:426.560059pt;}
.y197{bottom:426.880066pt;}
.y162{bottom:428.160035pt;}
.y3f{bottom:431.520081pt;}
.y85{bottom:432.320069pt;}
.yb8{bottom:434.720032pt;}
.y161{bottom:435.840088pt;}
.y1cd{bottom:436.480042pt;}
.y1b6{bottom:437.760071pt;}
.y62{bottom:439.200074pt;}
.y124{bottom:441.920044pt;}
.yec{bottom:442.880066pt;}
.y3e{bottom:444.160035pt;}
.y196{bottom:445.600037pt;}
.y1cc{bottom:448.320069pt;}
.y202{bottom:449.120057pt;}
.yeb{bottom:450.720032pt;}
.y61{bottom:451.040039pt;}
.yb7{bottom:453.600037pt;}
.y1b5{bottom:456.480042pt;}
.y3d{bottom:456.800049pt;}
.y123{bottom:459.680054pt;}
.y1cb{bottom:460.160035pt;}
.y195{bottom:464.480042pt;}
.y15f{bottom:466.880066pt;}
.y201{bottom:468.480042pt;}
.y3c{bottom:469.440064pt;}
.y84{bottom:469.920044pt;}
.y60{bottom:470.560059pt;}
.y1ca{bottom:472.000061pt;}
.yb6{bottom:472.320069pt;}
.y1b4{bottom:475.360047pt;}
.y122{bottom:476.160035pt;}
.y15e{bottom:480.320069pt;}
.y200{bottom:481.120057pt;}
.y3b{bottom:482.080079pt;}
.y194{bottom:483.200074pt;}
.y1c9{bottom:483.840088pt;}
.y121{bottom:484.480042pt;}
.y83{bottom:488.640076pt;}
.y5f{bottom:489.920044pt;}
.yea{bottom:491.040039pt;}
.yb5{bottom:491.200074pt;}
.y1b3{bottom:494.080079pt;}
.y3a{bottom:494.720032pt;}
.y1c8{bottom:495.680054pt;}
.y1ff{bottom:500.480042pt;}
.y193{bottom:502.080079pt;}
.y39{bottom:507.360047pt;}
.y82{bottom:507.520081pt;}
.y120{bottom:509.120057pt;}
.y5e{bottom:509.440064pt;}
.yb4{bottom:509.920044pt;}
.y1b2{bottom:512.960083pt;}
.y1fe{bottom:513.120057pt;}
.y15d{bottom:516.960083pt;}
.y11f{bottom:517.440064pt;}
.y1c7{bottom:519.360047pt;}
.y38{bottom:520.000061pt;}
.y192{bottom:520.800049pt;}
.y15c{bottom:524.800049pt;}
.y81{bottom:526.240052pt;}
.yb3{bottom:528.640076pt;}
.y5d{bottom:529.120057pt;}
.y1c6{bottom:531.200074pt;}
.y1b1{bottom:531.680054pt;}
.y1fd{bottom:532.320069pt;}
.y37{bottom:532.640076pt;}
.y191{bottom:539.520081pt;}
.y11e{bottom:542.080079pt;}
.y1c5{bottom:543.040039pt;}
.y80{bottom:544.960083pt;}
.y36{bottom:545.280030pt;}
.ye9{bottom:547.360047pt;}
.yb2{bottom:547.520081pt;}
.y5c{bottom:548.800049pt;}
.y11d{bottom:550.400086pt;}
.y1c4{bottom:554.880066pt;}
.y35{bottom:557.920044pt;}
.y190{bottom:558.400086pt;}
.y15b{bottom:561.440064pt;}
.y7f{bottom:563.840088pt;}
.y1fc{bottom:564.320069pt;}
.yb1{bottom:566.240052pt;}
.y5b{bottom:569.120057pt;}
.y15a{bottom:569.280030pt;}
.y34{bottom:570.560059pt;}
.y1c3{bottom:571.200074pt;}
.y11c{bottom:575.040039pt;}
.y1fb{bottom:576.960083pt;}
.y18f{bottom:577.120057pt;}
.y7e{bottom:582.560059pt;}
.y33{bottom:583.200074pt;}
.y11b{bottom:583.360047pt;}
.ye8{bottom:584.960083pt;}
.yca{bottom:585.120057pt;}
.y1b0{bottom:588.000061pt;}
.y5a{bottom:589.280030pt;}
.y32{bottom:595.840088pt;}
.y18e{bottom:596.000061pt;}
.y1fa{bottom:596.320069pt;}
.y1c2{bottom:600.960083pt;}
.y7d{bottom:601.440064pt;}
.yb0{bottom:603.840088pt;}
.y159{bottom:605.920044pt;}
.y1af{bottom:606.880066pt;}
.y11a{bottom:608.000061pt;}
.y59{bottom:608.800049pt;}
.y1f9{bottom:608.960083pt;}
.y31{bottom:609.120057pt;}
.y158{bottom:613.760071pt;}
.y18d{bottom:614.720063pt;}
.y119{bottom:616.320069pt;}
.y1c1{bottom:619.680054pt;}
.y7c{bottom:620.160065pt;}
.yaf{bottom:622.560059pt;}
.y30{bottom:624.800049pt;}
.y1ae{bottom:625.600068pt;}
.y58{bottom:626.080048pt;}
.y1f8{bottom:628.160065pt;}
.y18c{bottom:633.440064pt;}
.y57{bottom:635.360047pt;}
.y2f{bottom:638.080048pt;}
.y7b{bottom:639.040070pt;}
.ye7{bottom:640.320069pt;}
.y1f7{bottom:640.800049pt;}
.y118{bottom:640.960053pt;}
.yae{bottom:641.440064pt;}
.y56{bottom:642.720063pt;}
.y1ad{bottom:644.320069pt;}
.y157{bottom:647.840058pt;}
.y117{bottom:649.280060pt;}
.y18b{bottom:652.320069pt;}
.y2e{bottom:653.760071pt;}
.ye6{bottom:656.800049pt;}
.y7a{bottom:657.760071pt;}
.yad{bottom:660.160065pt;}
.y1ac{bottom:663.200074pt;}
.y55{bottom:664.000061pt;}
.ye5{bottom:665.120057pt;}
.y2d{bottom:666.400055pt;}
.y156{bottom:668.960053pt;}
.y18a{bottom:671.040070pt;}
.y1f6{bottom:672.800049pt;}
.y116{bottom:673.920044pt;}
.y79{bottom:676.480072pt;}
.y54{bottom:676.640046pt;}
.y2c{bottom:679.040070pt;}
.y1ab{bottom:681.920044pt;}
.y115{bottom:682.240052pt;}
.y1f5{bottom:685.440064pt;}
.y155{bottom:687.840058pt;}
.y53{bottom:689.280060pt;}
.ye4{bottom:689.760071pt;}
.y189{bottom:689.920044pt;}
.y2b{bottom:691.680054pt;}
.y78{bottom:695.360047pt;}
.yac{bottom:697.760071pt;}
.ye3{bottom:698.080048pt;}
.y1aa{bottom:700.800049pt;}
.y52{bottom:701.920044pt;}
.y2a{bottom:704.320069pt;}
.y154{bottom:706.560059pt;}
.y114{bottom:706.880066pt;}
.y188{bottom:708.640046pt;}
.y77{bottom:714.080048pt;}
.y113{bottom:715.200074pt;}
.yab{bottom:716.480072pt;}
.y29{bottom:716.960053pt;}
.y51{bottom:718.560059pt;}
.y22c{bottom:720.320069pt;}
.y1a9{bottom:722.400055pt;}
.ye2{bottom:722.720063pt;}
.y153{bottom:725.440064pt;}
.y50{bottom:727.200074pt;}
.y187{bottom:727.360047pt;}
.y28{bottom:729.600068pt;}
.ye1{bottom:731.040070pt;}
.y76{bottom:732.960053pt;}
.y1f4{bottom:733.600068pt;}
.yaa{bottom:735.360047pt;}
.y27{bottom:742.240052pt;}
.y22b{bottom:744.000061pt;}
.y152{bottom:744.160065pt;}
.y186{bottom:746.240052pt;}
.y4f{bottom:747.840058pt;}
.y1a8{bottom:748.960053pt;}
.y75{bottom:751.680054pt;}
.y112{bottom:752.320069pt;}
.ya9{bottom:754.080048pt;}
.y26{bottom:754.880066pt;}
.ye0{bottom:759.360047pt;}
.y4e{bottom:760.480072pt;}
.y151{bottom:762.880066pt;}
.y22a{bottom:764.480072pt;}
.y185{bottom:764.960053pt;}
.y25{bottom:767.520050pt;}
.y1f3{bottom:769.440064pt;}
.y74{bottom:770.400055pt;}
.ya8{bottom:772.960053pt;}
.y4d{bottom:773.120057pt;}
.y24{bottom:780.160065pt;}
.ydf{bottom:780.320069pt;}
.y150{bottom:781.760071pt;}
.y1f2{bottom:782.080048pt;}
.y111{bottom:782.400055pt;}
.y229{bottom:783.040070pt;}
.y184{bottom:783.840058pt;}
.y4c{bottom:785.760071pt;}
.y73{bottom:789.280060pt;}
.ya7{bottom:791.680054pt;}
.y23{bottom:792.800049pt;}
.y1f1{bottom:794.720063pt;}
.y228{bottom:795.680054pt;}
.yde{bottom:799.200074pt;}
.y14f{bottom:800.480072pt;}
.y4b{bottom:801.440064pt;}
.y183{bottom:802.560059pt;}
.y22{bottom:805.440064pt;}
.y72{bottom:808.000061pt;}
.y227{bottom:808.320069pt;}
.y4a{bottom:809.760071pt;}
.ya6{bottom:810.400055pt;}
.ydd{bottom:817.920044pt;}
.y21{bottom:818.080048pt;}
.y14e{bottom:819.360047pt;}
.y110{bottom:819.840058pt;}
.y182{bottom:821.280060pt;}
.y49{bottom:821.760071pt;}
.y71{bottom:826.880066pt;}
.y1f0{bottom:827.680054pt;}
.ya5{bottom:829.280060pt;}
.y48{bottom:834.080048pt;}
.y20{bottom:834.560059pt;}
.ydc{bottom:836.640046pt;}
.y14d{bottom:838.080048pt;}
.y10f{bottom:838.720063pt;}
.y181{bottom:840.160065pt;}
.y226{bottom:840.320069pt;}
.y46{bottom:843.840058pt;}
.y70{bottom:845.600068pt;}
.ya4{bottom:848.000061pt;}
.ydb{bottom:855.520050pt;}
.y14c{bottom:855.840058pt;}
.y10e{bottom:857.440064pt;}
.y180{bottom:858.880066pt;}
.y225{bottom:859.680054pt;}
.y6f{bottom:864.320069pt;}
.ya3{bottom:866.880066pt;}
.y1f{bottom:868.000061pt;}
.y1ef{bottom:870.880066pt;}
.y224{bottom:872.320054pt;}
.yda{bottom:873.920060pt;}
.y14b{bottom:875.360062pt;}
.y10d{bottom:876.320054pt;}
.y17f{bottom:877.760056pt;}
.y149{bottom:878.880066pt;}
.y6e{bottom:883.200058pt;}
.y223{bottom:884.960053pt;}
.ya2{bottom:885.600052pt;}
.y1e{bottom:890.400055pt;}
.y148{bottom:894.720063pt;}
.y10c{bottom:895.040055pt;}
.y17e{bottom:896.480057pt;}
.y14a{bottom:898.080063pt;}
.y1ee{bottom:898.560059pt;}
.y6d{bottom:901.920060pt;}
.y222{bottom:904.160065pt;}
.ya1{bottom:904.480057pt;}
.y1d{bottom:907.840058pt;}
.y1ed{bottom:910.560059pt;}
.y145{bottom:911.840058pt;}
.y10b{bottom:913.760056pt;}
.yd9{bottom:914.400055pt;}
.y17d{bottom:915.200058pt;}
.y221{bottom:916.800064pt;}
.y6c{bottom:920.800064pt;}
.ya0{bottom:923.200058pt;}
.y1c{bottom:925.120057pt;}
.y144{bottom:930.720063pt;}
.y10a{bottom:932.640061pt;}
.y17c{bottom:934.080063pt;}
.y220{bottom:936.160065pt;}
.y6b{bottom:939.520066pt;}
.y142{bottom:940.800064pt;}
.y9f{bottom:941.920060pt;}
.y1ec{bottom:942.880066pt;}
.y147{bottom:943.360062pt;}
.y21f{bottom:948.800064pt;}
.y109{bottom:950.400055pt;}
.y1b{bottom:951.200058pt;}
.y17b{bottom:952.800064pt;}
.yd8{bottom:954.880066pt;}
.y6a{bottom:958.240052pt;}
.y9e{bottom:960.800064pt;}
.y141{bottom:966.080063pt;}
.y21e{bottom:968.160065pt;}
.y108{bottom:968.960053pt;}
.y13f{bottom:969.440064pt;}
.y1eb{bottom:971.520066pt;}
.y17a{bottom:971.680054pt;}
.y105{bottom:975.520066pt;}
.y1a{bottom:976.800064pt;}
.y69{bottom:977.120057pt;}
.y9d{bottom:979.520066pt;}
.y21d{bottom:980.800064pt;}
.y104{bottom:981.280060pt;}
.y1ea{bottom:983.360062pt;}
.y13e{bottom:985.280060pt;}
.y140{bottom:988.800064pt;}
.y179{bottom:990.400055pt;}
.y107{bottom:991.680054pt;}
.y21c{bottom:993.440064pt;}
.y1e9{bottom:995.200058pt;}
.yd7{bottom:995.360062pt;}
.y68{bottom:995.840058pt;}
.y9c{bottom:998.400055pt;}
.yd{bottom:1006.080056pt;}
.y13d{bottom:1011.360062pt;}
.y1e8{bottom:1011.520058pt;}
.y178{bottom:1012.000061pt;}
.y21b{bottom:1012.640061pt;}
.y103{bottom:1014.400055pt;}
.y13b{bottom:1014.880059pt;}
.y9b{bottom:1017.120057pt;}
.yc{bottom:1021.920060pt;}
.y21a{bottom:1025.280060pt;}
.y1e7{bottom:1026.720063pt;}
.y67{bottom:1030.720063pt;}
.y13c{bottom:1034.080056pt;}
.y9a{bottom:1035.840058pt;}
.yd6{bottom:1036.480057pt;}
.y219{bottom:1037.920060pt;}
.y1e6{bottom:1038.560059pt;}
.ya{bottom:1043.360062pt;}
.y9{bottom:1047.520058pt;}
.y4{bottom:1055.360062pt;}
.y99{bottom:1055.680062pt;}
.y7{bottom:1063.680058pt;}
.y6{bottom:1067.840058pt;}
.y66{bottom:1068.000058pt;}
.y3{bottom:1068.160057pt;}
.y98{bottom:1068.480057pt;}
.y2{bottom:1080.640061pt;}
.y65{bottom:1080.960061pt;}
.y97{bottom:1081.440060pt;}
.y5{bottom:1087.840058pt;}
.y64{bottom:1093.600060pt;}
.y1{bottom:1093.760060pt;}
.h22{height:2.080017pt;}
.h12{height:11.839996pt;}
.h29{height:13.119995pt;}
.h28{height:15.679993pt;}
.h25{height:15.839996pt;}
.h8{height:19.999996pt;}
.h6{height:20.000000pt;}
.h15{height:20.550538pt;}
.h18{height:22.344616pt;}
.h17{height:25.133772pt;}
.hb{height:25.918463pt;}
.h4{height:29.941742pt;}
.h19{height:36.119161pt;}
.h13{height:37.700696pt;}
.h14{height:39.232917pt;}
.h2{height:40.094296pt;}
.h1f{height:40.737520pt;}
.h1a{height:40.823283pt;}
.h16{height:41.133772pt;}
.h3{height:41.680915pt;}
.h2d{height:42.374525pt;}
.h1b{height:43.144971pt;}
.h11{height:44.881870pt;}
.h1e{height:45.601900pt;}
.hf{height:48.033900pt;}
.h2c{height:50.465900pt;}
.h1d{height:50.765667pt;}
.h10{height:51.687706pt;}
.he{height:55.055044pt;}
.h2e{height:55.702458pt;}
.hd{height:56.056045pt;}
.h5{height:63.367405pt;}
.h7{height:64.765215pt;}
.h9{height:68.362453pt;}
.h1c{height:68.706660pt;}
.h26{height:73.377412pt;}
.h21{height:73.377532pt;}
.h20{height:73.377536pt;}
.h27{height:73.377656pt;}
.hc{height:81.037286pt;}
.h24{height:82.337372pt;}
.h23{height:82.977512pt;}
.h2a{height:96.417452pt;}
.h2b{height:96.417696pt;}
.ha{height:108.363704pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w9{width:4.000000pt;}
.w7{width:4.639984pt;}
.w4{width:4.959992pt;}
.wc{width:5.279999pt;}
.w6{width:5.599976pt;}
.wa{width:5.600006pt;}
.w2{width:7.200012pt;}
.w5{width:10.080017pt;}
.wb{width:48.639985pt;}
.wd{width:54.720001pt;}
.w8{width:60.320007pt;}
.w3{width:72.320007pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:48.000000pt;}
.xa{left:70.720001pt;}
.x10{left:73.279999pt;}
.x1{left:79.680000pt;}
.x14{left:84.639999pt;}
.x15{left:89.440002pt;}
.x7{left:91.519997pt;}
.x12{left:110.559998pt;}
.x13{left:144.160004pt;}
.x11{left:145.600006pt;}
.x17{left:170.080002pt;}
.x4d{left:175.360001pt;}
.x24{left:177.279999pt;}
.x2c{left:179.679993pt;}
.x3e{left:180.800003pt;}
.x45{left:182.080002pt;}
.x4b{left:183.839996pt;}
.x26{left:184.800003pt;}
.x47{left:185.919998pt;}
.x30{left:187.039993pt;}
.x18{left:188.960007pt;}
.x29{left:190.559998pt;}
.x32{left:192.800003pt;}
.x31{left:193.759995pt;}
.x2e{left:194.720001pt;}
.x27{left:195.839996pt;}
.x2f{left:198.880005pt;}
.x3f{left:200.800003pt;}
.x44{left:202.240005pt;}
.x48{left:204.960007pt;}
.x41{left:207.199997pt;}
.x42{left:209.919998pt;}
.x35{left:210.880005pt;}
.x3b{left:212.000000pt;}
.x3c{left:215.199997pt;}
.x8{left:217.122745pt;}
.x34{left:222.880005pt;}
.x38{left:225.119995pt;}
.x3a{left:231.520004pt;}
.x3d{left:234.240005pt;}
.xd{left:236.800003pt;}
.x25{left:237.919998pt;}
.x57{left:240.320007pt;}
.x4f{left:242.399994pt;}
.x20{left:248.479996pt;}
.x43{left:250.720001pt;}
.x1b{left:252.160004pt;}
.x28{left:258.880005pt;}
.x23{left:261.600006pt;}
.x33{left:264.480011pt;}
.x21{left:266.079987pt;}
.x1e{left:269.760010pt;}
.x22{left:273.440002pt;}
.x49{left:274.399994pt;}
.x36{left:276.640015pt;}
.x1f{left:281.920013pt;}
.x1a{left:283.200012pt;}
.x1c{left:287.200012pt;}
.x40{left:290.399994pt;}
.x5b{left:292.799988pt;}
.xc{left:299.359985pt;}
.xf{left:311.200012pt;}
.x50{left:321.600006pt;}
.x46{left:325.920013pt;}
.x4a{left:328.959991pt;}
.x4c{left:331.679993pt;}
.x39{left:335.839996pt;}
.x58{left:336.799988pt;}
.x2d{left:337.760010pt;}
.x59{left:341.119995pt;}
.x5a{left:351.519989pt;}
.x37{left:354.880005pt;}
.x1d{left:360.160004pt;}
.x53{left:395.359985pt;}
.xb{left:396.799988pt;}
.x16{left:403.200012pt;}
.x19{left:405.440002pt;}
.x51{left:408.160004pt;}
.x52{left:413.440002pt;}
.x5c{left:421.760010pt;}
.xe{left:491.200012pt;}
.x2{left:499.200012pt;}
.x3{left:519.840027pt;}
.x4e{left:527.520020pt;}
.x5d{left:536.640015pt;}
.x5e{left:540.960022pt;}
.x5f{left:551.359985pt;}
.x5{left:556.320007pt;}
.x54{left:576.640015pt;}
.x55{left:580.799988pt;}
.x56{left:586.080017pt;}
.x2a{left:590.239990pt;}
.x2b{left:600.320007pt;}
.x9{left:643.520020pt;}
.x4{left:714.080017pt;}
}




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