
    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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_a5e5961c40e01172e9e2931b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_30b969f125af0531ad15ff1a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_bb4b832e148e03990313b44f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_c372e05f1664c11441accda3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_49ca60895762b98dae8613a6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f375a53ffb7131d2275313e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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_f7093f2cec136f870afa9422.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4eb889eb584b8ca24fc4640a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7d965b85ebad7cd36c6f8f34.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_efe3f41b431ced72a57681d8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bb646fffaa970af28446fede.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.061035;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:ffe;src:url('chunks/assets/font_abf627878346e9f7793136d6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.854492;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:fff;src:url('chunks/assets/font_398bb0083ddb704e468c2f4f.woff2')format("woff");}.fff{font-family:fff;line-height:0.783691;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:ff10;src:url('chunks/assets/font_5b226f5896d70d1338dc1260.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_ecb7bf7ef006af731a8a47a5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-67.680000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls21{letter-spacing:-1.800000px;}
.ls2e{letter-spacing:-0.666000px;}
.ls8{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.460200px;}
.ls22{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.259800px;}
.ls14{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.022320px;}
.ls13{letter-spacing:0.053280px;}
.ls25{letter-spacing:0.106800px;}
.ls1e{letter-spacing:0.135600px;}
.ls1{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.224400px;}
.ls10{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.ls1d{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.460200px;}
.ls33{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.666720px;}
.ls15{letter-spacing:0.900000px;}
.ls6{letter-spacing:1.080000px;}
.ls31{letter-spacing:7.380000px;}
.ls27{letter-spacing:8.100000px;}
.ls2d{letter-spacing:8.820000px;}
.ls19{letter-spacing:10.980000px;}
.ls2a{letter-spacing:14.580000px;}
.ls2b{letter-spacing:15.300000px;}
.lsb{letter-spacing:17.946720px;}
.ls24{letter-spacing:21.546720px;}
.ls29{letter-spacing:23.940000px;}
.ls26{letter-spacing:26.100000px;}
.ls20{letter-spacing:27.540000px;}
.ls2f{letter-spacing:28.260000px;}
.ls18{letter-spacing:28.980000px;}
.ls23{letter-spacing:32.580000px;}
.lsa{letter-spacing:44.562720px;}
.lsc{letter-spacing:44.586720px;}
.ls28{letter-spacing:46.980000px;}
.ls34{letter-spacing:55.620000px;}
.ls1a{letter-spacing:64.026720px;}
.ls17{letter-spacing:75.780000px;}
.ls2c{letter-spacing:80.820000px;}
.ls30{letter-spacing:106.020000px;}
.ls32{letter-spacing:175.140000px;}
.ls1f{letter-spacing:651.756000px;}
.ls1c{letter-spacing:756.336000px;}
.ls11{letter-spacing:773.616000px;}
.lsd{letter-spacing:829.056000px;}
.ls9{letter-spacing:862.176000px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws8{word-spacing:-15.400200px;}
.ws0{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.146400px;}
.wsc{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.680200px;}
.ws11{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.147200px;}
.wsf{word-spacing:-13.140000px;}
.ws6{word-spacing:-12.060000px;}
.ws5{word-spacing:-10.612800px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._4b{margin-left:-9.153360px;}
._44{margin-left:-4.772640px;}
._14{margin-left:-3.346560px;}
._c{margin-left:-2.234640px;}
._1{margin-left:-1.159440px;}
._0{width:1.015920px;}
._4{width:2.233200px;}
._3{width:3.728640px;}
._b{width:4.972800px;}
._f{width:6.215040px;}
._10{width:7.290720px;}
._a{width:8.426160px;}
._1c{width:9.433920px;}
._2{width:10.497600px;}
._11{width:11.832480px;}
._12{width:13.075680px;}
._5{width:14.342400px;}
._9{width:15.477840px;}
._24{width:16.673040px;}
._1f{width:18.107280px;}
._30{width:19.326480px;}
._7{width:20.557440px;}
._8{width:21.752640px;}
._28{width:22.888080px;}
._6{width:24.083280px;}
._2e{width:25.099200px;}
._21{width:26.719920px;}
._15{width:28.445760px;}
._16{width:29.461680px;}
._17{width:30.955680px;}
._20{width:31.995120px;}
._e{width:33.585120px;}
._d{width:34.660800px;}
._3a{width:35.911920px;}
._36{width:37.114800px;}
._19{width:38.306160px;}
._2d{width:39.740400px;}
._13{width:41.473440px;}
._38{width:42.557040px;}
._41{width:44.524080px;}
._35{width:45.536400px;}
._23{width:46.553040px;}
._2f{width:47.568960px;}
._3b{width:48.644640px;}
._2c{width:50.162640px;}
._1e{width:51.214320px;}
._1d{width:52.290000px;}
._27{width:53.472960px;}
._22{width:54.979200px;}
._2b{width:56.114640px;}
._31{width:57.787920px;}
._18{width:58.803840px;}
._3c{width:59.819760px;}
._26{width:61.313760px;}
._25{width:63.524880px;}
._1b{width:68.305680px;}
._2a{width:69.321600px;}
._39{width:71.652240px;}
._37{width:73.411200px;}
._4c{width:74.648160px;}
._3d{width:76.298400px;}
._1a{width:78.225840px;}
._43{width:80.735760px;}
._46{width:83.492640px;}
._45{width:84.620160px;}
._33{width:85.636080px;}
._34{width:86.771520px;}
._4e{width:88.146000px;}
._4d{width:89.763840px;}
._40{width:93.404880px;}
._32{width:100.755360px;}
._42{width:104.580000px;}
._48{width:106.516320px;}
._29{width:108.524160px;}
._4f{width:113.842800px;}
._4a{width:146.604000px;}
._47{width:149.163840px;}
._49{width:159.774240px;}
._50{width:175.515120px;}
._3f{width:179.578800px;}
._3e{width:675.766080px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc4{color:rgb(205,29,142);}
.fc3{color:rgb(28,78,123);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.y7{bottom:-16.770000px;}
.y6{bottom:-4.680000px;}
.y0{bottom:0.000000px;}
.y39{bottom:3.240000px;}
.y95{bottom:3.600000px;}
.y13f{bottom:3.645000px;}
.y3b{bottom:4.680000px;}
.y5{bottom:8.460000px;}
.y56{bottom:9.000000px;}
.y93{bottom:12.060000px;}
.y99{bottom:12.240000px;}
.y53{bottom:17.100000px;}
.y38{bottom:20.700000px;}
.ya4{bottom:20.730000px;}
.y97{bottom:20.880000px;}
.y13e{bottom:20.925000px;}
.y55{bottom:23.214000px;}
.y92{bottom:29.340000px;}
.y98{bottom:29.520000px;}
.y138{bottom:29.550000px;}
.y94{bottom:37.980000px;}
.y9a{bottom:38.160000px;}
.y102{bottom:38.190000px;}
.y9e{bottom:38.205000px;}
.y37{bottom:38.340000px;}
.y10f{bottom:43.200000px;}
.y52{bottom:43.920000px;}
.y105{bottom:46.620000px;}
.y107{bottom:46.800000px;}
.y104{bottom:55.260000px;}
.y108{bottom:55.440000px;}
.y36{bottom:55.980000px;}
.y3{bottom:58.140000px;}
.y10c{bottom:63.945000px;}
.yff{bottom:69.840000px;}
.y10b{bottom:72.585000px;}
.y10e{bottom:72.720000px;}
.y35{bottom:73.440000px;}
.y51{bottom:76.680000px;}
.yf0{bottom:78.840000px;}
.yf9{bottom:79.380000px;}
.y2{bottom:80.136000px;}
.yf5{bottom:81.540000px;}
.yf3{bottom:81.900000px;}
.yfb{bottom:83.160000px;}
.yf7{bottom:83.880000px;}
.yf1{bottom:84.780000px;}
.yf8{bottom:87.300000px;}
.yfa{bottom:87.660000px;}
.yf6{bottom:88.560000px;}
.yfc{bottom:88.920000px;}
.yfe{bottom:89.460000px;}
.y34{bottom:91.110000px;}
.yf2{bottom:97.200000px;}
.yf4{bottom:97.380000px;}
.y25{bottom:99.390000px;}
.yfd{bottom:101.340000px;}
.y33{bottom:108.750000px;}
.y12e{bottom:114.336000px;}
.y90{bottom:117.036000px;}
.y17a{bottom:117.396000px;}
.y24{bottom:117.570000px;}
.y112{bottom:120.816000px;}
.yed{bottom:121.356000px;}
.y143{bottom:122.796000px;}
.yb8{bottom:123.876000px;}
.y32{bottom:126.210000px;}
.y170{bottom:127.116000px;}
.y1c0{bottom:128.556000px;}
.y12d{bottom:131.616000px;}
.y8f{bottom:134.316000px;}
.y179{bottom:134.676000px;}
.y23{bottom:135.930000px;}
.y54{bottom:137.376000px;}
.y111{bottom:138.096000px;}
.yec{bottom:139.356000px;}
.yb7{bottom:140.976000px;}
.y31{bottom:143.850000px;}
.y16f{bottom:144.396000px;}
.y1bf{bottom:148.356000px;}
.y12c{bottom:148.896000px;}
.y22{bottom:151.410000px;}
.y8e{bottom:151.590000px;}
.y178{bottom:151.950000px;}
.y193{bottom:154.470000px;}
.y110{bottom:154.830000px;}
.y113{bottom:155.190000px;}
.yeb{bottom:157.350000px;}
.y142{bottom:158.070000px;}
.yb6{bottom:158.250000px;}
.y30{bottom:161.490000px;}
.y16e{bottom:161.670000px;}
.y21{bottom:165.450000px;}
.y12b{bottom:166.170000px;}
.y1be{bottom:168.330000px;}
.y8d{bottom:168.870000px;}
.y177{bottom:169.230000px;}
.y192{bottom:174.270000px;}
.yea{bottom:175.350000px;}
.yb5{bottom:175.530000px;}
.y16d{bottom:178.950000px;}
.y2f{bottom:179.130000px;}
.y20{bottom:179.490000px;}
.y12a{bottom:183.450000px;}
.y8c{bottom:185.970000px;}
.y176{bottom:186.330000px;}
.y10d{bottom:186.870000px;}
.y1bd{bottom:188.130000px;}
.yb4{bottom:192.810000px;}
.ye9{bottom:193.350000px;}
.y1f{bottom:193.530000px;}
.y191{bottom:194.070000px;}
.y16c{bottom:196.230000px;}
.y2e{bottom:196.590000px;}
.y129{bottom:200.730000px;}
.y8b{bottom:203.610000px;}
.y4e{bottom:205.950000px;}
.y1e{bottom:207.570000px;}
.y1bc{bottom:207.930000px;}
.yb3{bottom:210.450000px;}
.ye8{bottom:211.350000px;}
.y16b{bottom:213.330000px;}
.y190{bottom:214.050000px;}
.y2d{bottom:214.230000px;}
.y128{bottom:217.830000px;}
.y8a{bottom:220.890000px;}
.y1d{bottom:221.430000px;}
.y4d{bottom:223.050000px;}
.yb2{bottom:227.730000px;}
.y16a{bottom:230.610000px;}
.y2c{bottom:231.870000px;}
.y18f{bottom:233.850000px;}
.y127{bottom:235.110000px;}
.y1c{bottom:235.290000px;}
.y89{bottom:238.170000px;}
.y4c{bottom:240.330000px;}
.yb1{bottom:244.830000px;}
.y141{bottom:245.730000px;}
.y1bb{bottom:247.530000px;}
.y169{bottom:247.890000px;}
.y1b{bottom:248.970000px;}
.y2b{bottom:249.330000px;}
.ye7{bottom:249.870000px;}
.y126{bottom:252.390000px;}
.y18e{bottom:253.650000px;}
.y88{bottom:255.450000px;}
.y4b{bottom:257.610000px;}
.yb0{bottom:262.110000px;}
.y1a{bottom:263.190000px;}
.y172{bottom:264.810000px;}
.y168{bottom:265.170000px;}
.y2a{bottom:266.970000px;}
.ye1{bottom:267.330000px;}
.y1ba{bottom:267.510000px;}
.y125{bottom:269.670000px;}
.y87{bottom:272.730000px;}
.y18d{bottom:273.450000px;}
.y10a{bottom:273.990000px;}
.y4a{bottom:274.890000px;}
.y19{bottom:277.230000px;}
.yaf{bottom:279.390000px;}
.y140{bottom:281.010000px;}
.y167{bottom:282.450000px;}
.y29{bottom:284.610000px;}
.y124{bottom:286.590000px;}
.y131{bottom:286.950000px;}
.y1b9{bottom:287.310000px;}
.y86{bottom:289.830000px;}
.y18{bottom:291.270000px;}
.y49{bottom:292.170000px;}
.y18c{bottom:293.250000px;}
.yae{bottom:296.670000px;}
.y166{bottom:299.730000px;}
.ye0{bottom:301.890000px;}
.y28{bottom:302.070000px;}
.y123{bottom:303.870000px;}
.y130{bottom:304.230000px;}
.y17{bottom:305.850000px;}
.y85{bottom:307.110000px;}
.y48{bottom:309.450000px;}
.y18b{bottom:313.230000px;}
.yad{bottom:313.950000px;}
.y165{bottom:316.830000px;}
.ydf{bottom:318.810000px;}
.ye6{bottom:319.170000px;}
.y27{bottom:319.710000px;}
.y122{bottom:321.330000px;}
.y16{bottom:323.850000px;}
.y84{bottom:324.390000px;}
.y47{bottom:326.550000px;}
.y1b8{bottom:326.910000px;}
.yac{bottom:331.230000px;}
.y18a{bottom:333.030000px;}
.y13d{bottom:333.570000px;}
.y164{bottom:334.110000px;}
.yde{bottom:336.495000px;}
.y121{bottom:338.655000px;}
.y26{bottom:340.410000px;}
.y15{bottom:340.950000px;}
.y83{bottom:341.715000px;}
.y46{bottom:343.875000px;}
.y1b7{bottom:346.755000px;}
.yab{bottom:348.375000px;}
.y163{bottom:351.435000px;}
.y189{bottom:352.875000px;}
.ydd{bottom:353.775000px;}
.y120{bottom:355.935000px;}
.y82{bottom:358.995000px;}
.y109{bottom:360.975000px;}
.y45{bottom:361.155000px;}
.yaa{bottom:365.655000px;}
.y1b6{bottom:366.735000px;}
.y162{bottom:368.355000px;}
.y171{bottom:368.715000px;}
.ydc{bottom:370.875000px;}
.y188{bottom:372.675000px;}
.y11f{bottom:372.855000px;}
.y12f{bottom:373.215000px;}
.y81{bottom:376.275000px;}
.y44{bottom:378.435000px;}
.ya9{bottom:382.935000px;}
.y13c{bottom:386.175000px;}
.y1b5{bottom:386.535000px;}
.ydb{bottom:387.795000px;}
.ye5{bottom:388.155000px;}
.y187{bottom:392.475000px;}
.y181{bottom:393.015000px;}
.y80{bottom:393.375000px;}
.y43{bottom:395.715000px;}
.ya8{bottom:400.215000px;}
.y161{bottom:400.395000px;}
.y11e{bottom:404.895000px;}
.yda{bottom:405.435000px;}
.y1b4{bottom:406.335000px;}
.y180{bottom:410.295000px;}
.y7f{bottom:410.655000px;}
.y186{bottom:412.455000px;}
.y42{bottom:412.995000px;}
.y13b{bottom:421.275000px;}
.yd9{bottom:422.715000px;}
.y11d{bottom:422.895000px;}
.y1b3{bottom:426.135000px;}
.y7e{bottom:427.935000px;}
.y41{bottom:430.095000px;}
.y106{bottom:430.635000px;}
.ya7{bottom:431.895000px;}
.y185{bottom:432.255000px;}
.y160{bottom:435.495000px;}
.yd8{bottom:439.995000px;}
.y11c{bottom:440.895000px;}
.y7d{bottom:445.215000px;}
.y1b2{bottom:445.935000px;}
.y40{bottom:447.375000px;}
.y184{bottom:452.055000px;}
.yd7{bottom:457.095000px;}
.y175{bottom:462.135000px;}
.y7c{bottom:462.495000px;}
.y3f{bottom:464.655000px;}
.y1b1{bottom:465.915000px;}
.y15f{bottom:470.775000px;}
.y183{bottom:471.855000px;}
.y13a{bottom:473.835000px;}
.yd6{bottom:474.375000px;}
.y11b{bottom:479.235000px;}
.y7b{bottom:479.595000px;}
.y3e{bottom:481.575000px;}
.y4f{bottom:481.935000px;}
.ya6{bottom:484.275000px;}
.y1b0{bottom:485.715000px;}
.yd5{bottom:491.295000px;}
.ye4{bottom:491.655000px;}
.y17f{bottom:496.515000px;}
.y7a{bottom:496.875000px;}
.y3d{bottom:498.855000px;}
.y103{bottom:500.475000px;}
.y1af{bottom:505.515000px;}
.y15e{bottom:506.055000px;}
.yd4{bottom:508.935000px;}
.y182{bottom:511.635000px;}
.y3c{bottom:513.075000px;}
.y79{bottom:514.155000px;}
.y3a{bottom:515.235000px;}
.y14{bottom:521.355000px;}
.y1ae{bottom:525.315000px;}
.yd3{bottom:526.215000px;}
.y139{bottom:526.395000px;}
.y11a{bottom:529.275000px;}
.y78{bottom:531.435000px;}
.ya5{bottom:536.835000px;}
.y15d{bottom:541.335000px;}
.yd2{bottom:543.495000px;}
.y1ad{bottom:545.115000px;}
.y119{bottom:546.555000px;}
.y77{bottom:548.715000px;}
.yd1{bottom:560.595000px;}
.y118{bottom:564.915000px;}
.y1ac{bottom:565.095000px;}
.y17e{bottom:565.635000px;}
.y76{bottom:565.995000px;}
.y101{bottom:570.135000px;}
.y15c{bottom:576.615000px;}
.yd0{bottom:577.875000px;}
.y137{bottom:578.775000px;}
.y117{bottom:582.015000px;}
.y17d{bottom:582.735000px;}
.y75{bottom:583.095000px;}
.y1ab{bottom:584.895000px;}
.ya3{bottom:589.395000px;}
.ycf{bottom:595.155000px;}
.y116{bottom:600.015000px;}
.y74{bottom:600.375000px;}
.y1aa{bottom:604.725000px;}
.yce{bottom:612.465000px;}
.y15b{bottom:615.165000px;}
.y73{bottom:617.685000px;}
.y100{bottom:622.725000px;}
.ya2{bottom:624.525000px;}
.ycd{bottom:629.745000px;}
.y15a{bottom:632.625000px;}
.y17c{bottom:634.605000px;}
.y72{bottom:634.965000px;}
.y1a9{bottom:644.325000px;}
.ycc{bottom:647.025000px;}
.y158{bottom:649.905000px;}
.y136{bottom:651.885000px;}
.y71{bottom:652.245000px;}
.ycb{bottom:664.125000px;}
.y1a8{bottom:664.305000px;}
.y157{bottom:667.185000px;}
.y70{bottom:669.525000px;}
.yef{bottom:675.285000px;}
.ya1{bottom:677.085000px;}
.yca{bottom:681.405000px;}
.y1a7{bottom:684.105000px;}
.y156{bottom:684.465000px;}
.y6f{bottom:686.625000px;}
.yc9{bottom:698.685000px;}
.y155{bottom:701.745000px;}
.y132{bottom:703.545000px;}
.y6e{bottom:703.905000px;}
.yc8{bottom:715.965000px;}
.y154{bottom:719.025000px;}
.y6d{bottom:721.185000px;}
.y1a6{bottom:723.705000px;}
.ya0{bottom:729.645000px;}
.yc7{bottom:733.245000px;}
.y153{bottom:736.125000px;}
.y6c{bottom:738.465000px;}
.y1a5{bottom:743.505000px;}
.yc6{bottom:750.525000px;}
.y152{bottom:753.405000px;}
.y6b{bottom:755.745000px;}
.y1a4{bottom:763.485000px;}
.yc5{bottom:767.625000px;}
.y151{bottom:770.685000px;}
.y6a{bottom:772.845000px;}
.y9f{bottom:782.025000px;}
.y1a3{bottom:783.285000px;}
.yc4{bottom:784.905000px;}
.y150{bottom:787.965000px;}
.y69{bottom:790.125000px;}
.yc3{bottom:802.185000px;}
.y1a2{bottom:803.085000px;}
.y14f{bottom:805.245000px;}
.yee{bottom:807.045000px;}
.y68{bottom:807.405000px;}
.yc2{bottom:819.465000px;}
.y14e{bottom:822.345000px;}
.y1a1{bottom:822.885000px;}
.y135{bottom:824.325000px;}
.y67{bottom:824.685000px;}
.y9d{bottom:834.585000px;}
.yc1{bottom:836.385000px;}
.ye3{bottom:836.745000px;}
.y14d{bottom:839.625000px;}
.y134{bottom:841.605000px;}
.y66{bottom:841.965000px;}
.y1a0{bottom:842.685000px;}
.yc0{bottom:853.485000px;}
.ye2{bottom:853.845000px;}
.y14c{bottom:856.905000px;}
.y174{bottom:858.885000px;}
.y65{bottom:859.245000px;}
.y19f{bottom:862.665000px;}
.y14b{bottom:874.230000px;}
.y115{bottom:876.030000px;}
.y64{bottom:876.390000px;}
.y19e{bottom:882.510000px;}
.y13{bottom:884.850000px;}
.ybf{bottom:885.570000px;}
.y9c{bottom:887.190000px;}
.y14a{bottom:891.510000px;}
.y63{bottom:893.670000px;}
.y12{bottom:902.130000px;}
.y19d{bottom:902.310000px;}
.y149{bottom:908.790000px;}
.y62{bottom:910.950000px;}
.y11{bottom:914.190000px;}
.ybe{bottom:920.850000px;}
.y19c{bottom:922.110000px;}
.y148{bottom:925.890000px;}
.y61{bottom:928.230000px;}
.y10{bottom:933.270000px;}
.y9b{bottom:939.570000px;}
.y19b{bottom:941.910000px;}
.y147{bottom:943.170000px;}
.y60{bottom:945.510000px;}
.yf{bottom:952.710000px;}
.ybd{bottom:956.130000px;}
.y146{bottom:960.450000px;}
.y19a{bottom:961.890000px;}
.y133{bottom:962.430000px;}
.y5f{bottom:962.790000px;}
.ye{bottom:975.030000px;}
.y145{bottom:977.370000px;}
.y159{bottom:977.730000px;}
.y5e{bottom:979.890000px;}
.y199{bottom:981.690000px;}
.ybc{bottom:991.410000px;}
.y96{bottom:992.130000px;}
.y17b{bottom:996.810000px;}
.y5d{bottom:997.170000px;}
.yd{bottom:998.610000px;}
.y198{bottom:1001.490000px;}
.y144{bottom:1009.410000px;}
.y5c{bottom:1014.450000px;}
.y197{bottom:1021.290000px;}
.yc{bottom:1022.370000px;}
.ybb{bottom:1026.690000px;}
.y50{bottom:1031.190000px;}
.y5b{bottom:1031.730000px;}
.y196{bottom:1041.090000px;}
.y91{bottom:1044.690000px;}
.yb{bottom:1046.310000px;}
.y114{bottom:1048.650000px;}
.y5a{bottom:1049.010000px;}
.y195{bottom:1061.070000px;}
.yba{bottom:1061.790000px;}
.y173{bottom:1065.930000px;}
.y59{bottom:1066.290000px;}
.ya{bottom:1070.070000px;}
.y194{bottom:1080.870000px;}
.y58{bottom:1083.390000px;}
.y9{bottom:1093.830000px;}
.yb9{bottom:1100.310000px;}
.y57{bottom:1100.670000px;}
.y8{bottom:1117.590000px;}
.y4{bottom:1152.720000px;}
.y1{bottom:1191.240000px;}
.h14{height:5.653125px;}
.h15{height:5.805000px;}
.h16{height:5.920372px;}
.h13{height:6.120000px;}
.h2b{height:17.100000px;}
.h23{height:17.280000px;}
.h4{height:22.140000px;}
.h1b{height:34.380000px;}
.h22{height:34.416000px;}
.h24{height:34.560000px;}
.hb{height:38.158594px;}
.h1d{height:40.655391px;}
.h10{height:40.843828px;}
.h6{height:40.985156px;}
.h12{height:45.720703px;}
.h1c{height:47.321367px;}
.h3{height:47.980898px;}
.h1a{height:48.616875px;}
.h11{height:50.218594px;}
.hf{height:50.597578px;}
.h1f{height:51.660000px;}
.h21{height:51.696000px;}
.h20{height:51.840000px;}
.h26{height:51.876000px;}
.h1e{height:53.573906px;}
.hc{height:56.462344px;}
.h2d{height:58.621992px;}
.he{height:58.651172px;}
.h5{height:60.226875px;}
.h17{height:61.423863px;}
.h2c{height:62.211094px;}
.ha{height:66.757500px;}
.h27{height:68.940000px;}
.h9{height:68.956875px;}
.h28{height:69.120000px;}
.h19{height:72.562500px;}
.h2{height:77.342344px;}
.h8{height:78.367500px;}
.h7{height:79.620469px;}
.h2a{height:86.220000px;}
.h29{height:86.256000px;}
.h18{height:101.340000px;}
.h25{height:110.520000px;}
.hd{height:354.675000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w42{width:37.440000px;}
.w10{width:37.620000px;}
.w3c{width:37.800000px;}
.wa{width:37.980000px;}
.w33{width:45.720000px;}
.w29{width:46.440000px;}
.w32{width:46.620000px;}
.w34{width:46.656000px;}
.w28{width:47.340000px;}
.w2b{width:47.376000px;}
.w30{width:53.280000px;}
.w26{width:54.000000px;}
.w2a{width:54.720000px;}
.w31{width:59.976000px;}
.w27{width:60.696000px;}
.w2e{width:66.780000px;}
.w2f{width:66.816000px;}
.w24{width:67.500000px;}
.w25{width:67.536000px;}
.w13{width:78.516000px;}
.wd{width:79.236000px;}
.w45{width:85.680000px;}
.w3f{width:86.400000px;}
.w20{width:90.036000px;}
.w1b{width:90.756000px;}
.w44{width:97.776000px;}
.w3e{width:98.496000px;}
.w2d{width:100.116000px;}
.w23{width:100.476000px;}
.w12{width:100.620000px;}
.wc{width:101.340000px;}
.w35{width:107.280000px;}
.w2c{width:107.640000px;}
.w21{width:113.796000px;}
.w1c{width:114.516000px;}
.w4b{width:118.800000px;}
.w48{width:119.160000px;}
.w22{width:120.780000px;}
.w1d{width:121.140000px;}
.w43{width:126.000000px;}
.w14{width:126.180000px;}
.w3d{width:126.720000px;}
.we{width:126.900000px;}
.w1f{width:127.980000px;}
.w18{width:128.700000px;}
.w16{width:129.060000px;}
.w46{width:129.096000px;}
.w40{width:129.816000px;}
.w11{width:147.276000px;}
.wb{width:147.996000px;}
.w3a{width:161.100000px;}
.w37{width:162.000000px;}
.w39{width:181.110000px;}
.w36{width:181.650000px;}
.w15{width:193.710000px;}
.wf{width:194.070000px;}
.w4{width:212.070000px;}
.w6{width:212.610000px;}
.w47{width:214.590000px;}
.w41{width:214.950000px;}
.w1e{width:218.550000px;}
.w1a{width:218.910000px;}
.w4c{width:273.855000px;}
.w49{width:274.575000px;}
.w4d{width:281.550000px;}
.w4a{width:281.910000px;}
.w3b{width:330.015000px;}
.w38{width:330.375000px;}
.w3{width:478.905000px;}
.w5{width:515.985000px;}
.w7{width:516.525000px;}
.w19{width:546.225000px;}
.w17{width:546.585000px;}
.w8{width:625.785000px;}
.w9{width:719.385000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x2d{left:9.354000px;}
.xf{left:10.800000px;}
.x20{left:12.600000px;}
.x23{left:13.860000px;}
.x1c{left:14.940000px;}
.x32{left:16.740000px;}
.x16{left:17.820000px;}
.x2a{left:19.080000px;}
.x9{left:20.745000px;}
.x1f{left:22.320000px;}
.x28{left:23.400000px;}
.x19{left:24.840000px;}
.x18{left:26.280000px;}
.x62{left:27.540000px;}
.x13{left:28.614000px;}
.x1e{left:30.234000px;}
.x27{left:31.854000px;}
.x52{left:33.660000px;}
.x3{left:34.776000px;}
.x47{left:35.856000px;}
.x25{left:36.900000px;}
.x34{left:38.880000px;}
.x1d{left:40.134000px;}
.x22{left:41.574000px;}
.x2f{left:43.554000px;}
.x24{left:45.180000px;}
.x2c{left:46.980000px;}
.x44{left:49.140000px;}
.x1b{left:50.760000px;}
.xc{left:52.200000px;}
.x2{left:54.360000px;}
.x64{left:55.980000px;}
.x21{left:57.060000px;}
.x6a{left:59.985000px;}
.x63{left:61.200000px;}
.x56{left:62.994000px;}
.x67{left:64.080000px;}
.x29{left:66.285000px;}
.x2e{left:68.265000px;}
.x3e{left:71.454000px;}
.x26{left:73.665000px;}
.x43{left:77.214000px;}
.x2b{left:79.065000px;}
.x46{left:86.040000px;}
.x45{left:93.414000px;}
.x5c{left:99.576000px;}
.x11{left:102.816000px;}
.x68{left:106.245000px;}
.x1{left:108.035987px;}
.x69{left:110.880000px;}
.x59{left:113.250000px;}
.x36{left:122.085000px;}
.x5b{left:131.790000px;}
.x39{left:135.035987px;}
.x5d{left:137.376000px;}
.x33{left:138.645000px;}
.x5a{left:139.710000px;}
.x12{left:140.796000px;}
.xb{left:152.310000px;}
.xd{left:157.545000px;}
.x3a{left:162.029987px;}
.x37{left:181.125000px;}
.x48{left:186.510000px;}
.x38{left:215.505000px;}
.x35{left:218.025000px;}
.x65{left:227.910000px;}
.x31{left:236.775000px;}
.x30{left:237.810000px;}
.x4{left:239.475000px;}
.x55{left:243.389987px;}
.x49{left:254.010000px;}
.x5e{left:264.090000px;}
.x8{left:267.150000px;}
.x14{left:288.795000px;}
.x57{left:290.415000px;}
.xe{left:312.885000px;}
.x4a{left:321.555000px;}
.x3f{left:327.675000px;}
.x10{left:329.474987px;}
.x5f{left:362.595000px;}
.x4b{left:375.555000px;}
.x15{left:390.135000px;}
.x4c{left:443.055000px;}
.x6{left:446.474987px;}
.x60{left:448.995000px;}
.x58{left:452.415000px;}
.x40{left:456.375000px;}
.x5{left:465.914987px;}
.x17{left:469.365000px;}
.xa{left:473.144987px;}
.x3b{left:479.984987px;}
.x3c{left:500.144987px;}
.x66{left:502.485000px;}
.x4d{left:503.745000px;}
.x3d{left:527.144987px;}
.x41{left:547.125000px;}
.x4e{left:551.085000px;}
.x53{left:554.144987px;}
.x61{left:578.805000px;}
.x54{left:581.144987px;}
.x1a{left:596.265000px;}
.x4f{left:597.525000px;}
.x50{left:652.245000px;}
.x42{left:661.650000px;}
.x51{left:699.630000px;}
@media print{
.v3{vertical-align:-60.160000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls21{letter-spacing:-1.600000pt;}
.ls2e{letter-spacing:-0.592000pt;}
.ls8{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.409067pt;}
.ls22{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.230933pt;}
.ls14{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.019840pt;}
.ls13{letter-spacing:0.047360pt;}
.ls25{letter-spacing:0.094933pt;}
.ls1e{letter-spacing:0.120533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.199467pt;}
.ls10{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.ls1d{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.409067pt;}
.ls33{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.592640pt;}
.ls15{letter-spacing:0.800000pt;}
.ls6{letter-spacing:0.960000pt;}
.ls31{letter-spacing:6.560000pt;}
.ls27{letter-spacing:7.200000pt;}
.ls2d{letter-spacing:7.840000pt;}
.ls19{letter-spacing:9.760000pt;}
.ls2a{letter-spacing:12.960000pt;}
.ls2b{letter-spacing:13.600000pt;}
.lsb{letter-spacing:15.952640pt;}
.ls24{letter-spacing:19.152640pt;}
.ls29{letter-spacing:21.280000pt;}
.ls26{letter-spacing:23.200000pt;}
.ls20{letter-spacing:24.480000pt;}
.ls2f{letter-spacing:25.120000pt;}
.ls18{letter-spacing:25.760000pt;}
.ls23{letter-spacing:28.960000pt;}
.lsa{letter-spacing:39.611307pt;}
.lsc{letter-spacing:39.632640pt;}
.ls28{letter-spacing:41.760000pt;}
.ls34{letter-spacing:49.440000pt;}
.ls1a{letter-spacing:56.912640pt;}
.ls17{letter-spacing:67.360000pt;}
.ls2c{letter-spacing:71.840000pt;}
.ls30{letter-spacing:94.240000pt;}
.ls32{letter-spacing:155.680000pt;}
.ls1f{letter-spacing:579.338667pt;}
.ls1c{letter-spacing:672.298667pt;}
.ls11{letter-spacing:687.658667pt;}
.lsd{letter-spacing:736.938667pt;}
.ls9{letter-spacing:766.378667pt;}
.wsa{word-spacing:-53.120000pt;}
.ws8{word-spacing:-13.689067pt;}
.ws0{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.185067pt;}
.ws9{word-spacing:-13.049067pt;}
.ws11{word-spacing:-12.960000pt;}
.ws4{word-spacing:-11.686400pt;}
.wsf{word-spacing:-11.680000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws5{word-spacing:-9.433600pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._4b{margin-left:-8.136320pt;}
._44{margin-left:-4.242347pt;}
._14{margin-left:-2.974720pt;}
._c{margin-left:-1.986347pt;}
._1{margin-left:-1.030613pt;}
._0{width:0.903040pt;}
._4{width:1.985067pt;}
._3{width:3.314347pt;}
._b{width:4.420267pt;}
._f{width:5.524480pt;}
._10{width:6.480640pt;}
._a{width:7.489920pt;}
._1c{width:8.385707pt;}
._2{width:9.331200pt;}
._11{width:10.517760pt;}
._12{width:11.622827pt;}
._5{width:12.748800pt;}
._9{width:13.758080pt;}
._24{width:14.820480pt;}
._1f{width:16.095360pt;}
._30{width:17.179093pt;}
._7{width:18.273280pt;}
._8{width:19.335680pt;}
._28{width:20.344960pt;}
._6{width:21.407360pt;}
._2e{width:22.310400pt;}
._21{width:23.751040pt;}
._15{width:25.285120pt;}
._16{width:26.188160pt;}
._17{width:27.516160pt;}
._20{width:28.440107pt;}
._e{width:29.853440pt;}
._d{width:30.809600pt;}
._3a{width:31.921707pt;}
._36{width:32.990933pt;}
._19{width:34.049920pt;}
._2d{width:35.324800pt;}
._13{width:36.865280pt;}
._38{width:37.828480pt;}
._41{width:39.576960pt;}
._35{width:40.476800pt;}
._23{width:41.380480pt;}
._2f{width:42.283520pt;}
._3b{width:43.239680pt;}
._2c{width:44.589013pt;}
._1e{width:45.523840pt;}
._1d{width:46.480000pt;}
._27{width:47.531520pt;}
._22{width:48.870400pt;}
._2b{width:49.879680pt;}
._31{width:51.367040pt;}
._18{width:52.270080pt;}
._3c{width:53.173120pt;}
._26{width:54.501120pt;}
._25{width:56.466560pt;}
._1b{width:60.716160pt;}
._2a{width:61.619200pt;}
._39{width:63.690880pt;}
._37{width:65.254400pt;}
._4c{width:66.353920pt;}
._3d{width:67.820800pt;}
._1a{width:69.534080pt;}
._43{width:71.765120pt;}
._46{width:74.215680pt;}
._45{width:75.217920pt;}
._33{width:76.120960pt;}
._34{width:77.130240pt;}
._4e{width:78.352000pt;}
._4d{width:79.790080pt;}
._40{width:83.026560pt;}
._32{width:89.560320pt;}
._42{width:92.960000pt;}
._48{width:94.681173pt;}
._29{width:96.465920pt;}
._4f{width:101.193600pt;}
._4a{width:130.314667pt;}
._47{width:132.590080pt;}
._49{width:142.021547pt;}
._50{width:156.013440pt;}
._3f{width:159.625600pt;}
._3e{width:600.680960pt;}
.fs7{font-size:5.120000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.y7{bottom:-14.906667pt;}
.y6{bottom:-4.160000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:2.880000pt;}
.y95{bottom:3.200000pt;}
.y13f{bottom:3.240000pt;}
.y3b{bottom:4.160000pt;}
.y5{bottom:7.520000pt;}
.y56{bottom:8.000000pt;}
.y93{bottom:10.720000pt;}
.y99{bottom:10.880000pt;}
.y53{bottom:15.200000pt;}
.y38{bottom:18.400000pt;}
.ya4{bottom:18.426667pt;}
.y97{bottom:18.560000pt;}
.y13e{bottom:18.600000pt;}
.y55{bottom:20.634667pt;}
.y92{bottom:26.080000pt;}
.y98{bottom:26.240000pt;}
.y138{bottom:26.266667pt;}
.y94{bottom:33.760000pt;}
.y9a{bottom:33.920000pt;}
.y102{bottom:33.946667pt;}
.y9e{bottom:33.960000pt;}
.y37{bottom:34.080000pt;}
.y10f{bottom:38.400000pt;}
.y52{bottom:39.040000pt;}
.y105{bottom:41.440000pt;}
.y107{bottom:41.600000pt;}
.y104{bottom:49.120000pt;}
.y108{bottom:49.280000pt;}
.y36{bottom:49.760000pt;}
.y3{bottom:51.680000pt;}
.y10c{bottom:56.840000pt;}
.yff{bottom:62.080000pt;}
.y10b{bottom:64.520000pt;}
.y10e{bottom:64.640000pt;}
.y35{bottom:65.280000pt;}
.y51{bottom:68.160000pt;}
.yf0{bottom:70.080000pt;}
.yf9{bottom:70.560000pt;}
.y2{bottom:71.232000pt;}
.yf5{bottom:72.480000pt;}
.yf3{bottom:72.800000pt;}
.yfb{bottom:73.920000pt;}
.yf7{bottom:74.560000pt;}
.yf1{bottom:75.360000pt;}
.yf8{bottom:77.600000pt;}
.yfa{bottom:77.920000pt;}
.yf6{bottom:78.720000pt;}
.yfc{bottom:79.040000pt;}
.yfe{bottom:79.520000pt;}
.y34{bottom:80.986667pt;}
.yf2{bottom:86.400000pt;}
.yf4{bottom:86.560000pt;}
.y25{bottom:88.346667pt;}
.yfd{bottom:90.080000pt;}
.y33{bottom:96.666667pt;}
.y12e{bottom:101.632000pt;}
.y90{bottom:104.032000pt;}
.y17a{bottom:104.352000pt;}
.y24{bottom:104.506667pt;}
.y112{bottom:107.392000pt;}
.yed{bottom:107.872000pt;}
.y143{bottom:109.152000pt;}
.yb8{bottom:110.112000pt;}
.y32{bottom:112.186667pt;}
.y170{bottom:112.992000pt;}
.y1c0{bottom:114.272000pt;}
.y12d{bottom:116.992000pt;}
.y8f{bottom:119.392000pt;}
.y179{bottom:119.712000pt;}
.y23{bottom:120.826667pt;}
.y54{bottom:122.112000pt;}
.y111{bottom:122.752000pt;}
.yec{bottom:123.872000pt;}
.yb7{bottom:125.312000pt;}
.y31{bottom:127.866667pt;}
.y16f{bottom:128.352000pt;}
.y1bf{bottom:131.872000pt;}
.y12c{bottom:132.352000pt;}
.y22{bottom:134.586667pt;}
.y8e{bottom:134.746667pt;}
.y178{bottom:135.066667pt;}
.y193{bottom:137.306667pt;}
.y110{bottom:137.626667pt;}
.y113{bottom:137.946667pt;}
.yeb{bottom:139.866667pt;}
.y142{bottom:140.506667pt;}
.yb6{bottom:140.666667pt;}
.y30{bottom:143.546667pt;}
.y16e{bottom:143.706667pt;}
.y21{bottom:147.066667pt;}
.y12b{bottom:147.706667pt;}
.y1be{bottom:149.626667pt;}
.y8d{bottom:150.106667pt;}
.y177{bottom:150.426667pt;}
.y192{bottom:154.906667pt;}
.yea{bottom:155.866667pt;}
.yb5{bottom:156.026667pt;}
.y16d{bottom:159.066667pt;}
.y2f{bottom:159.226667pt;}
.y20{bottom:159.546667pt;}
.y12a{bottom:163.066667pt;}
.y8c{bottom:165.306667pt;}
.y176{bottom:165.626667pt;}
.y10d{bottom:166.106667pt;}
.y1bd{bottom:167.226667pt;}
.yb4{bottom:171.386667pt;}
.ye9{bottom:171.866667pt;}
.y1f{bottom:172.026667pt;}
.y191{bottom:172.506667pt;}
.y16c{bottom:174.426667pt;}
.y2e{bottom:174.746667pt;}
.y129{bottom:178.426667pt;}
.y8b{bottom:180.986667pt;}
.y4e{bottom:183.066667pt;}
.y1e{bottom:184.506667pt;}
.y1bc{bottom:184.826667pt;}
.yb3{bottom:187.066667pt;}
.ye8{bottom:187.866667pt;}
.y16b{bottom:189.626667pt;}
.y190{bottom:190.266667pt;}
.y2d{bottom:190.426667pt;}
.y128{bottom:193.626667pt;}
.y8a{bottom:196.346667pt;}
.y1d{bottom:196.826667pt;}
.y4d{bottom:198.266667pt;}
.yb2{bottom:202.426667pt;}
.y16a{bottom:204.986667pt;}
.y2c{bottom:206.106667pt;}
.y18f{bottom:207.866667pt;}
.y127{bottom:208.986667pt;}
.y1c{bottom:209.146667pt;}
.y89{bottom:211.706667pt;}
.y4c{bottom:213.626667pt;}
.yb1{bottom:217.626667pt;}
.y141{bottom:218.426667pt;}
.y1bb{bottom:220.026667pt;}
.y169{bottom:220.346667pt;}
.y1b{bottom:221.306667pt;}
.y2b{bottom:221.626667pt;}
.ye7{bottom:222.106667pt;}
.y126{bottom:224.346667pt;}
.y18e{bottom:225.466667pt;}
.y88{bottom:227.066667pt;}
.y4b{bottom:228.986667pt;}
.yb0{bottom:232.986667pt;}
.y1a{bottom:233.946667pt;}
.y172{bottom:235.386667pt;}
.y168{bottom:235.706667pt;}
.y2a{bottom:237.306667pt;}
.ye1{bottom:237.626667pt;}
.y1ba{bottom:237.786667pt;}
.y125{bottom:239.706667pt;}
.y87{bottom:242.426667pt;}
.y18d{bottom:243.066667pt;}
.y10a{bottom:243.546667pt;}
.y4a{bottom:244.346667pt;}
.y19{bottom:246.426667pt;}
.yaf{bottom:248.346667pt;}
.y140{bottom:249.786667pt;}
.y167{bottom:251.066667pt;}
.y29{bottom:252.986667pt;}
.y124{bottom:254.746667pt;}
.y131{bottom:255.066667pt;}
.y1b9{bottom:255.386667pt;}
.y86{bottom:257.626667pt;}
.y18{bottom:258.906667pt;}
.y49{bottom:259.706667pt;}
.y18c{bottom:260.666667pt;}
.yae{bottom:263.706667pt;}
.y166{bottom:266.426667pt;}
.ye0{bottom:268.346667pt;}
.y28{bottom:268.506667pt;}
.y123{bottom:270.106667pt;}
.y130{bottom:270.426667pt;}
.y17{bottom:271.866667pt;}
.y85{bottom:272.986667pt;}
.y48{bottom:275.066667pt;}
.y18b{bottom:278.426667pt;}
.yad{bottom:279.066667pt;}
.y165{bottom:281.626667pt;}
.ydf{bottom:283.386667pt;}
.ye6{bottom:283.706667pt;}
.y27{bottom:284.186667pt;}
.y122{bottom:285.626667pt;}
.y16{bottom:287.866667pt;}
.y84{bottom:288.346667pt;}
.y47{bottom:290.266667pt;}
.y1b8{bottom:290.586667pt;}
.yac{bottom:294.426667pt;}
.y18a{bottom:296.026667pt;}
.y13d{bottom:296.506667pt;}
.y164{bottom:296.986667pt;}
.yde{bottom:299.106667pt;}
.y121{bottom:301.026667pt;}
.y26{bottom:302.586667pt;}
.y15{bottom:303.066667pt;}
.y83{bottom:303.746667pt;}
.y46{bottom:305.666667pt;}
.y1b7{bottom:308.226667pt;}
.yab{bottom:309.666667pt;}
.y163{bottom:312.386667pt;}
.y189{bottom:313.666667pt;}
.ydd{bottom:314.466667pt;}
.y120{bottom:316.386667pt;}
.y82{bottom:319.106667pt;}
.y109{bottom:320.866667pt;}
.y45{bottom:321.026667pt;}
.yaa{bottom:325.026667pt;}
.y1b6{bottom:325.986667pt;}
.y162{bottom:327.426667pt;}
.y171{bottom:327.746667pt;}
.ydc{bottom:329.666667pt;}
.y188{bottom:331.266667pt;}
.y11f{bottom:331.426667pt;}
.y12f{bottom:331.746667pt;}
.y81{bottom:334.466667pt;}
.y44{bottom:336.386667pt;}
.ya9{bottom:340.386667pt;}
.y13c{bottom:343.266667pt;}
.y1b5{bottom:343.586667pt;}
.ydb{bottom:344.706667pt;}
.ye5{bottom:345.026667pt;}
.y187{bottom:348.866667pt;}
.y181{bottom:349.346667pt;}
.y80{bottom:349.666667pt;}
.y43{bottom:351.746667pt;}
.ya8{bottom:355.746667pt;}
.y161{bottom:355.906667pt;}
.y11e{bottom:359.906667pt;}
.yda{bottom:360.386667pt;}
.y1b4{bottom:361.186667pt;}
.y180{bottom:364.706667pt;}
.y7f{bottom:365.026667pt;}
.y186{bottom:366.626667pt;}
.y42{bottom:367.106667pt;}
.y13b{bottom:374.466667pt;}
.yd9{bottom:375.746667pt;}
.y11d{bottom:375.906667pt;}
.y1b3{bottom:378.786667pt;}
.y7e{bottom:380.386667pt;}
.y41{bottom:382.306667pt;}
.y106{bottom:382.786667pt;}
.ya7{bottom:383.906667pt;}
.y185{bottom:384.226667pt;}
.y160{bottom:387.106667pt;}
.yd8{bottom:391.106667pt;}
.y11c{bottom:391.906667pt;}
.y7d{bottom:395.746667pt;}
.y1b2{bottom:396.386667pt;}
.y40{bottom:397.666667pt;}
.y184{bottom:401.826667pt;}
.yd7{bottom:406.306667pt;}
.y175{bottom:410.786667pt;}
.y7c{bottom:411.106667pt;}
.y3f{bottom:413.026667pt;}
.y1b1{bottom:414.146667pt;}
.y15f{bottom:418.466667pt;}
.y183{bottom:419.426667pt;}
.y13a{bottom:421.186667pt;}
.yd6{bottom:421.666667pt;}
.y11b{bottom:425.986667pt;}
.y7b{bottom:426.306667pt;}
.y3e{bottom:428.066667pt;}
.y4f{bottom:428.386667pt;}
.ya6{bottom:430.466667pt;}
.y1b0{bottom:431.746667pt;}
.yd5{bottom:436.706667pt;}
.ye4{bottom:437.026667pt;}
.y17f{bottom:441.346667pt;}
.y7a{bottom:441.666667pt;}
.y3d{bottom:443.426667pt;}
.y103{bottom:444.866667pt;}
.y1af{bottom:449.346667pt;}
.y15e{bottom:449.826667pt;}
.yd4{bottom:452.386667pt;}
.y182{bottom:454.786667pt;}
.y3c{bottom:456.066667pt;}
.y79{bottom:457.026667pt;}
.y3a{bottom:457.986667pt;}
.y14{bottom:463.426667pt;}
.y1ae{bottom:466.946667pt;}
.yd3{bottom:467.746667pt;}
.y139{bottom:467.906667pt;}
.y11a{bottom:470.466667pt;}
.y78{bottom:472.386667pt;}
.ya5{bottom:477.186667pt;}
.y15d{bottom:481.186667pt;}
.yd2{bottom:483.106667pt;}
.y1ad{bottom:484.546667pt;}
.y119{bottom:485.826667pt;}
.y77{bottom:487.746667pt;}
.yd1{bottom:498.306667pt;}
.y118{bottom:502.146667pt;}
.y1ac{bottom:502.306667pt;}
.y17e{bottom:502.786667pt;}
.y76{bottom:503.106667pt;}
.y101{bottom:506.786667pt;}
.y15c{bottom:512.546667pt;}
.yd0{bottom:513.666667pt;}
.y137{bottom:514.466667pt;}
.y117{bottom:517.346667pt;}
.y17d{bottom:517.986667pt;}
.y75{bottom:518.306667pt;}
.y1ab{bottom:519.906667pt;}
.ya3{bottom:523.906667pt;}
.ycf{bottom:529.026667pt;}
.y116{bottom:533.346667pt;}
.y74{bottom:533.666667pt;}
.y1aa{bottom:537.533333pt;}
.yce{bottom:544.413333pt;}
.y15b{bottom:546.813333pt;}
.y73{bottom:549.053333pt;}
.y100{bottom:553.533333pt;}
.ya2{bottom:555.133333pt;}
.ycd{bottom:559.773333pt;}
.y15a{bottom:562.333333pt;}
.y17c{bottom:564.093333pt;}
.y72{bottom:564.413333pt;}
.y1a9{bottom:572.733333pt;}
.ycc{bottom:575.133333pt;}
.y158{bottom:577.693333pt;}
.y136{bottom:579.453333pt;}
.y71{bottom:579.773333pt;}
.ycb{bottom:590.333333pt;}
.y1a8{bottom:590.493333pt;}
.y157{bottom:593.053333pt;}
.y70{bottom:595.133333pt;}
.yef{bottom:600.253333pt;}
.ya1{bottom:601.853333pt;}
.yca{bottom:605.693333pt;}
.y1a7{bottom:608.093333pt;}
.y156{bottom:608.413333pt;}
.y6f{bottom:610.333333pt;}
.yc9{bottom:621.053333pt;}
.y155{bottom:623.773333pt;}
.y132{bottom:625.373333pt;}
.y6e{bottom:625.693333pt;}
.yc8{bottom:636.413333pt;}
.y154{bottom:639.133333pt;}
.y6d{bottom:641.053333pt;}
.y1a6{bottom:643.293333pt;}
.ya0{bottom:648.573333pt;}
.yc7{bottom:651.773333pt;}
.y153{bottom:654.333333pt;}
.y6c{bottom:656.413333pt;}
.y1a5{bottom:660.893333pt;}
.yc6{bottom:667.133333pt;}
.y152{bottom:669.693333pt;}
.y6b{bottom:671.773333pt;}
.y1a4{bottom:678.653333pt;}
.yc5{bottom:682.333333pt;}
.y151{bottom:685.053333pt;}
.y6a{bottom:686.973333pt;}
.y9f{bottom:695.133333pt;}
.y1a3{bottom:696.253333pt;}
.yc4{bottom:697.693333pt;}
.y150{bottom:700.413333pt;}
.y69{bottom:702.333333pt;}
.yc3{bottom:713.053333pt;}
.y1a2{bottom:713.853333pt;}
.y14f{bottom:715.773333pt;}
.yee{bottom:717.373333pt;}
.y68{bottom:717.693333pt;}
.yc2{bottom:728.413333pt;}
.y14e{bottom:730.973333pt;}
.y1a1{bottom:731.453333pt;}
.y135{bottom:732.733333pt;}
.y67{bottom:733.053333pt;}
.y9d{bottom:741.853333pt;}
.yc1{bottom:743.453333pt;}
.ye3{bottom:743.773333pt;}
.y14d{bottom:746.333333pt;}
.y134{bottom:748.093333pt;}
.y66{bottom:748.413333pt;}
.y1a0{bottom:749.053333pt;}
.yc0{bottom:758.653333pt;}
.ye2{bottom:758.973333pt;}
.y14c{bottom:761.693333pt;}
.y174{bottom:763.453333pt;}
.y65{bottom:763.773333pt;}
.y19f{bottom:766.813333pt;}
.y14b{bottom:777.093333pt;}
.y115{bottom:778.693333pt;}
.y64{bottom:779.013333pt;}
.y19e{bottom:784.453333pt;}
.y13{bottom:786.533333pt;}
.ybf{bottom:787.173333pt;}
.y9c{bottom:788.613333pt;}
.y14a{bottom:792.453333pt;}
.y63{bottom:794.373333pt;}
.y12{bottom:801.893333pt;}
.y19d{bottom:802.053333pt;}
.y149{bottom:807.813333pt;}
.y62{bottom:809.733333pt;}
.y11{bottom:812.613333pt;}
.ybe{bottom:818.533333pt;}
.y19c{bottom:819.653333pt;}
.y148{bottom:823.013333pt;}
.y61{bottom:825.093333pt;}
.y10{bottom:829.573333pt;}
.y9b{bottom:835.173333pt;}
.y19b{bottom:837.253333pt;}
.y147{bottom:838.373333pt;}
.y60{bottom:840.453333pt;}
.yf{bottom:846.853333pt;}
.ybd{bottom:849.893333pt;}
.y146{bottom:853.733333pt;}
.y19a{bottom:855.013333pt;}
.y133{bottom:855.493333pt;}
.y5f{bottom:855.813333pt;}
.ye{bottom:866.693333pt;}
.y145{bottom:868.773333pt;}
.y159{bottom:869.093333pt;}
.y5e{bottom:871.013333pt;}
.y199{bottom:872.613333pt;}
.ybc{bottom:881.253333pt;}
.y96{bottom:881.893333pt;}
.y17b{bottom:886.053333pt;}
.y5d{bottom:886.373333pt;}
.yd{bottom:887.653333pt;}
.y198{bottom:890.213333pt;}
.y144{bottom:897.253333pt;}
.y5c{bottom:901.733333pt;}
.y197{bottom:907.813333pt;}
.yc{bottom:908.773333pt;}
.ybb{bottom:912.613333pt;}
.y50{bottom:916.613333pt;}
.y5b{bottom:917.093333pt;}
.y196{bottom:925.413333pt;}
.y91{bottom:928.613333pt;}
.yb{bottom:930.053333pt;}
.y114{bottom:932.133333pt;}
.y5a{bottom:932.453333pt;}
.y195{bottom:943.173333pt;}
.yba{bottom:943.813333pt;}
.y173{bottom:947.493333pt;}
.y59{bottom:947.813333pt;}
.ya{bottom:951.173333pt;}
.y194{bottom:960.773333pt;}
.y58{bottom:963.013333pt;}
.y9{bottom:972.293333pt;}
.yb9{bottom:978.053333pt;}
.y57{bottom:978.373333pt;}
.y8{bottom:993.413333pt;}
.y4{bottom:1024.640000pt;}
.y1{bottom:1058.880000pt;}
.h14{height:5.025000pt;}
.h15{height:5.160000pt;}
.h16{height:5.262553pt;}
.h13{height:5.440000pt;}
.h2b{height:15.200000pt;}
.h23{height:15.360000pt;}
.h4{height:19.680000pt;}
.h1b{height:30.560000pt;}
.h22{height:30.592000pt;}
.h24{height:30.720000pt;}
.hb{height:33.918750pt;}
.h1d{height:36.138125pt;}
.h10{height:36.305625pt;}
.h6{height:36.431250pt;}
.h12{height:40.640625pt;}
.h1c{height:42.063437pt;}
.h3{height:42.649687pt;}
.h1a{height:43.215000pt;}
.h11{height:44.638750pt;}
.hf{height:44.975625pt;}
.h1f{height:45.920000pt;}
.h21{height:45.952000pt;}
.h20{height:46.080000pt;}
.h26{height:46.112000pt;}
.h1e{height:47.621250pt;}
.hc{height:50.188750pt;}
.h2d{height:52.108438pt;}
.he{height:52.134375pt;}
.h5{height:53.535000pt;}
.h17{height:54.598989pt;}
.h2c{height:55.298750pt;}
.ha{height:59.340000pt;}
.h27{height:61.280000pt;}
.h9{height:61.295000pt;}
.h28{height:61.440000pt;}
.h19{height:64.500000pt;}
.h2{height:68.748750pt;}
.h8{height:69.660000pt;}
.h7{height:70.773750pt;}
.h2a{height:76.640000pt;}
.h29{height:76.672000pt;}
.h18{height:90.080000pt;}
.h25{height:98.240000pt;}
.hd{height:315.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w42{width:33.280000pt;}
.w10{width:33.440000pt;}
.w3c{width:33.600000pt;}
.wa{width:33.760000pt;}
.w33{width:40.640000pt;}
.w29{width:41.280000pt;}
.w32{width:41.440000pt;}
.w34{width:41.472000pt;}
.w28{width:42.080000pt;}
.w2b{width:42.112000pt;}
.w30{width:47.360000pt;}
.w26{width:48.000000pt;}
.w2a{width:48.640000pt;}
.w31{width:53.312000pt;}
.w27{width:53.952000pt;}
.w2e{width:59.360000pt;}
.w2f{width:59.392000pt;}
.w24{width:60.000000pt;}
.w25{width:60.032000pt;}
.w13{width:69.792000pt;}
.wd{width:70.432000pt;}
.w45{width:76.160000pt;}
.w3f{width:76.800000pt;}
.w20{width:80.032000pt;}
.w1b{width:80.672000pt;}
.w44{width:86.912000pt;}
.w3e{width:87.552000pt;}
.w2d{width:88.992000pt;}
.w23{width:89.312000pt;}
.w12{width:89.440000pt;}
.wc{width:90.080000pt;}
.w35{width:95.360000pt;}
.w2c{width:95.680000pt;}
.w21{width:101.152000pt;}
.w1c{width:101.792000pt;}
.w4b{width:105.600000pt;}
.w48{width:105.920000pt;}
.w22{width:107.360000pt;}
.w1d{width:107.680000pt;}
.w43{width:112.000000pt;}
.w14{width:112.160000pt;}
.w3d{width:112.640000pt;}
.we{width:112.800000pt;}
.w1f{width:113.760000pt;}
.w18{width:114.400000pt;}
.w16{width:114.720000pt;}
.w46{width:114.752000pt;}
.w40{width:115.392000pt;}
.w11{width:130.912000pt;}
.wb{width:131.552000pt;}
.w3a{width:143.200000pt;}
.w37{width:144.000000pt;}
.w39{width:160.986667pt;}
.w36{width:161.466667pt;}
.w15{width:172.186667pt;}
.wf{width:172.506667pt;}
.w4{width:188.506667pt;}
.w6{width:188.986667pt;}
.w47{width:190.746667pt;}
.w41{width:191.066667pt;}
.w1e{width:194.266667pt;}
.w1a{width:194.586667pt;}
.w4c{width:243.426667pt;}
.w49{width:244.066667pt;}
.w4d{width:250.266667pt;}
.w4a{width:250.586667pt;}
.w3b{width:293.346667pt;}
.w38{width:293.666667pt;}
.w3{width:425.693333pt;}
.w5{width:458.653333pt;}
.w7{width:459.133333pt;}
.w19{width:485.533333pt;}
.w17{width:485.853333pt;}
.w8{width:556.253333pt;}
.w9{width:639.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x2d{left:8.314667pt;}
.xf{left:9.600000pt;}
.x20{left:11.200000pt;}
.x23{left:12.320000pt;}
.x1c{left:13.280000pt;}
.x32{left:14.880000pt;}
.x16{left:15.840000pt;}
.x2a{left:16.960000pt;}
.x9{left:18.440000pt;}
.x1f{left:19.840000pt;}
.x28{left:20.800000pt;}
.x19{left:22.080000pt;}
.x18{left:23.360000pt;}
.x62{left:24.480000pt;}
.x13{left:25.434667pt;}
.x1e{left:26.874667pt;}
.x27{left:28.314667pt;}
.x52{left:29.920000pt;}
.x3{left:30.912000pt;}
.x47{left:31.872000pt;}
.x25{left:32.800000pt;}
.x34{left:34.560000pt;}
.x1d{left:35.674667pt;}
.x22{left:36.954667pt;}
.x2f{left:38.714667pt;}
.x24{left:40.160000pt;}
.x2c{left:41.760000pt;}
.x44{left:43.680000pt;}
.x1b{left:45.120000pt;}
.xc{left:46.400000pt;}
.x2{left:48.320000pt;}
.x64{left:49.760000pt;}
.x21{left:50.720000pt;}
.x6a{left:53.320000pt;}
.x63{left:54.400000pt;}
.x56{left:55.994667pt;}
.x67{left:56.960000pt;}
.x29{left:58.920000pt;}
.x2e{left:60.680000pt;}
.x3e{left:63.514667pt;}
.x26{left:65.480000pt;}
.x43{left:68.634667pt;}
.x2b{left:70.280000pt;}
.x46{left:76.480000pt;}
.x45{left:83.034667pt;}
.x5c{left:88.512000pt;}
.x11{left:91.392000pt;}
.x68{left:94.440000pt;}
.x1{left:96.031988pt;}
.x69{left:98.560000pt;}
.x59{left:100.666667pt;}
.x36{left:108.520000pt;}
.x5b{left:117.146667pt;}
.x39{left:120.031988pt;}
.x5d{left:122.112000pt;}
.x33{left:123.240000pt;}
.x5a{left:124.186667pt;}
.x12{left:125.152000pt;}
.xb{left:135.386667pt;}
.xd{left:140.040000pt;}
.x3a{left:144.026655pt;}
.x37{left:161.000000pt;}
.x48{left:165.786667pt;}
.x38{left:191.560000pt;}
.x35{left:193.800000pt;}
.x65{left:202.586667pt;}
.x31{left:210.466667pt;}
.x30{left:211.386667pt;}
.x4{left:212.866667pt;}
.x55{left:216.346655pt;}
.x49{left:225.786667pt;}
.x5e{left:234.746667pt;}
.x8{left:237.466667pt;}
.x14{left:256.706667pt;}
.x57{left:258.146667pt;}
.xe{left:278.120000pt;}
.x4a{left:285.826667pt;}
.x3f{left:291.266667pt;}
.x10{left:292.866655pt;}
.x5f{left:322.306667pt;}
.x4b{left:333.826667pt;}
.x15{left:346.786667pt;}
.x4c{left:393.826667pt;}
.x6{left:396.866655pt;}
.x60{left:399.106667pt;}
.x58{left:402.146667pt;}
.x40{left:405.666667pt;}
.x5{left:414.146655pt;}
.x17{left:417.213333pt;}
.xa{left:420.573322pt;}
.x3b{left:426.653322pt;}
.x3c{left:444.573322pt;}
.x66{left:446.653333pt;}
.x4d{left:447.773333pt;}
.x3d{left:468.573322pt;}
.x41{left:486.333333pt;}
.x4e{left:489.853333pt;}
.x53{left:492.573322pt;}
.x61{left:514.493333pt;}
.x54{left:516.573322pt;}
.x1a{left:530.013333pt;}
.x4f{left:531.133333pt;}
.x50{left:579.773333pt;}
.x42{left:588.133333pt;}
.x51{left:621.893333pt;}
}




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