
    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_df5fb48abb131cc4db9c2437.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_e40d53c793fb298a3e31237b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_3e721e9db5918d831865e96a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_3a35285b433c8f5b303a0e5e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_fbbd1f8e6168b70d87d022fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2d5676d1e5beabff742f1f30.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f41a9d089803690addaeb104.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_39ee4b281a6e1cc67d28b88b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.704000;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.185361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185361,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.186773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186773,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.236532,0.000000,-0.080891,0.236551,0,0);-ms-transform:matrix(0.236532,0.000000,-0.080891,0.236551,0,0);-webkit-transform:matrix(0.236532,0.000000,-0.080891,0.236551,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);}
.m6{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.md{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.m8{transform:matrix(0.236550,0.000000,-0.080895,0.236550,0,0);-ms-transform:matrix(0.236550,0.000000,-0.080895,0.236550,0,0);-webkit-transform:matrix(0.236550,0.000000,-0.080895,0.236550,0,0);}
.m4{transform:matrix(0.236551,0.000000,-0.080893,0.236551,0,0);-ms-transform:matrix(0.236551,0.000000,-0.080893,0.236551,0,0);-webkit-transform:matrix(0.236551,0.000000,-0.080893,0.236551,0,0);}
.m5{transform:matrix(0.236551,0.000000,-0.080893,0.236551,0,0);-ms-transform:matrix(0.236551,0.000000,-0.080893,0.236551,0,0);-webkit-transform:matrix(0.236551,0.000000,-0.080893,0.236551,0,0);}
.ma{transform:matrix(0.236551,0.000000,-0.080891,0.236551,0,0);-ms-transform:matrix(0.236551,0.000000,-0.080891,0.236551,0,0);-webkit-transform:matrix(0.236551,0.000000,-0.080891,0.236551,0,0);}
.me{transform:matrix(0.236552,0.000000,-0.080891,0.236552,0,0);-ms-transform:matrix(0.236552,0.000000,-0.080891,0.236552,0,0);-webkit-transform:matrix(0.236552,0.000000,-0.080891,0.236552,0,0);}
.m7{transform:matrix(0.236552,0.000000,-0.080889,0.236552,0,0);-ms-transform:matrix(0.236552,0.000000,-0.080889,0.236552,0,0);-webkit-transform:matrix(0.236552,0.000000,-0.080889,0.236552,0,0);}
.m3{transform:matrix(0.236554,0.000000,-0.080885,0.236554,0,0);-ms-transform:matrix(0.236554,0.000000,-0.080885,0.236554,0,0);-webkit-transform:matrix(0.236554,0.000000,-0.080885,0.236554,0,0);}
.mb{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,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);}
.v4{vertical-align:-72.000058px;}
.vf{vertical-align:-53.280043px;}
.v11{vertical-align:-46.080037px;}
.v3{vertical-align:-40.320032px;}
.vc{vertical-align:-38.880031px;}
.v2{vertical-align:-33.120026px;}
.v13{vertical-align:-31.680025px;}
.v10{vertical-align:-30.240024px;}
.v8{vertical-align:-18.720015px;}
.v6{vertical-align:-17.280014px;}
.vd{vertical-align:-15.840013px;}
.v7{vertical-align:-1.440001px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.440001px;}
.v15{vertical-align:12.960010px;}
.v5{vertical-align:17.280014px;}
.va{vertical-align:18.720015px;}
.v9{vertical-align:21.690000px;}
.v14{vertical-align:30.240024px;}
.v12{vertical-align:31.680025px;}
.v1{vertical-align:33.120026px;}
.ve{vertical-align:79.200063px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.029909px;}
.ls23{letter-spacing:0.367337px;}
.ls9{letter-spacing:0.397246px;}
.ls1{letter-spacing:0.720001px;}
.ls8{letter-spacing:20.056898px;}
.ls1c{letter-spacing:22.246578px;}
.ls7{letter-spacing:23.006311px;}
.ls1d{letter-spacing:27.389931px;}
.lsa{letter-spacing:36.999721px;}
.ls21{letter-spacing:54.795644px;}
.ls25{letter-spacing:58.217447px;}
.ls24{letter-spacing:59.657448px;}
.ls14{letter-spacing:83.246593px;}
.lsd{letter-spacing:107.162006px;}
.ls16{letter-spacing:108.075686px;}
.ls19{letter-spacing:121.035697px;}
.ls22{letter-spacing:138.315711px;}
.lsc{letter-spacing:146.225225px;}
.ls1b{letter-spacing:153.234483px;}
.lsb{letter-spacing:163.512131px;}
.ls17{letter-spacing:193.554515px;}
.ls18{letter-spacing:226.726741px;}
.ls1e{letter-spacing:245.394556px;}
.ls1f{letter-spacing:259.846768px;}
.ls1a{letter-spacing:263.887548px;}
.ls12{letter-spacing:264.533972px;}
.ls20{letter-spacing:265.606772px;}
.ls4{letter-spacing:278.471743px;}
.ls15{letter-spacing:278.514583px;}
.lse{letter-spacing:298.339998px;}
.ls5{letter-spacing:468.952793px;}
.ls2{letter-spacing:502.207659px;}
.ls13{letter-spacing:861.615329px;}
.ls10{letter-spacing:883.368707px;}
.ls3{letter-spacing:1119.229607px;}
.ls11{letter-spacing:1273.562939px;}
.lsf{letter-spacing:1341.242993px;}
.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;}
}
.ws5{word-spacing:-45.763603px;}
.ws14{word-spacing:-45.655959px;}
.ws26{word-spacing:-45.560564px;}
.ws9{word-spacing:-45.471280px;}
.ws1a{word-spacing:-43.416035px;}
.ws20{word-spacing:-43.200035px;}
.ws30{word-spacing:-25.342868px;}
.ws4{word-spacing:-21.165466px;}
.ws0{word-spacing:-18.984000px;}
.wsc{word-spacing:-18.102614px;}
.ws6{word-spacing:-18.090014px;}
.ws3{word-spacing:-18.042164px;}
.ws1f{word-spacing:-18.000014px;}
.ws32{word-spacing:-17.962214px;}
.ws15{word-spacing:-17.943914px;}
.ws8{word-spacing:-17.926964px;}
.ws13{word-spacing:-17.895914px;}
.ws3d{word-spacing:-15.120012px;}
.ws3e{word-spacing:-13.680011px;}
.wsb{word-spacing:-10.559528px;}
.ws17{word-spacing:-10.552688px;}
.ws19{word-spacing:-10.499048px;}
.ws25{word-spacing:-10.476728px;}
.wsa{word-spacing:-10.456928px;}
.wsd{word-spacing:-0.059776px;}
.ws1{word-spacing:0.000000px;}
.ws22{word-spacing:4.698364px;}
.ws31{word-spacing:6.010013px;}
.ws3b{word-spacing:7.066391px;}
.ws11{word-spacing:18.902895px;}
.wsf{word-spacing:19.845499px;}
.wse{word-spacing:22.868724px;}
.ws29{word-spacing:26.567330px;}
.ws24{word-spacing:31.073425px;}
.ws2e{word-spacing:59.290114px;}
.ws2c{word-spacing:62.169890px;}
.ws12{word-spacing:68.682224px;}
.ws2b{word-spacing:71.207366px;}
.ws28{word-spacing:73.689899px;}
.ws2d{word-spacing:132.729946px;}
.ws10{word-spacing:138.417202px;}
.ws1e{word-spacing:152.184859px;}
.ws21{word-spacing:156.982086px;}
.ws2f{word-spacing:172.935316px;}
.ws16{word-spacing:202.879826px;}
.ws7{word-spacing:206.966167px;}
.ws2a{word-spacing:223.450267px;}
.ws23{word-spacing:246.298380px;}
.ws3c{word-spacing:269.692416px;}
.ws2{word-spacing:279.760337px;}
.ws39{word-spacing:281.765954px;}
.ws35{word-spacing:294.725965px;}
.ws18{word-spacing:316.345546px;}
.ws3a{word-spacing:353.733109px;}
.ws36{word-spacing:368.133120px;}
.ws27{word-spacing:492.006122px;}
.ws38{word-spacing:506.422888px;}
.ws34{word-spacing:520.822900px;}
.ws37{word-spacing:534.490495px;}
.ws33{word-spacing:548.890506px;}
.ws1d{word-spacing:801.019001px;}
.ws1b{word-spacing:818.299015px;}
.ws1c{word-spacing:2289.180873px;}
._50{margin-left:-1083.645424px;}
._44{margin-left:-911.223991px;}
._43{margin-left:-883.566347px;}
._12{margin-left:-859.134345px;}
._31{margin-left:-762.583210px;}
._36{margin-left:-710.758649px;}
._34{margin-left:-644.752623px;}
._8b{margin-left:-561.524849px;}
._93{margin-left:-548.547393px;}
._62{margin-left:-525.818869px;}
._37{margin-left:-518.840724px;}
._13{margin-left:-501.486059px;}
._30{margin-left:-478.298737px;}
._4a{margin-left:-469.706445px;}
._4d{margin-left:-467.406014px;}
._3b{margin-left:-422.390556px;}
._42{margin-left:-418.589892px;}
._3f{margin-left:-415.546090px;}
._4c{margin-left:-388.205951px;}
._5f{margin-left:-380.859921px;}
._2e{margin-left:-367.518586px;}
._1d{margin-left:-357.162276px;}
._63{margin-left:-351.925273px;}
._4b{margin-left:-343.558355px;}
._8a{margin-left:-336.348463px;}
._41{margin-left:-334.506551px;}
._5d{margin-left:-321.965898px;}
._55{margin-left:-319.045455px;}
._9a{margin-left:-311.010340px;}
._1c{margin-left:-305.893711px;}
._85{margin-left:-290.233672px;}
._d{margin-left:-288.895246px;}
._39{margin-left:-279.330315px;}
._56{margin-left:-277.796622px;}
._6f{margin-left:-276.082975px;}
._49{margin-left:-274.642974px;}
._46{margin-left:-267.442968px;}
._4e{margin-left:-262.925850px;}
._89{margin-left:-250.353817px;}
._52{margin-left:-248.752862px;}
._99{margin-left:-240.738111px;}
._86{margin-left:-238.393631px;}
._92{margin-left:-235.953806px;}
._96{margin-left:-233.607487px;}
._91{margin-left:-232.040444px;}
._88{margin-left:-229.821459px;}
._75{margin-left:-228.313623px;}
._f{margin-left:-220.585906px;}
._67{margin-left:-218.233615px;}
._61{margin-left:-216.700099px;}
._7c{margin-left:-213.325486px;}
._21{margin-left:-206.654139px;}
._9b{margin-left:-202.642917px;}
._71{margin-left:-200.365360px;}
._1f{margin-left:-197.564028px;}
._6d{margin-left:-193.753464px;}
._72{margin-left:-183.930987px;}
._4f{margin-left:-180.845785px;}
._27{margin-left:-178.267003px;}
._22{margin-left:-175.749310px;}
._8d{margin-left:-174.704408px;}
._1e{margin-left:-168.447725px;}
._40{margin-left:-165.579416px;}
._48{margin-left:-164.320210px;}
._5c{margin-left:-162.225490px;}
._3d{margin-left:-160.045328px;}
._68{margin-left:-157.430344px;}
._94{margin-left:-154.835450px;}
._90{margin-left:-153.433563px;}
._58{margin-left:-151.891005px;}
._10{margin-left:-149.314344px;}
._3a{margin-left:-147.085318px;}
._81{margin-left:-144.392630px;}
._3e{margin-left:-140.696679px;}
._2c{margin-left:-137.652877px;}
._66{margin-left:-134.609074px;}
._26{margin-left:-127.160411px;}
._33{margin-left:-124.912763px;}
._11{margin-left:-121.549715px;}
._87{margin-left:-120.269171px;}
._47{margin-left:-118.050186px;}
._51{margin-left:-116.022693px;}
._32{margin-left:-112.775353px;}
._e{margin-left:-109.524388px;}
._57{margin-left:-107.373591px;}
._3c{margin-left:-102.210173px;}
._38{margin-left:-99.330171px;}
._1b{margin-left:-96.424119px;}
._6c{margin-left:-94.393646px;}
._18{margin-left:-91.776432px;}
._19{margin-left:-87.209789px;}
._35{margin-left:-84.358174px;}
._7a{margin-left:-82.939752px;}
._2b{margin-left:-81.820306px;}
._7e{margin-left:-78.658145px;}
._6e{margin-left:-77.113750px;}
._60{margin-left:-73.304440px;}
._2a{margin-left:-71.633276px;}
._79{margin-left:-69.913723px;}
._8c{margin-left:-67.889914px;}
._1a{margin-left:-65.610022px;}
._7d{margin-left:-47.668744px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._8{margin-left:-3.078844px;}
._1{margin-left:-1.996800px;}
._4{width:1.975701px;}
._9{width:3.863966px;}
._0{width:5.587200px;}
._c{width:7.217920px;}
._7{width:9.167139px;}
._5{width:10.482207px;}
._28{width:11.541046px;}
._6{width:12.826510px;}
._a{width:14.370210px;}
._b{width:15.373952px;}
._70{width:16.568516px;}
._23{width:19.822586px;}
._64{width:21.501642px;}
._97{width:26.362720px;}
._98{width:27.507230px;}
._9c{width:28.992665px;}
._53{width:31.379161px;}
._54{width:33.209172px;}
._83{width:34.674030px;}
._15{width:35.915728px;}
._69{width:45.628210px;}
._9d{width:46.812930px;}
._59{width:52.945059px;}
._a0{width:62.020625px;}
._9f{width:63.533790px;}
._7f{width:65.187304px;}
._74{width:66.334379px;}
._a1{width:67.428957px;}
._24{width:70.880504px;}
._82{width:93.159834px;}
._6a{width:116.329808px;}
._9e{width:119.476337px;}
._29{width:122.406257px;}
._77{width:128.443605px;}
._73{width:130.914340px;}
._8e{width:141.482241px;}
._95{width:166.761352px;}
._45{width:186.377278px;}
._16{width:197.958628px;}
._78{width:201.900037px;}
._76{width:211.474969px;}
._2d{width:231.362145px;}
._17{width:252.606961px;}
._5b{width:286.790396px;}
._2f{width:339.311252px;}
._6b{width:347.782976px;}
._65{width:350.090429px;}
._80{width:353.791653px;}
._20{width:389.936352px;}
._5a{width:448.379032px;}
._7b{width:493.740192px;}
._5e{width:598.935160px;}
._8f{width:697.973714px;}
._84{width:707.859024px;}
._14{width:995.718188px;}
._25{width:1457.833938px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:30.065784px;}
.fs12{font-size:41.827713px;}
.fs1a{font-size:41.842800px;}
.fs21{font-size:41.906914px;}
.fs18{font-size:41.996194px;}
.fsa{font-size:42.096994px;}
.fs1e{font-size:42.210754px;}
.fs13{font-size:42.238114px;}
.fs25{font-size:42.333154px;}
.fsc{font-size:44.489937px;}
.fs5{font-size:47.520038px;}
.fs29{font-size:54.720044px;}
.fs19{font-size:59.775600px;}
.fs28{font-size:60.480048px;}
.fs2{font-size:66.000000px;}
.fs27{font-size:66.240053px;}
.fs16{font-size:71.583657px;}
.fs10{font-size:71.707857px;}
.fs17{font-size:71.775657px;}
.fs22{font-size:71.848857px;}
.fs4{font-size:72.000058px;}
.fs7{font-size:72.168658px;}
.fsd{font-size:72.360058px;}
.fs14{font-size:72.410458px;}
.fs1b{font-size:75.654049px;}
.fs11{font-size:75.785466px;}
.fs20{font-size:75.856817px;}
.fs23{font-size:75.934274px;}
.fs1d{font-size:76.093265px;}
.fsb{font-size:76.272672px;}
.fsf{font-size:76.367421px;}
.fse{font-size:76.474246px;}
.fs15{font-size:76.527084px;}
.fs26{font-size:76.699288px;}
.fs3{font-size:83.520067px;}
.fs1{font-size:84.000000px;}
.fs2a{font-size:86.400069px;}
.fs1c{font-size:95.062876px;}
.fs6{font-size:95.659277px;}
.fs0{font-size:96.000000px;}
.fs1f{font-size:108.000086px;}
.fs9{font-size:108.253287px;}
.fs24{font-size:108.613287px;}
.y0{bottom:0.000000px;}
.yc4{bottom:2.879423px;}
.y84{bottom:2.879562px;}
.y4b{bottom:2.880663px;}
.yd3{bottom:2.880709px;}
.ycb{bottom:2.880786px;}
.y88{bottom:3.959511px;}
.y7e{bottom:3.959646px;}
.yb6{bottom:3.959681px;}
.yaf{bottom:3.959759px;}
.y5c{bottom:3.959875px;}
.ya3{bottom:3.959900px;}
.y52{bottom:3.959957px;}
.y9c{bottom:3.959961px;}
.y45{bottom:3.960724px;}
.ycf{bottom:3.960736px;}
.y92{bottom:3.960768px;}
.yc8{bottom:3.960813px;}
.yec{bottom:4.319394px;}
.y57{bottom:5.039931px;}
.ya9{bottom:5.759866px;}
.yc{bottom:8.040000px;}
.y1a{bottom:69.510000px;}
.y19{bottom:91.590000px;}
.y14{bottom:99.795000px;}
.y18{bottom:113.670000px;}
.yd6{bottom:117.400594px;}
.y4c{bottom:121.360597px;}
.y98{bottom:123.520599px;}
.y10{bottom:133.935000px;}
.y17{bottom:135.750000px;}
.yd5{bottom:148.360619px;}
.y4a{bottom:150.879960px;}
.y49{bottom:153.760623px;}
.y97{bottom:154.480624px;}
.y15{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y16{bottom:157.830000px;}
.yfb{bottom:161.680629px;}
.yd4{bottom:179.320644px;}
.y96{bottom:185.440648px;}
.y47{bottom:186.520649px;}
.y48{bottom:186.880650px;}
.yfa{bottom:187.600650px;}
.y46{bottom:191.200653px;}
.yd2{bottom:207.759960px;}
.yd1{bottom:210.640669px;}
.yf9{bottom:213.520671px;}
.y95{bottom:216.400673px;}
.y44{bottom:226.119960px;}
.y43{bottom:230.080684px;}
.yf8{bottom:239.440692px;}
.yce{bottom:240.519960px;}
.ycd{bottom:244.480696px;}
.yd0{bottom:244.840696px;}
.y94{bottom:252.400702px;}
.y3d{bottom:262.120710px;}
.y40{bottom:264.280706px;}
.y3a{bottom:264.280711px;}
.yf7{bottom:265.360712px;}
.y3b{bottom:265.720713px;}
.y41{bottom:268.240715px;}
.y42{bottom:273.640719px;}
.ycc{bottom:275.800721px;}
.y3c{bottom:276.520721px;}
.y38{bottom:277.960722px;}
.y37{bottom:278.320723px;}
.y91{bottom:281.199960px;}
.y93{bottom:285.160728px;}
.y90{bottom:285.520728px;}
.y3e{bottom:288.040730px;}
.y39{bottom:289.480732px;}
.yf6{bottom:291.280733px;}
.y3f{bottom:291.640733px;}
.yca{bottom:304.239960px;}
.yc9{bottom:307.120746px;}
.y8f{bottom:316.480753px;}
.yf5{bottom:316.840754px;}
.y36{bottom:322.960758px;}
.yc7{bottom:336.999960px;}
.yc6{bottom:341.320773px;}
.yf4{bottom:342.760774px;}
.ya{bottom:344.680500px;}
.y8e{bottom:347.440778px;}
.y35{bottom:353.920783px;}
.yeb{bottom:362.561400px;}
.yf3{bottom:369.760796px;}
.yc5{bottom:372.280798px;}
.y8d{bottom:378.760803px;}
.y34{bottom:384.880808px;}
.yd{bottom:386.490000px;}
.y9{bottom:395.689500px;}
.yf2{bottom:398.200819px;}
.yc3{bottom:400.361400px;}
.yc2{bottom:403.240823px;}
.y8c{bottom:409.360828px;}
.y33{bottom:415.840833px;}
.yf1{bottom:426.640841px;}
.yc1{bottom:434.560848px;}
.yb{bottom:434.850000px;}
.y8b{bottom:440.680853px;}
.y32{bottom:446.440857px;}
.y8{bottom:446.698500px;}
.yf0{bottom:455.080864px;}
.yc0{bottom:465.520872px;}
.y8a{bottom:476.680881px;}
.y31{bottom:478.120883px;}
.yef{bottom:483.520887px;}
.y11{bottom:488.055000px;}
.ybf{bottom:496.480897px;}
.y7{bottom:497.707500px;}
.y30{bottom:509.080907px;}
.y89{bottom:509.440908px;}
.y87{bottom:509.801400px;}
.yee{bottom:511.960910px;}
.y86{bottom:514.120911px;}
.ybe{bottom:527.800922px;}
.ybd{bottom:532.480926px;}
.y12{bottom:538.230000px;}
.y2f{bottom:540.040932px;}
.yed{bottom:540.400932px;}
.y85{bottom:546.520937px;}
.y6{bottom:548.716500px;}
.ybc{bottom:566.320953px;}
.y2e{bottom:571.000957px;}
.y83{bottom:574.601400px;}
.y82{bottom:577.480962px;}
.y1b{bottom:589.605000px;}
.ybb{bottom:597.280978px;}
.y5{bottom:599.725500px;}
.y2d{bottom:602.320982px;}
.y80{bottom:613.480991px;}
.y81{bottom:621.400997px;}
.yde{bottom:626.801002px;}
.yba{bottom:628.241003px;}
.yea{bottom:629.681004px;}
.ye{bottom:631.920000px;}
.y2c{bottom:633.281007px;}
.y7f{bottom:647.321018px;}
.ye9{bottom:658.121027px;}
.yb9{bottom:659.561028px;}
.y2b{bottom:664.241031px;}
.y7c{bottom:677.201042px;}
.y7d{bottom:677.921400px;}
.y7a{bottom:681.881046px;}
.ye8{bottom:686.561049px;}
.y7b{bottom:689.801052px;}
.yb8{bottom:690.521052px;}
.y2a{bottom:695.201056px;}
.ye7{bottom:715.001072px;}
.y79{bottom:715.721073px;}
.yb3{bottom:721.841078px;}
.yb5{bottom:722.201400px;}
.yb7{bottom:726.161081px;}
.y29{bottom:726.521081px;}
.yb4{bottom:734.441088px;}
.ye6{bottom:743.441095px;}
.y78{bottom:746.681097px;}
.y28{bottom:757.481106px;}
.yb2{bottom:761.081109px;}
.ye5{bottom:771.881118px;}
.y77{bottom:778.001122px;}
.y4{bottom:778.225500px;}
.y27{bottom:788.441131px;}
.yb1{bottom:792.041134px;}
.ye4{bottom:800.321140px;}
.y76{bottom:809.681148px;}
.y73{bottom:810.041148px;}
.y70{bottom:812.921150px;}
.y13{bottom:815.670000px;}
.y26{bottom:819.401156px;}
.yae{bottom:819.401400px;}
.y74{bottom:822.641158px;}
.yad{bottom:823.361159px;}
.yb0{bottom:823.721159px;}
.y6f{bottom:826.961162px;}
.ye3{bottom:828.761163px;}
.y75{bottom:834.521168px;}
.y71{bottom:838.481171px;}
.y72{bottom:839.201171px;}
.y25{bottom:850.721181px;}
.ye2{bottom:857.201186px;}
.yac{bottom:859.361188px;}
.y6e{bottom:873.401199px;}
.y24{bottom:881.681205px;}
.ye1{bottom:885.641209px;}
.yab{bottom:891.761213px;}
.y63{bottom:905.441224px;}
.y3{bottom:905.716500px;}
.y67{bottom:905.801225px;}
.y64{bottom:908.321223px;}
.y69{bottom:908.321227px;}
.y23{bottom:912.641230px;}
.ye0{bottom:914.081231px;}
.y6c{bottom:916.241233px;}
.y61{bottom:918.041234px;}
.y6d{bottom:918.401235px;}
.y66{bottom:921.641237px;}
.y5f{bottom:922.361238px;}
.yaa{bottom:923.081239px;}
.y62{bottom:929.921244px;}
.y60{bottom:930.641245px;}
.y68{bottom:933.161247px;}
.y6b{bottom:933.881247px;}
.y6a{bottom:934.601248px;}
.y65{bottom:934.601312px;}
.ydf{bottom:942.521254px;}
.y22{bottom:943.241255px;}
.ya8{bottom:951.881400px;}
.ya7{bottom:954.041263px;}
.ya6{bottom:956.921266px;}
.ya5{bottom:961.601269px;}
.y2{bottom:964.228500px;}
.y5b{bottom:964.841400px;}
.y5d{bottom:968.801275px;}
.y5a{bottom:969.161275px;}
.ydd{bottom:974.201279px;}
.y21{bottom:974.561280px;}
.y5e{bottom:977.081282px;}
.y1{bottom:989.716500px;}
.ya0{bottom:996.161297px;}
.ya2{bottom:996.521400px;}
.ya4{bottom:1000.481300px;}
.ya1{bottom:1000.841301px;}
.y59{bottom:1003.001302px;}
.ydc{bottom:1005.521304px;}
.y20{bottom:1014.161311px;}
.y9f{bottom:1033.241327px;}
.y56{bottom:1033.961400px;}
.y58{bottom:1034.321328px;}
.ydb{bottom:1036.481329px;}
.y9e{bottom:1037.921330px;}
.y55{bottom:1039.001331px;}
.y1f{bottom:1045.121336px;}
.yda{bottom:1067.441354px;}
.y1e{bottom:1067.801354px;}
.y51{bottom:1067.801400px;}
.y54{bottom:1068.161400px;}
.y53{bottom:1071.761357px;}
.y50{bottom:1072.121358px;}
.y9b{bottom:1072.481400px;}
.y9d{bottom:1076.441361px;}
.y9a{bottom:1076.801362px;}
.yd9{bottom:1098.401379px;}
.y1d{bottom:1101.281381px;}
.y4f{bottom:1107.761386px;}
.y99{bottom:1109.201387px;}
.yd7{bottom:1131.521405px;}
.yd8{bottom:1135.841409px;}
.y1c{bottom:1137.641410px;}
.y4e{bottom:1140.521412px;}
.y4d{bottom:1194.451500px;}
.h1a{height:15.840000px;}
.h24{height:19.080000px;}
.h41{height:19.440000px;}
.h18{height:20.520000px;}
.h10{height:20.875754px;}
.h4d{height:20.880000px;}
.h2b{height:23.040000px;}
.h3d{height:29.117938px;}
.h31{height:29.159466px;}
.h15{height:29.250011px;}
.h30{height:29.329054px;}
.h47{height:29.520000px;}
.hb{height:32.994870px;}
.h4{height:33.000000px;}
.h38{height:36.784893px;}
.h1f{height:38.743737px;}
.h39{height:38.899795px;}
.h12{height:38.993163px;}
.h14{height:41.209673px;}
.h51{height:42.023002px;}
.h50{height:46.025193px;}
.hc{height:48.796914px;}
.h1c{height:49.789342px;}
.h1e{height:49.824356px;}
.h25{height:49.836418px;}
.h40{height:49.871465px;}
.h43{height:49.887244px;}
.h3c{height:49.922326px;}
.h3a{height:49.992227px;}
.hd{height:50.027384px;}
.hf{height:50.109293px;}
.h37{height:50.277183px;}
.h17{height:50.277521px;}
.h23{height:50.312540px;}
.h26{height:50.728903px;}
.h2a{height:51.752541px;}
.h9{height:56.604420px;}
.h3{height:58.406250px;}
.h52{height:60.032861px;}
.h4a{height:60.797964px;}
.h4c{height:62.534127px;}
.ha{height:66.138100px;}
.h29{height:66.305761px;}
.h20{height:66.420803px;}
.h3f{height:66.551408px;}
.h27{height:66.691460px;}
.h2{height:66.750000px;}
.h11{height:66.847629px;}
.h33{height:67.024917px;}
.h16{height:67.424545px;}
.h32{height:67.557197px;}
.h5{height:67.740234px;}
.h2f{height:68.464918px;}
.h45{height:68.997198px;}
.h2e{height:69.032555px;}
.h28{height:70.076041px;}
.h1d{height:70.197768px;}
.h3b{height:70.263858px;}
.h3e{height:70.335604px;}
.h2d{height:70.482873px;}
.h13{height:70.649052px;}
.h1b{height:70.736815px;}
.h19{height:70.835764px;}
.h22{height:70.884707px;}
.h4e{height:71.044214px;}
.h49{height:80.517207px;}
.h34{height:84.197177px;}
.h4f{height:84.304931px;}
.h21{height:84.351615px;}
.h44{height:85.271423px;}
.h42{height:85.744932px;}
.h2c{height:88.053846px;}
.he{height:88.606273px;}
.h4b{height:89.217137px;}
.h46{height:97.264941px;}
.h35{height:100.037189px;}
.h48{height:100.605178px;}
.h7{height:115.215000px;}
.h36{height:118.099858px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wf{width:5.760000px;}
.w13{width:8.280000px;}
.we{width:9.000000px;}
.w10{width:9.720000px;}
.w11{width:10.440000px;}
.wc{width:11.160000px;}
.wb{width:11.520000px;}
.w12{width:19.080000px;}
.wd{width:24.840000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wa{width:892.500000px;}
.w9{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xe{left:106.200085px;}
.x3f{left:108.000000px;}
.x63{left:109.080087px;}
.x2a{left:110.160088px;}
.x29{left:113.400091px;}
.x53{left:114.480092px;}
.xa{left:115.560092px;}
.x1a{left:118.800095px;}
.x19{left:122.400098px;}
.x39{left:124.560100px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x99{left:131.248500px;}
.x28{left:137.520110px;}
.x98{left:144.720116px;}
.x8f{left:147.960118px;}
.x26{left:153.000122px;}
.x27{left:158.400127px;}
.xf{left:160.200128px;}
.x40{left:168.840135px;}
.x5{left:174.105000px;}
.x24{left:176.400141px;}
.x33{left:177.480142px;}
.x38{left:181.440145px;}
.x10{left:185.040148px;}
.x9a{left:187.200150px;}
.x32{left:189.208500px;}
.x2{left:191.040000px;}
.x88{left:192.240154px;}
.xd{left:198.360159px;}
.x7{left:200.715000px;}
.x31{left:205.768500px;}
.x86{left:209.880168px;}
.x37{left:211.320169px;}
.x58{left:212.400170px;}
.x6b{left:215.280172px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xc{left:225.720181px;}
.x18{left:233.280187px;}
.x36{left:236.160189px;}
.x85{left:237.960190px;}
.x30{left:245.880197px;}
.x82{left:247.320198px;}
.x89{left:251.128500px;}
.x6c{left:256.320205px;}
.x25{left:261.000209px;}
.xb{left:262.440210px;}
.x17{left:270.000216px;}
.x65{left:275.040220px;}
.x71{left:278.640223px;}
.x23{left:285.840229px;}
.x6a{left:289.440232px;}
.x8b{left:290.728500px;}
.x22{left:296.280237px;}
.x16{left:310.680249px;}
.x64{left:313.920251px;}
.x6d{left:317.368500px;}
.x8a{left:323.280259px;}
.x62{left:329.400264px;}
.x6e{left:330.480264px;}
.x7a{left:332.280266px;}
.x72{left:346.320277px;}
.x21{left:349.200279px;}
.x20{left:352.440282px;}
.x15{left:358.200287px;}
.x14{left:361.080289px;}
.x66{left:367.920294px;}
.x52{left:369.720296px;}
.x8c{left:371.520297px;}
.x1f{left:375.840301px;}
.x43{left:386.848500px;}
.x1d{left:389.520312px;}
.x3a{left:392.400314px;}
.x61{left:401.760321px;}
.x2e{left:404.280323px;}
.x2b{left:407.160326px;}
.x44{left:410.760329px;}
.x67{left:414.000331px;}
.x4c{left:416.160333px;}
.x42{left:418.888500px;}
.x2d{left:422.640338px;}
.x2f{left:424.800340px;}
.x41{left:427.528500px;}
.x1b{left:429.480344px;}
.x69{left:435.960349px;}
.x13{left:437.400350px;}
.x4b{left:439.768500px;}
.x57{left:446.760357px;}
.x68{left:449.640360px;}
.x1e{left:455.040364px;}
.x12{left:463.320371px;}
.x45{left:482.608500px;}
.x56{left:484.200387px;}
.x7f{left:495.568500px;}
.x46{left:497.520398px;}
.x78{left:503.128500px;}
.x3b{left:512.640410px;}
.x91{left:515.520412px;}
.x77{left:517.528500px;}
.x81{left:522.360418px;}
.x79{left:528.480423px;}
.x2c{left:532.800426px;}
.x80{left:534.240427px;}
.x6f{left:540.360432px;}
.x90{left:542.520284px;}
.x5f{left:543.600435px;}
.x1c{left:546.480437px;}
.x60{left:549.360439px;}
.x4e{left:550.440440px;}
.x5b{left:552.600484px;}
.x11{left:559.080447px;}
.x70{left:562.320450px;}
.x9b{left:564.840452px;}
.x5d{left:567.720454px;}
.x4f{left:575.280460px;}
.x97{left:583.768500px;}
.x4d{left:588.600471px;}
.x9c{left:590.400472px;}
.x83{left:591.840473px;}
.x4a{left:592.920474px;}
.x5e{left:594.360475px;}
.x3c{left:597.808500px;}
.x47{left:601.048500px;}
.x5a{left:603.000575px;}
.x49{left:605.520484px;}
.x84{left:611.640489px;}
.x55{left:613.080490px;}
.x48{left:618.328500px;}
.x3d{left:624.960500px;}
.x74{left:630.720505px;}
.x94{left:635.968500px;}
.x5c{left:650.160520px;}
.x34{left:655.048500px;}
.x50{left:656.640525px;}
.x95{left:661.320529px;}
.x96{left:666.000533px;}
.x35{left:669.240535px;}
.x93{left:670.680537px;}
.x59{left:678.240543px;}
.x54{left:688.320551px;}
.x92{left:691.408500px;}
.x7c{left:692.640554px;}
.x51{left:695.880557px;}
.x87{left:700.920561px;}
.x3e{left:702.360562px;}
.x7b{left:705.240564px;}
.x7d{left:717.120574px;}
.x76{left:721.080577px;}
.x8e{left:731.520585px;}
.x75{left:734.040587px;}
.x7e{left:735.120588px;}
.x8d{left:739.800592px;}
.x73{left:751.680601px;}
@media print{
.v4{vertical-align:-64.000051pt;}
.vf{vertical-align:-47.360038pt;}
.v11{vertical-align:-40.960033pt;}
.v3{vertical-align:-35.840029pt;}
.vc{vertical-align:-34.560028pt;}
.v2{vertical-align:-29.440024pt;}
.v13{vertical-align:-28.160023pt;}
.v10{vertical-align:-26.880022pt;}
.v8{vertical-align:-16.640013pt;}
.v6{vertical-align:-15.360012pt;}
.vd{vertical-align:-14.080011pt;}
.v7{vertical-align:-1.280001pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.280001pt;}
.v15{vertical-align:11.520009pt;}
.v5{vertical-align:15.360012pt;}
.va{vertical-align:16.640013pt;}
.v9{vertical-align:19.280000pt;}
.v14{vertical-align:26.880022pt;}
.v12{vertical-align:28.160023pt;}
.v1{vertical-align:29.440024pt;}
.ve{vertical-align:70.400056pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.026586pt;}
.ls23{letter-spacing:0.326522pt;}
.ls9{letter-spacing:0.353107pt;}
.ls1{letter-spacing:0.640001pt;}
.ls8{letter-spacing:17.828353pt;}
.ls1c{letter-spacing:19.774736pt;}
.ls7{letter-spacing:20.450054pt;}
.ls1d{letter-spacing:24.346605pt;}
.lsa{letter-spacing:32.888641pt;}
.ls21{letter-spacing:48.707239pt;}
.ls25{letter-spacing:51.748841pt;}
.ls24{letter-spacing:53.028842pt;}
.ls14{letter-spacing:73.996972pt;}
.lsd{letter-spacing:95.255116pt;}
.ls16{letter-spacing:96.067277pt;}
.ls19{letter-spacing:107.587286pt;}
.ls22{letter-spacing:122.947298pt;}
.lsc{letter-spacing:129.977978pt;}
.ls1b{letter-spacing:136.208429pt;}
.lsb{letter-spacing:145.344116pt;}
.ls17{letter-spacing:172.048458pt;}
.ls18{letter-spacing:201.534881pt;}
.ls1e{letter-spacing:218.128495pt;}
.ls1f{letter-spacing:230.974905pt;}
.ls1a{letter-spacing:234.566709pt;}
.ls12{letter-spacing:235.141308pt;}
.ls20{letter-spacing:236.094909pt;}
.ls4{letter-spacing:247.530438pt;}
.ls15{letter-spacing:247.568518pt;}
.lse{letter-spacing:265.191109pt;}
.ls5{letter-spacing:416.846927pt;}
.ls2{letter-spacing:446.406808pt;}
.ls13{letter-spacing:765.880293pt;}
.ls10{letter-spacing:785.216628pt;}
.ls3{letter-spacing:994.870762pt;}
.ls11{letter-spacing:1132.055946pt;}
.lsf{letter-spacing:1192.215994pt;}
.ws5{word-spacing:-40.678758pt;}
.ws14{word-spacing:-40.583075pt;}
.ws26{word-spacing:-40.498279pt;}
.ws9{word-spacing:-40.418915pt;}
.ws1a{word-spacing:-38.592031pt;}
.ws20{word-spacing:-38.400031pt;}
.ws30{word-spacing:-22.526994pt;}
.ws4{word-spacing:-18.813748pt;}
.ws0{word-spacing:-16.874667pt;}
.wsc{word-spacing:-16.091213pt;}
.ws6{word-spacing:-16.080013pt;}
.ws3{word-spacing:-16.037479pt;}
.ws1f{word-spacing:-16.000013pt;}
.ws32{word-spacing:-15.966413pt;}
.ws15{word-spacing:-15.950146pt;}
.ws8{word-spacing:-15.935079pt;}
.ws13{word-spacing:-15.907479pt;}
.ws3d{word-spacing:-13.440011pt;}
.ws3e{word-spacing:-12.160010pt;}
.wsb{word-spacing:-9.386248pt;}
.ws17{word-spacing:-9.380168pt;}
.ws19{word-spacing:-9.332487pt;}
.ws25{word-spacing:-9.312647pt;}
.wsa{word-spacing:-9.295047pt;}
.wsd{word-spacing:-0.053134pt;}
.ws1{word-spacing:0.000000pt;}
.ws22{word-spacing:4.176323pt;}
.ws31{word-spacing:5.342234pt;}
.ws3b{word-spacing:6.281236pt;}
.ws11{word-spacing:16.802573pt;}
.wsf{word-spacing:17.640444pt;}
.wse{word-spacing:20.327755pt;}
.ws29{word-spacing:23.615404pt;}
.ws24{word-spacing:27.620822pt;}
.ws2e{word-spacing:52.702324pt;}
.ws2c{word-spacing:55.262124pt;}
.ws12{word-spacing:61.050866pt;}
.ws2b{word-spacing:63.295436pt;}
.ws28{word-spacing:65.502132pt;}
.ws2d{word-spacing:117.982174pt;}
.ws10{word-spacing:123.037513pt;}
.ws1e{word-spacing:135.275430pt;}
.ws21{word-spacing:139.539632pt;}
.ws2f{word-spacing:153.720281pt;}
.ws16{word-spacing:180.337623pt;}
.ws7{word-spacing:183.969926pt;}
.ws2a{word-spacing:198.622459pt;}
.ws23{word-spacing:218.931894pt;}
.ws3c{word-spacing:239.726592pt;}
.ws2{word-spacing:248.675855pt;}
.ws39{word-spacing:250.458626pt;}
.ws35{word-spacing:261.978635pt;}
.ws18{word-spacing:281.196041pt;}
.ws3a{word-spacing:314.429430pt;}
.ws36{word-spacing:327.229440pt;}
.ws27{word-spacing:437.338775pt;}
.ws38{word-spacing:450.153679pt;}
.ws34{word-spacing:462.953689pt;}
.ws37{word-spacing:475.102662pt;}
.ws33{word-spacing:487.902672pt;}
.ws1d{word-spacing:712.016890pt;}
.ws1b{word-spacing:727.376902pt;}
.ws1c{word-spacing:2034.827443pt;}
._50{margin-left:-963.240377pt;}
._44{margin-left:-809.976881pt;}
._43{margin-left:-785.392308pt;}
._12{margin-left:-763.674973pt;}
._31{margin-left:-677.851742pt;}
._36{margin-left:-631.785465pt;}
._34{margin-left:-573.113443pt;}
._8b{margin-left:-499.133199pt;}
._93{margin-left:-487.597683pt;}
._62{margin-left:-467.394550pt;}
._37{margin-left:-461.191755pt;}
._13{margin-left:-445.765385pt;}
._30{margin-left:-425.154433pt;}
._4a{margin-left:-417.516840pt;}
._4d{margin-left:-415.472012pt;}
._3b{margin-left:-375.458272pt;}
._42{margin-left:-372.079904pt;}
._3f{margin-left:-369.374302pt;}
._4c{margin-left:-345.071956pt;}
._5f{margin-left:-338.542152pt;}
._2e{margin-left:-326.683187pt;}
._1d{margin-left:-317.477579pt;}
._63{margin-left:-312.822465pt;}
._4b{margin-left:-305.385204pt;}
._8a{margin-left:-298.976412pt;}
._41{margin-left:-297.339156pt;}
._5d{margin-left:-286.191909pt;}
._55{margin-left:-283.595960pt;}
._9a{margin-left:-276.453636pt;}
._1c{margin-left:-271.905520pt;}
._85{margin-left:-257.985486pt;}
._d{margin-left:-256.795774pt;}
._39{margin-left:-248.293613pt;}
._56{margin-left:-246.930331pt;}
._6f{margin-left:-245.407089pt;}
._49{margin-left:-244.127088pt;}
._46{margin-left:-237.727083pt;}
._4e{margin-left:-233.711867pt;}
._89{margin-left:-222.536726pt;}
._52{margin-left:-221.113655pt;}
._99{margin-left:-213.989432pt;}
._86{margin-left:-211.905450pt;}
._92{margin-left:-209.736716pt;}
._96{margin-left:-207.651099pt;}
._91{margin-left:-206.258172pt;}
._88{margin-left:-204.285741pt;}
._75{margin-left:-202.945442pt;}
._f{margin-left:-196.076361pt;}
._67{margin-left:-193.985435pt;}
._61{margin-left:-192.622310pt;}
._7c{margin-left:-189.622654pt;}
._21{margin-left:-183.692568pt;}
._9b{margin-left:-180.127037pt;}
._71{margin-left:-178.102542pt;}
._1f{margin-left:-175.612469pt;}
._6d{margin-left:-172.225301pt;}
._72{margin-left:-163.494211pt;}
._4f{margin-left:-160.751809pt;}
._27{margin-left:-158.459558pt;}
._22{margin-left:-156.221609pt;}
._8d{margin-left:-155.292807pt;}
._1e{margin-left:-149.731311pt;}
._40{margin-left:-147.181703pt;}
._48{margin-left:-146.062409pt;}
._5c{margin-left:-144.200435pt;}
._3d{margin-left:-142.262514pt;}
._68{margin-left:-139.938083pt;}
._94{margin-left:-137.631511pt;}
._90{margin-left:-136.385389pt;}
._58{margin-left:-135.014226pt;}
._10{margin-left:-132.723861pt;}
._3a{margin-left:-130.742505pt;}
._81{margin-left:-128.349005pt;}
._3e{margin-left:-125.063715pt;}
._2c{margin-left:-122.358113pt;}
._66{margin-left:-119.652511pt;}
._26{margin-left:-113.031476pt;}
._33{margin-left:-111.033567pt;}
._11{margin-left:-108.044191pt;}
._87{margin-left:-106.905930pt;}
._47{margin-left:-104.933498pt;}
._51{margin-left:-103.131283pt;}
._32{margin-left:-100.244759pt;}
._e{margin-left:-97.355011pt;}
._57{margin-left:-95.443192pt;}
._3c{margin-left:-90.853487pt;}
._38{margin-left:-88.293485pt;}
._1b{margin-left:-85.710328pt;}
._6c{margin-left:-83.905464pt;}
._18{margin-left:-81.579051pt;}
._19{margin-left:-77.519812pt;}
._35{margin-left:-74.985044pt;}
._7a{margin-left:-73.724224pt;}
._2b{margin-left:-72.729161pt;}
._7e{margin-left:-69.918351pt;}
._6e{margin-left:-68.545555pt;}
._60{margin-left:-65.159502pt;}
._2a{margin-left:-63.674024pt;}
._79{margin-left:-62.145531pt;}
._8c{margin-left:-60.346590pt;}
._1a{margin-left:-58.320020pt;}
._7d{margin-left:-42.372217pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._8{margin-left:-2.736750pt;}
._1{margin-left:-1.774933pt;}
._4{width:1.756178pt;}
._9{width:3.434636pt;}
._0{width:4.966400pt;}
._c{width:6.415929pt;}
._7{width:8.148568pt;}
._5{width:9.317517pt;}
._28{width:10.258707pt;}
._6{width:11.401342pt;}
._a{width:12.773520pt;}
._b{width:13.665735pt;}
._70{width:14.727570pt;}
._23{width:17.620076pt;}
._64{width:19.112570pt;}
._97{width:23.433529pt;}
._98{width:24.450872pt;}
._9c{width:25.771258pt;}
._53{width:27.892588pt;}
._54{width:29.519264pt;}
._83{width:30.821360pt;}
._15{width:31.925092pt;}
._69{width:40.558409pt;}
._9d{width:41.611493pt;}
._59{width:47.062275pt;}
._a0{width:55.129444pt;}
._9f{width:56.474480pt;}
._7f{width:57.944270pt;}
._74{width:58.963893pt;}
._a1{width:59.936850pt;}
._24{width:63.004893pt;}
._82{width:82.808741pt;}
._6a{width:103.404274pt;}
._9e{width:106.201188pt;}
._29{width:108.805561pt;}
._77{width:114.172093pt;}
._73{width:116.368302pt;}
._8e{width:125.761992pt;}
._95{width:148.232313pt;}
._45{width:165.668691pt;}
._16{width:175.963225pt;}
._78{width:179.466700pt;}
._76{width:187.977750pt;}
._2d{width:205.655240pt;}
._17{width:224.539521pt;}
._5b{width:254.924797pt;}
._2f{width:301.610002pt;}
._6b{width:309.140423pt;}
._65{width:311.191493pt;}
._80{width:314.481469pt;}
._20{width:346.610090pt;}
._5a{width:398.559140pt;}
._7b{width:438.880171pt;}
._5e{width:532.386809pt;}
._8f{width:620.421079pt;}
._84{width:629.208022pt;}
._14{width:885.082833pt;}
._25{width:1295.852389pt;}
.fs8{font-size:26.725141pt;}
.fs12{font-size:37.180190pt;}
.fs1a{font-size:37.193600pt;}
.fs21{font-size:37.250590pt;}
.fs18{font-size:37.329950pt;}
.fsa{font-size:37.419550pt;}
.fs1e{font-size:37.520670pt;}
.fs13{font-size:37.544990pt;}
.fs25{font-size:37.629470pt;}
.fsc{font-size:39.546611pt;}
.fs5{font-size:42.240034pt;}
.fs29{font-size:48.640039pt;}
.fs19{font-size:53.133867pt;}
.fs28{font-size:53.760043pt;}
.fs2{font-size:58.666667pt;}
.fs27{font-size:58.880047pt;}
.fs16{font-size:63.629918pt;}
.fs10{font-size:63.740318pt;}
.fs17{font-size:63.800584pt;}
.fs22{font-size:63.865651pt;}
.fs4{font-size:64.000051pt;}
.fs7{font-size:64.149918pt;}
.fsd{font-size:64.320051pt;}
.fs14{font-size:64.364851pt;}
.fs1b{font-size:67.248044pt;}
.fs11{font-size:67.364859pt;}
.fs20{font-size:67.428282pt;}
.fs23{font-size:67.497132pt;}
.fs1d{font-size:67.638458pt;}
.fsb{font-size:67.797931pt;}
.fsf{font-size:67.882152pt;}
.fse{font-size:67.977108pt;}
.fs15{font-size:68.024075pt;}
.fs26{font-size:68.177145pt;}
.fs3{font-size:74.240059pt;}
.fs1{font-size:74.666667pt;}
.fs2a{font-size:76.800061pt;}
.fs1c{font-size:84.500334pt;}
.fs6{font-size:85.030468pt;}
.fs0{font-size:85.333333pt;}
.fs1f{font-size:96.000077pt;}
.fs9{font-size:96.225144pt;}
.fs24{font-size:96.545144pt;}
.y0{bottom:0.000000pt;}
.yc4{bottom:2.559487pt;}
.y84{bottom:2.559611pt;}
.y4b{bottom:2.560589pt;}
.yd3{bottom:2.560630pt;}
.ycb{bottom:2.560698pt;}
.y88{bottom:3.519565pt;}
.y7e{bottom:3.519685pt;}
.yb6{bottom:3.519716pt;}
.yaf{bottom:3.519786pt;}
.y5c{bottom:3.519889pt;}
.ya3{bottom:3.519912pt;}
.y52{bottom:3.519962pt;}
.y9c{bottom:3.519966pt;}
.y45{bottom:3.520644pt;}
.ycf{bottom:3.520654pt;}
.y92{bottom:3.520683pt;}
.yc8{bottom:3.520723pt;}
.yec{bottom:3.839461pt;}
.y57{bottom:4.479939pt;}
.ya9{bottom:5.119881pt;}
.yc{bottom:7.146667pt;}
.y1a{bottom:61.786667pt;}
.y19{bottom:81.413333pt;}
.y14{bottom:88.706667pt;}
.y18{bottom:101.040000pt;}
.yd6{bottom:104.356084pt;}
.y4c{bottom:107.876086pt;}
.y98{bottom:109.796088pt;}
.y10{bottom:119.053333pt;}
.y17{bottom:120.666667pt;}
.yd5{bottom:131.876106pt;}
.y4a{bottom:134.115520pt;}
.y49{bottom:136.676109pt;}
.y97{bottom:137.316110pt;}
.y15{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y16{bottom:140.293333pt;}
.yfb{bottom:143.716115pt;}
.yd4{bottom:159.396128pt;}
.y96{bottom:164.836132pt;}
.y47{bottom:165.796133pt;}
.y48{bottom:166.116133pt;}
.yfa{bottom:166.756133pt;}
.y46{bottom:169.956136pt;}
.yd2{bottom:184.675520pt;}
.yd1{bottom:187.236150pt;}
.yf9{bottom:189.796152pt;}
.y95{bottom:192.356154pt;}
.y44{bottom:200.995520pt;}
.y43{bottom:204.516164pt;}
.yf8{bottom:212.836170pt;}
.yce{bottom:213.795520pt;}
.ycd{bottom:217.316174pt;}
.yd0{bottom:217.636174pt;}
.y94{bottom:224.356180pt;}
.y3d{bottom:232.996186pt;}
.y40{bottom:234.916183pt;}
.y3a{bottom:234.916188pt;}
.yf7{bottom:235.876189pt;}
.y3b{bottom:236.196189pt;}
.y41{bottom:238.436191pt;}
.y42{bottom:243.236195pt;}
.ycc{bottom:245.156196pt;}
.y3c{bottom:245.796197pt;}
.y38{bottom:247.076198pt;}
.y37{bottom:247.396198pt;}
.y91{bottom:249.955520pt;}
.y93{bottom:253.476203pt;}
.y90{bottom:253.796203pt;}
.y3e{bottom:256.036205pt;}
.y39{bottom:257.316206pt;}
.yf6{bottom:258.916207pt;}
.y3f{bottom:259.236207pt;}
.yca{bottom:270.435520pt;}
.yc9{bottom:272.996218pt;}
.y8f{bottom:281.316225pt;}
.yf5{bottom:281.636225pt;}
.y36{bottom:287.076230pt;}
.yc7{bottom:299.555520pt;}
.yc6{bottom:303.396243pt;}
.yf4{bottom:304.676244pt;}
.ya{bottom:306.382667pt;}
.y8e{bottom:308.836247pt;}
.y35{bottom:314.596252pt;}
.yeb{bottom:322.276800pt;}
.yf3{bottom:328.676263pt;}
.yc5{bottom:330.916265pt;}
.y8d{bottom:336.676269pt;}
.y34{bottom:342.116274pt;}
.yd{bottom:343.546667pt;}
.y9{bottom:351.724000pt;}
.yf2{bottom:353.956283pt;}
.yc3{bottom:355.876800pt;}
.yc2{bottom:358.436287pt;}
.y8c{bottom:363.876291pt;}
.y33{bottom:369.636296pt;}
.yf1{bottom:379.236303pt;}
.yc1{bottom:386.276309pt;}
.yb{bottom:386.533333pt;}
.y8b{bottom:391.716313pt;}
.y32{bottom:396.836318pt;}
.y8{bottom:397.065333pt;}
.yf0{bottom:404.516324pt;}
.yc0{bottom:413.796331pt;}
.y8a{bottom:423.716339pt;}
.y31{bottom:424.996340pt;}
.yef{bottom:429.796344pt;}
.y11{bottom:433.826667pt;}
.ybf{bottom:441.316353pt;}
.y7{bottom:442.406667pt;}
.y30{bottom:452.516362pt;}
.y89{bottom:452.836362pt;}
.y87{bottom:453.156800pt;}
.yee{bottom:455.076364pt;}
.y86{bottom:456.996366pt;}
.ybe{bottom:469.156375pt;}
.ybd{bottom:473.316379pt;}
.y12{bottom:478.426667pt;}
.y2f{bottom:480.036384pt;}
.yed{bottom:480.356384pt;}
.y85{bottom:485.796389pt;}
.y6{bottom:487.748000pt;}
.ybc{bottom:503.396403pt;}
.y2e{bottom:507.556406pt;}
.y83{bottom:510.756800pt;}
.y82{bottom:513.316411pt;}
.y1b{bottom:524.093333pt;}
.ybb{bottom:530.916425pt;}
.y5{bottom:533.089333pt;}
.y2d{bottom:535.396428pt;}
.y80{bottom:545.316436pt;}
.y81{bottom:552.356442pt;}
.yde{bottom:557.156446pt;}
.yba{bottom:558.436447pt;}
.yea{bottom:559.716448pt;}
.ye{bottom:561.706667pt;}
.y2c{bottom:562.916450pt;}
.y7f{bottom:575.396460pt;}
.ye9{bottom:584.996468pt;}
.yb9{bottom:586.276469pt;}
.y2b{bottom:590.436472pt;}
.y7c{bottom:601.956482pt;}
.y7d{bottom:602.596800pt;}
.y7a{bottom:606.116485pt;}
.ye8{bottom:610.276488pt;}
.y7b{bottom:613.156491pt;}
.yb8{bottom:613.796491pt;}
.y2a{bottom:617.956494pt;}
.ye7{bottom:635.556509pt;}
.y79{bottom:636.196509pt;}
.yb3{bottom:641.636513pt;}
.yb5{bottom:641.956800pt;}
.yb7{bottom:645.476516pt;}
.y29{bottom:645.796517pt;}
.yb4{bottom:652.836522pt;}
.ye6{bottom:660.836529pt;}
.y78{bottom:663.716531pt;}
.y28{bottom:673.316539pt;}
.yb2{bottom:676.516541pt;}
.ye5{bottom:686.116549pt;}
.y77{bottom:691.556553pt;}
.y4{bottom:691.756000pt;}
.y27{bottom:700.836561pt;}
.yb1{bottom:704.036563pt;}
.ye4{bottom:711.396569pt;}
.y76{bottom:719.716576pt;}
.y73{bottom:720.036576pt;}
.y70{bottom:722.596578pt;}
.y13{bottom:725.040000pt;}
.y26{bottom:728.356583pt;}
.yae{bottom:728.356800pt;}
.y74{bottom:731.236585pt;}
.yad{bottom:731.876586pt;}
.yb0{bottom:732.196586pt;}
.y6f{bottom:735.076588pt;}
.ye3{bottom:736.676589pt;}
.y75{bottom:741.796593pt;}
.y71{bottom:745.316596pt;}
.y72{bottom:745.956597pt;}
.y25{bottom:756.196605pt;}
.ye2{bottom:761.956610pt;}
.yac{bottom:763.876611pt;}
.y6e{bottom:776.356621pt;}
.y24{bottom:783.716627pt;}
.ye1{bottom:787.236630pt;}
.yab{bottom:792.676634pt;}
.y63{bottom:804.836644pt;}
.y3{bottom:805.081333pt;}
.y67{bottom:805.156644pt;}
.y64{bottom:807.396643pt;}
.y69{bottom:807.396646pt;}
.y23{bottom:811.236649pt;}
.ye0{bottom:812.516650pt;}
.y6c{bottom:814.436652pt;}
.y61{bottom:816.036653pt;}
.y6d{bottom:816.356653pt;}
.y66{bottom:819.236655pt;}
.y5f{bottom:819.876656pt;}
.yaa{bottom:820.516656pt;}
.y62{bottom:826.596661pt;}
.y60{bottom:827.236662pt;}
.y68{bottom:829.476664pt;}
.y6b{bottom:830.116664pt;}
.y6a{bottom:830.756665pt;}
.y65{bottom:830.756722pt;}
.ydf{bottom:837.796670pt;}
.y22{bottom:838.436671pt;}
.ya8{bottom:846.116800pt;}
.ya7{bottom:848.036678pt;}
.ya6{bottom:850.596681pt;}
.ya5{bottom:854.756684pt;}
.y2{bottom:857.092000pt;}
.y5b{bottom:857.636800pt;}
.y5d{bottom:861.156689pt;}
.y5a{bottom:861.476689pt;}
.ydd{bottom:865.956693pt;}
.y21{bottom:866.276693pt;}
.y5e{bottom:868.516695pt;}
.y1{bottom:879.748000pt;}
.ya0{bottom:885.476708pt;}
.ya2{bottom:885.796800pt;}
.ya4{bottom:889.316712pt;}
.ya1{bottom:889.636712pt;}
.y59{bottom:891.556713pt;}
.ydc{bottom:893.796715pt;}
.y20{bottom:901.476721pt;}
.y9f{bottom:918.436735pt;}
.y56{bottom:919.076800pt;}
.y58{bottom:919.396736pt;}
.ydb{bottom:921.316737pt;}
.y9e{bottom:922.596738pt;}
.y55{bottom:923.556739pt;}
.y1f{bottom:928.996743pt;}
.yda{bottom:948.836759pt;}
.y1e{bottom:949.156759pt;}
.y51{bottom:949.156800pt;}
.y54{bottom:949.476800pt;}
.y53{bottom:952.676762pt;}
.y50{bottom:952.996762pt;}
.y9b{bottom:953.316800pt;}
.y9d{bottom:956.836766pt;}
.y9a{bottom:957.156766pt;}
.yd9{bottom:976.356781pt;}
.y1d{bottom:978.916783pt;}
.y4f{bottom:984.676788pt;}
.y99{bottom:985.956789pt;}
.yd7{bottom:1005.796805pt;}
.yd8{bottom:1009.636808pt;}
.y1c{bottom:1011.236809pt;}
.y4e{bottom:1013.796811pt;}
.y4d{bottom:1061.734667pt;}
.h1a{height:14.080000pt;}
.h24{height:16.960000pt;}
.h41{height:17.280000pt;}
.h18{height:18.240000pt;}
.h10{height:18.556226pt;}
.h4d{height:18.560000pt;}
.h2b{height:20.480000pt;}
.h3d{height:25.882612pt;}
.h31{height:25.919526pt;}
.h15{height:26.000010pt;}
.h30{height:26.070270pt;}
.h47{height:26.240000pt;}
.hb{height:29.328773pt;}
.h4{height:29.333333pt;}
.h38{height:32.697682pt;}
.h1f{height:34.438877pt;}
.h39{height:34.577595pt;}
.h12{height:34.660589pt;}
.h14{height:36.630820pt;}
.h51{height:37.353780pt;}
.h50{height:40.911283pt;}
.hc{height:43.375035pt;}
.h1c{height:44.257193pt;}
.h1e{height:44.288316pt;}
.h25{height:44.299039pt;}
.h40{height:44.330191pt;}
.h43{height:44.344217pt;}
.h3c{height:44.375401pt;}
.h3a{height:44.437536pt;}
.hd{height:44.468786pt;}
.hf{height:44.541593pt;}
.h37{height:44.690830pt;}
.h17{height:44.691130pt;}
.h23{height:44.722258pt;}
.h26{height:45.092358pt;}
.h2a{height:46.002259pt;}
.h9{height:50.315040pt;}
.h3{height:51.916667pt;}
.h52{height:53.362543pt;}
.h4a{height:54.042634pt;}
.h4c{height:55.585891pt;}
.ha{height:58.789422pt;}
.h29{height:58.938454pt;}
.h20{height:59.040714pt;}
.h3f{height:59.156807pt;}
.h27{height:59.281297pt;}
.h2{height:59.333333pt;}
.h11{height:59.420114pt;}
.h33{height:59.577704pt;}
.h16{height:59.932929pt;}
.h32{height:60.050842pt;}
.h5{height:60.213542pt;}
.h2f{height:60.857705pt;}
.h45{height:61.330843pt;}
.h2e{height:61.362271pt;}
.h28{height:62.289814pt;}
.h1d{height:62.398016pt;}
.h3b{height:62.456763pt;}
.h3e{height:62.520537pt;}
.h2d{height:62.651442pt;}
.h13{height:62.799158pt;}
.h1b{height:62.877169pt;}
.h19{height:62.965124pt;}
.h22{height:63.008628pt;}
.h4e{height:63.150412pt;}
.h49{height:71.570851pt;}
.h34{height:74.841935pt;}
.h4f{height:74.937716pt;}
.h21{height:74.979213pt;}
.h44{height:75.796820pt;}
.h42{height:76.217717pt;}
.h2c{height:78.270085pt;}
.he{height:78.761132pt;}
.h4b{height:79.304122pt;}
.h46{height:86.457725pt;}
.h35{height:88.921946pt;}
.h48{height:89.426825pt;}
.h7{height:102.413333pt;}
.h36{height:104.977651pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wf{width:5.120000pt;}
.w13{width:7.360000pt;}
.we{width:8.000000pt;}
.w10{width:8.640000pt;}
.w11{width:9.280000pt;}
.wc{width:9.920000pt;}
.wb{width:10.240000pt;}
.w12{width:16.960000pt;}
.wd{width:22.080000pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wa{width:793.333333pt;}
.w9{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xe{left:94.400076pt;}
.x3f{left:96.000000pt;}
.x63{left:96.960078pt;}
.x2a{left:97.920078pt;}
.x29{left:100.800081pt;}
.x53{left:101.760081pt;}
.xa{left:102.720082pt;}
.x1a{left:105.600084pt;}
.x19{left:108.800087pt;}
.x39{left:110.720089pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x99{left:116.665333pt;}
.x28{left:122.240098pt;}
.x98{left:128.640103pt;}
.x8f{left:131.520105pt;}
.x26{left:136.000109pt;}
.x27{left:140.800113pt;}
.xf{left:142.400114pt;}
.x40{left:150.080120pt;}
.x5{left:154.760000pt;}
.x24{left:156.800125pt;}
.x33{left:157.760126pt;}
.x38{left:161.280129pt;}
.x10{left:164.480132pt;}
.x9a{left:166.400133pt;}
.x32{left:168.185333pt;}
.x2{left:169.813333pt;}
.x88{left:170.880137pt;}
.xd{left:176.320141pt;}
.x7{left:178.413333pt;}
.x31{left:182.905333pt;}
.x86{left:186.560149pt;}
.x37{left:187.840150pt;}
.x58{left:188.800151pt;}
.x6b{left:191.360153pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xc{left:200.640161pt;}
.x18{left:207.360166pt;}
.x36{left:209.920168pt;}
.x85{left:211.520169pt;}
.x30{left:218.560175pt;}
.x82{left:219.840176pt;}
.x89{left:223.225333pt;}
.x6c{left:227.840182pt;}
.x25{left:232.000186pt;}
.xb{left:233.280187pt;}
.x17{left:240.000192pt;}
.x65{left:244.480196pt;}
.x71{left:247.680198pt;}
.x23{left:254.080203pt;}
.x6a{left:257.280206pt;}
.x8b{left:258.425333pt;}
.x22{left:263.360211pt;}
.x16{left:276.160221pt;}
.x64{left:279.040223pt;}
.x6d{left:282.105333pt;}
.x8a{left:287.360230pt;}
.x62{left:292.800234pt;}
.x6e{left:293.760235pt;}
.x7a{left:295.360236pt;}
.x72{left:307.840246pt;}
.x21{left:310.400248pt;}
.x20{left:313.280251pt;}
.x15{left:318.400255pt;}
.x14{left:320.960257pt;}
.x66{left:327.040262pt;}
.x52{left:328.640263pt;}
.x8c{left:330.240264pt;}
.x1f{left:334.080267pt;}
.x43{left:343.865333pt;}
.x1d{left:346.240277pt;}
.x3a{left:348.800279pt;}
.x61{left:357.120286pt;}
.x2e{left:359.360287pt;}
.x2b{left:361.920290pt;}
.x44{left:365.120292pt;}
.x67{left:368.000294pt;}
.x4c{left:369.920296pt;}
.x42{left:372.345333pt;}
.x2d{left:375.680301pt;}
.x2f{left:377.600302pt;}
.x41{left:380.025333pt;}
.x1b{left:381.760305pt;}
.x69{left:387.520310pt;}
.x13{left:388.800311pt;}
.x4b{left:390.905333pt;}
.x57{left:397.120318pt;}
.x68{left:399.680320pt;}
.x1e{left:404.480324pt;}
.x12{left:411.840329pt;}
.x45{left:428.985333pt;}
.x56{left:430.400344pt;}
.x7f{left:440.505333pt;}
.x46{left:442.240354pt;}
.x78{left:447.225333pt;}
.x3b{left:455.680365pt;}
.x91{left:458.240367pt;}
.x77{left:460.025333pt;}
.x81{left:464.320371pt;}
.x79{left:469.760376pt;}
.x2c{left:473.600379pt;}
.x80{left:474.880380pt;}
.x6f{left:480.320384pt;}
.x90{left:482.240252pt;}
.x5f{left:483.200387pt;}
.x1c{left:485.760389pt;}
.x60{left:488.320391pt;}
.x4e{left:489.280391pt;}
.x5b{left:491.200430pt;}
.x11{left:496.960398pt;}
.x70{left:499.840400pt;}
.x9b{left:502.080402pt;}
.x5d{left:504.640404pt;}
.x4f{left:511.360409pt;}
.x97{left:518.905333pt;}
.x4d{left:523.200419pt;}
.x9c{left:524.800420pt;}
.x83{left:526.080421pt;}
.x4a{left:527.040422pt;}
.x5e{left:528.320423pt;}
.x3c{left:531.385333pt;}
.x47{left:534.265333pt;}
.x5a{left:536.000511pt;}
.x49{left:538.240431pt;}
.x84{left:543.680435pt;}
.x55{left:544.960436pt;}
.x48{left:549.625333pt;}
.x3d{left:555.520444pt;}
.x74{left:560.640449pt;}
.x94{left:565.305333pt;}
.x5c{left:577.920462pt;}
.x34{left:582.265333pt;}
.x50{left:583.680467pt;}
.x95{left:587.840470pt;}
.x96{left:592.000474pt;}
.x35{left:594.880476pt;}
.x93{left:596.160477pt;}
.x59{left:602.880482pt;}
.x54{left:611.840489pt;}
.x92{left:614.585333pt;}
.x7c{left:615.680493pt;}
.x51{left:618.560495pt;}
.x87{left:623.040498pt;}
.x3e{left:624.320499pt;}
.x7b{left:626.880502pt;}
.x7d{left:637.440510pt;}
.x76{left:640.960513pt;}
.x8e{left:650.240520pt;}
.x75{left:652.480522pt;}
.x7e{left:653.440523pt;}
.x8d{left:657.600526pt;}
.x73{left:668.160535pt;}
}




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