
    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_984f332eb6859df1d9209ba2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_7985df9a2604b53f24f86419.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_43f0ced684f633900983e5c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.098633;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_ea54622c278ccba163c725bc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.870117;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_bb2c5eb6f59b05c948c08dfa.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fa8917d7080c41ab5e8d04ba.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_63a9de51fba3c0a75cbe6b6f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_0f7a78a52721cf4c829c5973.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.680664;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_82ad9e3f484b195afa72459f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.918945;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;}
.m3{transform:matrix(0.119432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119432,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244185,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);}
.mb{transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251892,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252807,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253307,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254545,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,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);}
.v9{vertical-align:-34.800000px;}
.v2{vertical-align:-21.600000px;}
.v4{vertical-align:-18.030000px;}
.v5{vertical-align:-13.776000px;}
.v3{vertical-align:-6.600000px;}
.v7{vertical-align:-4.932000px;}
.v8{vertical-align:-1.200000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:23.400000px;}
.v1{vertical-align:28.200000px;}
.vb{vertical-align:34.200000px;}
.v6{vertical-align:35.886000px;}
.va{vertical-align:41.400000px;}
.ve{vertical-align:54.600000px;}
.vc{vertical-align:69.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.168000px;}
.ls4{letter-spacing:0.216000px;}
.ls4d{letter-spacing:0.300000px;}
.ls36{letter-spacing:0.522000px;}
.ls47{letter-spacing:0.668940px;}
.ls25{letter-spacing:1.035407px;}
.ls41{letter-spacing:1.038876px;}
.ls1c{letter-spacing:1.044876px;}
.ls28{letter-spacing:1.206876px;}
.ls3d{letter-spacing:1.547530px;}
.lsf{letter-spacing:1.554876px;}
.ls4c{letter-spacing:1.686172px;}
.ls42{letter-spacing:1.722876px;}
.ls29{letter-spacing:1.970988px;}
.ls17{letter-spacing:2.138988px;}
.ls14{letter-spacing:2.348958px;}
.ls1e{letter-spacing:2.652306px;}
.ls24{letter-spacing:2.979014px;}
.ls45{letter-spacing:3.022800px;}
.ls1b{letter-spacing:3.135006px;}
.ls19{letter-spacing:3.671922px;}
.ls21{letter-spacing:4.013922px;}
.ls2b{letter-spacing:4.123500px;}
.ls43{letter-spacing:4.167000px;}
.ls4f{letter-spacing:4.335000px;}
.ls51{letter-spacing:4.770000px;}
.ls3c{letter-spacing:4.866922px;}
.ls44{letter-spacing:5.264940px;}
.ls54{letter-spacing:5.273978px;}
.ls35{letter-spacing:5.279862px;}
.ls50{letter-spacing:5.285862px;}
.ls1f{letter-spacing:5.305200px;}
.ls1d{letter-spacing:5.442000px;}
.ls4e{letter-spacing:5.739179px;}
.ls4b{letter-spacing:5.745140px;}
.ls31{letter-spacing:5.808876px;}
.ls4a{letter-spacing:5.906068px;}
.ls30{letter-spacing:5.942940px;}
.ls3a{letter-spacing:5.969862px;}
.ls13{letter-spacing:5.976876px;}
.ls56{letter-spacing:6.126000px;}
.ls26{letter-spacing:6.167964px;}
.lse{letter-spacing:6.355866px;}
.ls15{letter-spacing:6.732306px;}
.ls2d{letter-spacing:6.738306px;}
.ls39{letter-spacing:6.900306px;}
.ls16{letter-spacing:6.944958px;}
.ls34{letter-spacing:7.112958px;}
.ls48{letter-spacing:7.207482px;}
.ls23{letter-spacing:7.416306px;}
.ls10{letter-spacing:7.418982px;}
.ls27{letter-spacing:7.760982px;}
.ls2c{letter-spacing:7.790958px;}
.ls49{letter-spacing:7.891482px;}
.lsd{letter-spacing:7.928982px;}
.lsb{letter-spacing:7.934982px;}
.ls3e{letter-spacing:8.374961px;}
.ls33{letter-spacing:8.887500px;}
.ls46{letter-spacing:8.925000px;}
.ls22{letter-spacing:8.945922px;}
.ls55{letter-spacing:9.365862px;}
.ls53{letter-spacing:9.874771px;}
.ls3b{letter-spacing:9.875862px;}
.ls32{letter-spacing:10.196940px;}
.ls11{letter-spacing:10.206000px;}
.ls37{letter-spacing:10.224876px;}
.ls38{letter-spacing:10.712940px;}
.ls40{letter-spacing:11.156988px;}
.ls3f{letter-spacing:11.789238px;}
.ls12{letter-spacing:12.008982px;}
.lsc{letter-spacing:12.014982px;}
.ls20{letter-spacing:12.182982px;}
.ls18{letter-spacing:12.524982px;}
.ls1a{letter-spacing:13.709922px;}
.ls2a{letter-spacing:14.282940px;}
.ls52{letter-spacing:16.640958px;}
.lsa{letter-spacing:71.400000px;}
.ls0{letter-spacing:78.408000px;}
.ls5b{letter-spacing:125.400000px;}
.ls5a{letter-spacing:135.600000px;}
.ls59{letter-spacing:139.800000px;}
.ls57{letter-spacing:213.420000px;}
.ls58{letter-spacing:258.600000px;}
.ls5{letter-spacing:548.400000px;}
.ls6{letter-spacing:577.200000px;}
.ls8{letter-spacing:580.200000px;}
.ls3{letter-spacing:581.400000px;}
.ls9{letter-spacing:601.200000px;}
.ls2e{letter-spacing:836.472000px;}
.ls2f{letter-spacing:923.472000px;}
.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;}
}
.ws14{word-spacing:-35.973000px;}
.ws18{word-spacing:-35.700000px;}
.ws1c{word-spacing:-25.848006px;}
.ws24{word-spacing:-25.814478px;}
.ws26{word-spacing:-25.743078px;}
.ws1d{word-spacing:-25.647740px;}
.ws25{word-spacing:-25.581144px;}
.ws1e{word-spacing:-25.575144px;}
.ws1f{word-spacing:-25.236650px;}
.ws23{word-spacing:-25.066403px;}
.ws0{word-spacing:-24.000000px;}
.ws21{word-spacing:-21.600000px;}
.ws22{word-spacing:-21.288000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-15.000000px;}
.ws20{word-spacing:-13.801200px;}
.ws1{word-spacing:-10.500000px;}
.ws35{word-spacing:-8.700000px;}
.ws2{word-spacing:-7.800000px;}
.ws16{word-spacing:-2.724252px;}
.ws9{word-spacing:-0.144000px;}
.ws6{word-spacing:-0.072000px;}
.ws12{word-spacing:-0.071946px;}
.ws19{word-spacing:-0.071400px;}
.ws7{word-spacing:-0.058800px;}
.ws5{word-spacing:-0.052800px;}
.ws8{word-spacing:0.000000px;}
.ws1a{word-spacing:8.983554px;}
.ws15{word-spacing:9.515622px;}
.ws17{word-spacing:9.683622px;}
.ws13{word-spacing:12.953976px;}
.ws2c{word-spacing:27.660000px;}
.ws2b{word-spacing:50.460000px;}
.ws2a{word-spacing:71.880000px;}
.ws42{word-spacing:77.400000px;}
.ws41{word-spacing:87.480000px;}
.ws32{word-spacing:94.800000px;}
.ws3f{word-spacing:98.280000px;}
.ws3d{word-spacing:100.140000px;}
.ws2f{word-spacing:101.280000px;}
.ws43{word-spacing:103.800000px;}
.ws34{word-spacing:107.400000px;}
.ws2e{word-spacing:120.000000px;}
.ws3e{word-spacing:121.440000px;}
.ws44{word-spacing:133.800000px;}
.ws40{word-spacing:134.040000px;}
.ws46{word-spacing:136.460400px;}
.ws45{word-spacing:137.400000px;}
.ws27{word-spacing:149.352000px;}
.ws11{word-spacing:154.200000px;}
.ws29{word-spacing:205.800000px;}
.ws28{word-spacing:223.800000px;}
.ws39{word-spacing:240.576000px;}
.ws38{word-spacing:240.624000px;}
.ws37{word-spacing:275.820000px;}
.ws2d{word-spacing:297.360000px;}
.ws3a{word-spacing:304.800000px;}
.ws36{word-spacing:305.820000px;}
.ws31{word-spacing:389.700000px;}
.wsf{word-spacing:493.200000px;}
.ws33{word-spacing:517.800000px;}
.wsc{word-spacing:539.616000px;}
.wsa{word-spacing:544.464000px;}
.ws30{word-spacing:547.800000px;}
.wsb{word-spacing:564.840000px;}
.ws3b{word-spacing:570.000000px;}
.wsd{word-spacing:571.416000px;}
.wse{word-spacing:576.720000px;}
.ws3c{word-spacing:749.700000px;}
.ws10{word-spacing:1364.712000px;}
.ws1b{word-spacing:1810.992000px;}
._1d{margin-left:-4.446480px;}
._1c{margin-left:-3.041124px;}
._6{margin-left:-1.005600px;}
._1{width:1.404000px;}
._5{width:3.357600px;}
._3{width:4.752000px;}
._4{width:5.886000px;}
._7{width:7.128000px;}
._8{width:8.301600px;}
._2{width:9.806400px;}
._9{width:11.013600px;}
._0{width:12.288000px;}
._a{width:13.644000px;}
._44{width:14.806800px;}
._c{width:16.113600px;}
._b{width:19.368000px;}
._46{width:20.467200px;}
._23{width:22.694400px;}
._45{width:27.360000px;}
._56{width:46.608000px;}
._2e{width:52.104000px;}
._55{width:53.484000px;}
._3d{width:54.660000px;}
._37{width:61.920000px;}
._d{width:65.448000px;}
._28{width:68.580000px;}
._78{width:73.200000px;}
._1e{width:75.696000px;}
._3c{width:80.160000px;}
._43{width:81.420000px;}
._36{width:82.800000px;}
._26{width:88.920000px;}
._41{width:92.220000px;}
._e{width:95.256000px;}
._2b{width:99.000000px;}
._30{width:101.880000px;}
._35{width:105.000000px;}
._67{width:111.600000px;}
._65{width:118.200000px;}
._27{width:122.280000px;}
._32{width:129.000000px;}
._68{width:130.200000px;}
._4a{width:131.400000px;}
._2d{width:135.000000px;}
._6d{width:141.192000px;}
._2c{width:142.200000px;}
._3a{width:143.580000px;}
._22{width:147.432000px;}
._6f{width:149.400000px;}
._2f{width:152.580000px;}
._6b{width:159.000000px;}
._70{width:160.200000px;}
._f{width:161.208000px;}
._17{width:163.200000px;}
._34{width:165.000000px;}
._29{width:168.900000px;}
._33{width:172.200000px;}
._39{width:176.220000px;}
._11{width:178.488000px;}
._4c{width:183.600000px;}
._2a{width:184.800000px;}
._4d{width:187.800000px;}
._71{width:190.440000px;}
._4f{width:193.020000px;}
._4b{width:196.800000px;}
._19{width:197.832000px;}
._15{width:199.200000px;}
._31{width:214.800000px;}
._1a{width:216.000000px;}
._66{width:222.600000px;}
._6a{width:224.952000px;}
._1b{width:226.200000px;}
._12{width:232.200000px;}
._48{width:234.036000px;}
._76{width:244.620000px;}
._14{width:250.224000px;}
._64{width:254.100000px;}
._21{width:255.360000px;}
._75{width:257.604000px;}
._18{width:266.400000px;}
._57{width:268.920000px;}
._16{width:270.360000px;}
._13{width:273.624000px;}
._73{width:276.420000px;}
._10{width:281.304000px;}
._58{width:283.800000px;}
._47{width:296.880000px;}
._69{width:300.720000px;}
._6c{width:307.320000px;}
._5e{width:312.000000px;}
._6e{width:317.280000px;}
._5a{width:324.864000px;}
._54{width:327.780000px;}
._5c{width:332.784000px;}
._53{width:336.420000px;}
._20{width:345.600000px;}
._1f{width:349.488000px;}
._60{width:352.872000px;}
._38{width:359.760000px;}
._40{width:373.080000px;}
._42{width:374.160000px;}
._5d{width:380.736000px;}
._5f{width:392.904000px;}
._25{width:394.560000px;}
._74{width:408.660000px;}
._72{width:421.920000px;}
._52{width:445.200000px;}
._51{width:454.800000px;}
._24{width:461.400000px;}
._50{width:464.400000px;}
._63{width:486.060000px;}
._49{width:487.860000px;}
._4e{width:514.380000px;}
._59{width:515.856000px;}
._3f{width:532.800000px;}
._77{width:542.760000px;}
._5b{width:551.856000px;}
._61{width:587.856000px;}
._3e{width:606.000000px;}
._3b{width:636.000000px;}
._62{width:778.140000px;}
.fc3{color:rgb(128,0,0);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,10);}
.fc1{color:rgb(0,0,10);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:31.200000px;}
.fsf{font-size:34.800000px;}
.fs2{font-size:42.000000px;}
.fse{font-size:42.576000px;}
.fsa{font-size:43.200000px;}
.fsc{font-size:48.000000px;}
.fs6{font-size:52.800000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:58.800000px;}
.fs5{font-size:60.000000px;}
.fs10{font-size:66.000000px;}
.fs8{font-size:71.400000px;}
.fsd{font-size:71.466000px;}
.fs9{font-size:71.946000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:84.018000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.ycf{bottom:0.658500px;}
.yea{bottom:4.036500px;}
.ya9{bottom:4.038000px;}
.y9e{bottom:4.053000px;}
.y99{bottom:4.092000px;}
.y82{bottom:4.093500px;}
.yf9{bottom:4.134000px;}
.yd6{bottom:4.135500px;}
.yac{bottom:4.408500px;}
.yda{bottom:5.905500px;}
.yf0{bottom:5.911500px;}
.y95{bottom:5.938500px;}
.y92{bottom:6.057000px;}
.yc6{bottom:6.085500px;}
.y8f{bottom:6.736500px;}
.ycc{bottom:6.747000px;}
.yf6{bottom:6.753000px;}
.y88{bottom:6.757500px;}
.y85{bottom:6.763500px;}
.yde{bottom:6.799500px;}
.y96{bottom:6.958500px;}
.y137{bottom:112.741500px;}
.y3c{bottom:121.591500px;}
.y7e{bottom:122.491500px;}
.yb3{bottom:123.841500px;}
.y67{bottom:128.341500px;}
.y17c{bottom:131.941500px;}
.y4e{bottom:135.991500px;}
.y157{bottom:136.741500px;}
.yab{bottom:137.308500px;}
.y111{bottom:139.291500px;}
.yfe{bottom:141.691500px;}
.yad{bottom:142.591500px;}
.y1c{bottom:145.291500px;}
.y189{bottom:149.491500px;}
.yd5{bottom:153.817500px;}
.y1be{bottom:154.141500px;}
.yd7{bottom:157.141500px;}
.y13f{bottom:161.491500px;}
.y138{bottom:162.541500px;}
.y3b{bottom:162.991500px;}
.y7d{bottom:163.891500px;}
.yb2{bottom:165.241500px;}
.y1a3{bottom:169.141500px;}
.y66{bottom:169.741500px;}
.y17b{bottom:173.341500px;}
.y188{bottom:177.841500px;}
.y110{bottom:180.691500px;}
.y1bd{bottom:182.641500px;}
.yfd{bottom:183.091500px;}
.yaa{bottom:185.491500px;}
.y1b{bottom:186.691500px;}
.y156{bottom:188.191500px;}
.y11d{bottom:192.391500px;}
.y1a2{bottom:197.641500px;}
.yd4{bottom:198.541500px;}
.y7c{bottom:201.241500px;}
.y13e{bottom:202.891500px;}
.y3a{bottom:204.391500px;}
.yb1{bottom:206.641500px;}
.y65{bottom:211.141500px;}
.y17a{bottom:214.741500px;}
.y187{bottom:221.341500px;}
.y10f{bottom:222.091500px;}
.ya8{bottom:223.483500px;}
.yfc{bottom:224.491500px;}
.y1ab{bottom:225.991500px;}
.ya7{bottom:226.891500px;}
.y1a{bottom:228.091500px;}
.y155{bottom:229.591500px;}
.y11c{bottom:233.791500px;}
.yd3{bottom:239.941500px;}
.y1a1{bottom:240.991500px;}
.yb0{bottom:244.141500px;}
.y13d{bottom:244.291500px;}
.y39{bottom:245.791500px;}
.y186{bottom:249.691500px;}
.y80{bottom:251.041500px;}
.y64{bottom:252.541500px;}
.y1bc{bottom:254.491500px;}
.y179{bottom:256.141500px;}
.y10e{bottom:263.491500px;}
.ya6{bottom:264.883500px;}
.yfb{bottom:265.891500px;}
.ya5{bottom:268.291500px;}
.y19{bottom:269.491500px;}
.y154{bottom:270.991500px;}
.y11b{bottom:275.191500px;}
.yd2{bottom:281.341500px;}
.y13c{bottom:285.691500px;}
.y38{bottom:287.191500px;}
.y185{bottom:293.191500px;}
.yb4{bottom:293.791500px;}
.y63{bottom:293.941500px;}
.y178{bottom:297.541500px;}
.y1a0{bottom:297.841500px;}
.y10d{bottom:304.891500px;}
.yfa{bottom:307.291500px;}
.ya4{bottom:309.691500px;}
.y18{bottom:310.891500px;}
.y153{bottom:312.391500px;}
.y1b7{bottom:312.841500px;}
.y11a{bottom:316.591500px;}
.y184{bottom:321.541500px;}
.y1bb{bottom:326.341500px;}
.y13b{bottom:327.091500px;}
.y37{bottom:328.591500px;}
.y62{bottom:335.341500px;}
.yd1{bottom:337.741500px;}
.y177{bottom:338.941500px;}
.y19f{bottom:341.341500px;}
.yf8{bottom:345.364500px;}
.y10c{bottom:346.291500px;}
.yf7{bottom:348.691500px;}
.ya3{bottom:351.091500px;}
.y17{bottom:352.291500px;}
.y152{bottom:353.791500px;}
.ybb{bottom:354.091500px;}
.y119{bottom:357.991500px;}
.y13a{bottom:364.441500px;}
.y183{bottom:365.041500px;}
.y19e{bottom:369.691500px;}
.y36{bottom:369.991500px;}
.yd0{bottom:375.832500px;}
.y61{bottom:376.741500px;}
.yce{bottom:378.658500px;}
.ycd{bottom:379.141500px;}
.y176{bottom:380.341500px;}
.y1b6{bottom:384.691500px;}
.yf5{bottom:386.383500px;}
.y10b{bottom:387.691500px;}
.ya2{bottom:389.083500px;}
.yf4{bottom:391.141500px;}
.ya1{bottom:392.491500px;}
.y16{bottom:393.691500px;}
.y151{bottom:395.191500px;}
.yba{bottom:395.491500px;}
.y1aa{bottom:398.191500px;}
.y118{bottom:399.391500px;}
.y182{bottom:408.391500px;}
.y35{bottom:411.391500px;}
.y19d{bottom:413.191500px;}
.y141{bottom:414.241500px;}
.ycb{bottom:416.833500px;}
.y60{bottom:418.141500px;}
.yca{bottom:421.591500px;}
.y175{bottom:421.741500px;}
.y1c1{bottom:425.191500px;}
.y10a{bottom:429.091500px;}
.yf3{bottom:431.916000px;}
.ya0{bottom:433.891500px;}
.y15{bottom:435.091500px;}
.yf2{bottom:435.241500px;}
.y150{bottom:436.591500px;}
.yb9{bottom:436.891500px;}
.y68{bottom:437.641500px;}
.y117{bottom:440.791500px;}
.y19c{bottom:441.541500px;}
.y34{bottom:452.791500px;}
.y1b5{bottom:456.541500px;}
.y5f{bottom:459.541500px;}
.yc9{bottom:462.384000px;}
.y174{bottom:463.141500px;}
.yc8{bottom:465.691500px;}
.y1a9{bottom:470.041500px;}
.y109{bottom:470.491500px;}
.y14{bottom:472.591500px;}
.yef{bottom:472.858500px;}
.y9f{bottom:475.291500px;}
.yf1{bottom:477.841500px;}
.y14f{bottom:477.991500px;}
.yb8{bottom:478.291500px;}
.y181{bottom:480.241500px;}
.y116{bottom:482.191500px;}
.y19b{bottom:485.041500px;}
.y136{bottom:489.991500px;}
.y4d{bottom:491.191500px;}
.y33{bottom:494.191500px;}
.y1c0{bottom:498.391500px;}
.y173{bottom:500.641500px;}
.y5e{bottom:500.941500px;}
.y7f{bottom:503.491500px;}
.y13{bottom:507.241500px;}
.y135{bottom:507.391500px;}
.yae{bottom:510.541500px;}
.yaf{bottom:510.691500px;}
.y4c{bottom:511.891500px;}
.y9d{bottom:513.283500px;}
.y19a{bottom:513.391500px;}
.y9c{bottom:516.691500px;}
.yc5{bottom:518.308500px;}
.y14e{bottom:519.391500px;}
.yb7{bottom:519.691500px;}
.yee{bottom:520.291500px;}
.yc7{bottom:523.291500px;}
.y115{bottom:523.591500px;}
.y180{bottom:523.741500px;}
.y134{bottom:524.641500px;}
.y1b4{bottom:528.391500px;}
.y4b{bottom:532.591500px;}
.y172{bottom:535.291500px;}
.y32{bottom:535.591500px;}
.y12{bottom:541.891500px;}
.y133{bottom:542.041500px;}
.y5d{bottom:542.341500px;}
.y7b{bottom:544.891500px;}
.y17f{bottom:552.091500px;}
.y108{bottom:553.291500px;}
.y4a{bottom:554.041500px;}
.y171{bottom:556.141500px;}
.y199{bottom:556.891500px;}
.yb6{bottom:557.191500px;}
.y9b{bottom:558.091500px;}
.y132{bottom:559.291500px;}
.y14d{bottom:560.791500px;}
.yed{bottom:561.691500px;}
.y114{bottom:564.991500px;}
.yc4{bottom:565.741500px;}
.y1bf{bottom:570.241500px;}
.y1b3{bottom:571.891500px;}
.y49{bottom:575.491500px;}
.y131{bottom:576.691500px;}
.y31{bottom:576.991500px;}
.y170{bottom:580.141500px;}
.y11{bottom:580.441500px;}
.y17e{bottom:580.591500px;}
.y14c{bottom:581.641500px;}
.y5c{bottom:583.741500px;}
.y198{bottom:585.241500px;}
.y7a{bottom:586.291500px;}
.y130{bottom:593.941500px;}
.y107{bottom:594.691500px;}
.y98{bottom:596.032500px;}
.y48{bottom:596.191500px;}
.y9a{bottom:599.341500px;}
.y14b{bottom:599.791500px;}
.y1b2{bottom:600.241500px;}
.y113{bottom:602.341500px;}
.yec{bottom:603.091500px;}
.y16f{bottom:603.241500px;}
.ybc{bottom:606.841500px;}
.yc3{bottom:607.141500px;}
.y12f{bottom:611.341500px;}
.y1a8{bottom:613.741500px;}
.y47{bottom:616.891500px;}
.y14a{bottom:617.791500px;}
.y30{bottom:618.391500px;}
.y10{bottom:621.841500px;}
.y5b{bottom:625.141500px;}
.y16e{bottom:625.741500px;}
.y79{bottom:627.691500px;}
.y197{bottom:628.741500px;}
.y12e{bottom:632.341500px;}
.y149{bottom:635.191500px;}
.y106{bottom:636.091500px;}
.y94{bottom:636.958500px;}
.y11e{bottom:637.141500px;}
.y46{bottom:637.591500px;}
.yeb{bottom:640.783500px;}
.ye9{bottom:642.133500px;}
.y97{bottom:643.591500px;}
.y1b1{bottom:643.741500px;}
.ye8{bottom:645.541500px;}
.y16d{bottom:648.241500px;}
.yc2{bottom:648.541500px;}
.y148{bottom:652.441500px;}
.y12d{bottom:653.341500px;}
.y196{bottom:657.091500px;}
.y45{bottom:658.291500px;}
.y2f{bottom:659.791500px;}
.y12c{bottom:662.041500px;}
.y17d{bottom:662.641500px;}
.yf{bottom:663.241500px;}
.y5a{bottom:666.541500px;}
.y78{bottom:669.091500px;}
.y147{bottom:669.841500px;}
.y16c{bottom:670.741500px;}
.y1b0{bottom:672.091500px;}
.y112{bottom:677.491500px;}
.y44{bottom:678.991500px;}
.y91{bottom:683.908500px;}
.ye6{bottom:683.983500px;}
.y1a7{bottom:685.591500px;}
.ye7{bottom:688.741500px;}
.y93{bottom:688.891500px;}
.yc1{bottom:689.941500px;}
.y146{bottom:690.241500px;}
.y12b{bottom:691.741500px;}
.y16b{bottom:693.241500px;}
.y105{bottom:698.941500px;}
.y43{bottom:699.691500px;}
.y195{bottom:700.591500px;}
.y2e{bottom:701.191500px;}
.ye{bottom:704.641500px;}
.y145{bottom:707.641500px;}
.y59{bottom:707.941500px;}
.y77{bottom:710.491500px;}
.y12a{bottom:712.741500px;}
.y1ba{bottom:713.941500px;}
.y16a{bottom:715.291500px;}
.y142{bottom:716.341500px;}
.y104{bottom:719.641500px;}
.y42{bottom:720.391500px;}
.y129{bottom:721.441500px;}
.y144{bottom:724.891500px;}
.y194{bottom:728.941500px;}
.ye5{bottom:731.041500px;}
.y90{bottom:731.341500px;}
.y167{bottom:739.291500px;}
.y103{bottom:740.341500px;}
.y41{bottom:741.091500px;}
.y2d{bottom:742.591500px;}
.y1af{bottom:743.941500px;}
.y143{bottom:744.691500px;}
.yd{bottom:746.041500px;}
.y58{bottom:749.341500px;}
.y76{bottom:751.891500px;}
.y128{bottom:752.491500px;}
.y166{bottom:756.691500px;}
.y1a6{bottom:757.441500px;}
.y139{bottom:758.791500px;}
.y169{bottom:760.291500px;}
.y40{bottom:761.791500px;}
.y100{bottom:762.241500px;}
.y163{bottom:768.391500px;}
.y8e{bottom:769.033500px;}
.ye4{bottom:772.441500px;}
.yff{bottom:772.591500px;}
.yc0{bottom:772.741500px;}
.y8d{bottom:773.791500px;}
.y165{bottom:773.941500px;}
.y168{bottom:777.691500px;}
.y127{bottom:777.841500px;}
.yc{bottom:781.291500px;}
.y3f{bottom:782.491500px;}
.y101{bottom:782.941500px;}
.y102{bottom:783.241500px;}
.y2c{bottom:783.991500px;}
.y1b9{bottom:785.791500px;}
.y57{bottom:790.741500px;}
.y75{bottom:793.291500px;}
.y164{bottom:798.541500px;}
.y193{bottom:800.791500px;}
.y126{bottom:802.591500px;}
.y3e{bottom:803.191500px;}
.y140{bottom:808.591500px;}
.ye3{bottom:810.084000px;}
.yb{bottom:812.341500px;}
.ybf{bottom:814.141500px;}
.ye2{bottom:814.741500px;}
.y1ae{bottom:815.791500px;}
.y8c{bottom:817.891500px;}
.y125{bottom:823.591500px;}
.y3d{bottom:824.641500px;}
.y2b{bottom:825.391500px;}
.y1a5{bottom:829.291500px;}
.y56{bottom:832.141500px;}
.y74{bottom:834.691500px;}
.y162{bottom:840.691500px;}
.y124{bottom:840.841500px;}
.ya{bottom:843.391500px;}
.y192{bottom:844.291500px;}
.ybe{bottom:851.641500px;}
.ye1{bottom:855.237000px;}
.yb5{bottom:857.491500px;}
.y1b8{bottom:857.641500px;}
.y8b{bottom:859.291500px;}
.ye0{bottom:859.891500px;}
.y123{bottom:861.991500px;}
.y2a{bottom:866.791500px;}
.y191{bottom:872.641500px;}
.y55{bottom:873.541500px;}
.y9{bottom:874.441500px;}
.y73{bottom:876.091500px;}
.y161{bottom:882.091500px;}
.yd8{bottom:886.291500px;}
.y1ad{bottom:887.641500px;}
.ydd{bottom:900.388500px;}
.y8a{bottom:900.691500px;}
.y1a4{bottom:901.141500px;}
.ydf{bottom:901.728000px;}
.ydc{bottom:905.041500px;}
.y1f{bottom:905.491500px;}
.y122{bottom:907.741500px;}
.y29{bottom:908.191500px;}
.y8{bottom:910.891500px;}
.y72{bottom:913.591500px;}
.y54{bottom:914.941500px;}
.y190{bottom:916.141500px;}
.y121{bottom:916.441500px;}
.y160{bottom:919.441500px;}
.y11f{bottom:929.641500px;}
.y7{bottom:936.541500px;}
.y89{bottom:942.091500px;}
.yd9{bottom:943.558500px;}
.y18f{bottom:944.491500px;}
.y120{bottom:947.791500px;}
.y71{bottom:948.241500px;}
.ydb{bottom:948.541500px;}
.y28{bottom:949.591500px;}
.y15f{bottom:954.091500px;}
.y53{bottom:956.341500px;}
.y70{bottom:967.291500px;}
.y1e{bottom:967.591500px;}
.y6{bottom:972.991500px;}
.y15e{bottom:973.741500px;}
.y87{bottom:979.783500px;}
.y86{bottom:984.541500px;}
.y18e{bottom:987.991500px;}
.y6f{bottom:988.891500px;}
.y27{bottom:990.991500px;}
.y15d{bottom:996.841500px;}
.y52{bottom:997.741500px;}
.y5{bottom:1004.791500px;}
.y6e{bottom:1010.191500px;}
.y18d{bottom:1016.341500px;}
.y15c{bottom:1021.591500px;}
.y84{bottom:1024.933500px;}
.y83{bottom:1029.691500px;}
.y6d{bottom:1031.641500px;}
.y26{bottom:1032.391500px;}
.y51{bottom:1039.141500px;}
.y6a{bottom:1041.991500px;}
.y18c{bottom:1044.841500px;}
.y15b{bottom:1045.741500px;}
.y6c{bottom:1052.341500px;}
.y4{bottom:1054.441500px;}
.y1ac{bottom:1059.841500px;}
.y69{bottom:1062.691500px;}
.y15a{bottom:1068.241500px;}
.y6b{bottom:1073.041500px;}
.y25{bottom:1073.791500px;}
.y50{bottom:1080.541500px;}
.y18b{bottom:1088.191500px;}
.y159{bottom:1091.341500px;}
.ybd{bottom:1105.891500px;}
.y3{bottom:1109.641500px;}
.y81{bottom:1111.884000px;}
.y158{bottom:1113.991500px;}
.y24{bottom:1115.191500px;}
.y18a{bottom:1116.691500px;}
.y4f{bottom:1118.041500px;}
.y1d{bottom:1154.041500px;}
.y23{bottom:1176.268500px;}
.y2{bottom:1192.741500px;}
.y22{bottom:1194.268500px;}
.y21{bottom:1212.268500px;}
.y20{bottom:1230.268500px;}
.h22{height:14.175000px;}
.h10{height:19.707000px;}
.h1c{height:19.783500px;}
.h1d{height:19.800000px;}
.h24{height:22.386000px;}
.h21{height:22.477500px;}
.h26{height:22.479000px;}
.h28{height:22.483500px;}
.h14{height:22.488000px;}
.h12{height:22.494000px;}
.h15{height:22.500000px;}
.h23{height:22.869000px;}
.h27{height:22.876500px;}
.h20{height:22.879500px;}
.h16{height:22.894500px;}
.h1e{height:23.625000px;}
.h18{height:26.176500px;}
.h6{height:27.376172px;}
.ha{height:38.620313px;}
.h2f{height:40.664062px;}
.hc{height:41.689453px;}
.hb{height:43.008984px;}
.h7{height:47.381836px;}
.hd{height:48.796875px;}
.he{height:49.992188px;}
.h11{height:50.272852px;}
.h25{height:50.319322px;}
.h13{height:50.657291px;}
.h8{height:52.646484px;}
.h9{height:52.664062px;}
.hf{height:53.264063px;}
.h2d{height:53.934961px;}
.h30{height:57.911133px;}
.h1b{height:61.603418px;}
.h17{height:62.074503px;}
.h3{height:63.175781px;}
.h1a{height:64.678969px;}
.h5{height:65.052539px;}
.h4{height:65.062500px;}
.h1f{height:65.530969px;}
.h19{height:72.490140px;}
.h2a{height:86.846484px;}
.h2c{height:87.446484px;}
.h29{height:104.575781px;}
.h2e{height:107.246484px;}
.h2b{height:121.646484px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.wd{width:6.187500px;}
.w15{width:8.250000px;}
.w22{width:9.597000px;}
.w3{width:10.275000px;}
.w11{width:12.507000px;}
.w1d{width:12.523500px;}
.wa{width:12.963000px;}
.wc{width:13.339500px;}
.w12{width:13.639500px;}
.wb{width:13.707000px;}
.w24{width:13.725000px;}
.we{width:17.710500px;}
.w1e{width:19.632000px;}
.w1b{width:20.250000px;}
.w1f{width:20.266500px;}
.w4{width:20.326500px;}
.w5{width:21.885000px;}
.w1c{width:22.648500px;}
.w20{width:22.719000px;}
.w6{width:23.250000px;}
.w26{width:23.455500px;}
.w13{width:25.725000px;}
.w19{width:26.692500px;}
.w29{width:27.894000px;}
.w16{width:33.130500px;}
.w27{width:44.829000px;}
.w17{width:53.706000px;}
.w14{width:55.858500px;}
.w28{width:55.881000px;}
.w23{width:55.948500px;}
.w21{width:64.431000px;}
.w18{width:85.275000px;}
.w25{width:115.956000px;}
.w9{width:139.056000px;}
.wf{width:167.181000px;}
.w10{width:218.931000px;}
.w7{width:236.481000px;}
.w1a{width:246.606000px;}
.w8{width:424.356000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:1.045500px;}
.x2d{left:2.254500px;}
.x9{left:36.600000px;}
.xb{left:41.700000px;}
.x6{left:45.750000px;}
.x7{left:49.050000px;}
.x5{left:50.550000px;}
.x3{left:54.900000px;}
.x4{left:57.300000px;}
.x1{left:85.200000px;}
.x2e{left:90.015000px;}
.x2f{left:95.542500px;}
.x2{left:112.200000px;}
.xc{left:113.400000px;}
.x8{left:123.274500px;}
.x4c{left:124.648500px;}
.x2b{left:130.492500px;}
.x4d{left:133.200000px;}
.x60{left:138.018000px;}
.x45{left:143.716500px;}
.x30{left:145.077000px;}
.x31{left:149.542500px;}
.x5c{left:155.400000px;}
.x46{left:156.450000px;}
.x64{left:158.554500px;}
.x61{left:161.700000px;}
.x71{left:163.350000px;}
.xe{left:165.300000px;}
.x53{left:166.350000px;}
.x80{left:167.850000px;}
.xd{left:172.800000px;}
.x70{left:174.600000px;}
.x81{left:177.450000px;}
.x6c{left:184.050000px;}
.x65{left:186.750000px;}
.xa{left:202.350000px;}
.x3f{left:203.700000px;}
.x54{left:207.750000px;}
.x3c{left:220.950000px;}
.x22{left:223.798500px;}
.x50{left:228.300000px;}
.x55{left:230.700000px;}
.x24{left:234.300000px;}
.x74{left:237.450000px;}
.x6f{left:238.800000px;}
.x10{left:239.850000px;}
.x3d{left:241.050000px;}
.x66{left:246.750000px;}
.x7f{left:247.950000px;}
.x82{left:249.000000px;}
.x72{left:250.950000px;}
.xf{left:255.450000px;}
.x73{left:261.150000px;}
.x32{left:268.350000px;}
.x67{left:273.750000px;}
.x25{left:275.697000px;}
.x26{left:296.250000px;}
.x21{left:303.300000px;}
.x44{left:309.150000px;}
.x3e{left:313.050000px;}
.x12{left:314.400000px;}
.x33{left:319.066500px;}
.x75{left:320.700000px;}
.x40{left:327.450000px;}
.x11{left:328.950000px;}
.x34{left:333.000000px;}
.x68{left:343.200000px;}
.x5d{left:355.650000px;}
.x77{left:387.150000px;}
.x14{left:388.950000px;}
.x83{left:394.650000px;}
.x13{left:404.550000px;}
.x41{left:406.800000px;}
.x76{left:410.850000px;}
.x5e{left:411.900000px;}
.x47{left:425.409000px;}
.x48{left:439.350000px;}
.x69{left:440.850000px;}
.x37{left:444.462000px;}
.x38{left:450.900000px;}
.x17{left:458.850000px;}
.x16{left:462.300000px;}
.x3b{left:466.200000px;}
.x6a{left:470.400000px;}
.x85{left:471.750000px;}
.x84{left:473.400000px;}
.x78{left:477.750000px;}
.x15{left:478.800000px;}
.x6d{left:482.250000px;}
.x57{left:489.316500px;}
.x35{left:495.759000px;}
.x36{left:509.400000px;}
.x19{left:537.450000px;}
.x62{left:540.169500px;}
.x7a{left:545.100000px;}
.x79{left:549.000000px;}
.x18{left:551.100000px;}
.x29{left:553.950000px;}
.x4a{left:556.965000px;}
.x42{left:559.800000px;}
.x2a{left:577.500000px;}
.x6b{left:583.650000px;}
.x63{left:585.300000px;}
.x58{left:593.532000px;}
.x1c{left:607.650000px;}
.x1b{left:611.100000px;}
.x4b{left:613.050000px;}
.x59{left:614.100000px;}
.x43{left:617.100000px;}
.x7b{left:621.750000px;}
.x1a{left:625.650000px;}
.x27{left:630.013500px;}
.x4e{left:640.218000px;}
.x6e{left:649.200000px;}
.x28{left:652.200000px;}
.x4f{left:673.650000px;}
.x1e{left:686.550000px;}
.x7d{left:690.000000px;}
.x51{left:694.356000px;}
.x86{left:696.600000px;}
.x7c{left:702.000000px;}
.x1d{left:705.150000px;}
.x2c{left:709.950000px;}
.x5f{left:718.800000px;}
.x52{left:721.350000px;}
.x39{left:746.688000px;}
.x56{left:758.550000px;}
.x20{left:761.100000px;}
.x3a{left:764.700000px;}
.x7e{left:766.800000px;}
.x5a{left:768.754500px;}
.x1f{left:778.200000px;}
.x49{left:790.200000px;}
.x5b{left:791.700000px;}
@media print{
.v9{vertical-align:-30.933333pt;}
.v2{vertical-align:-19.200000pt;}
.v4{vertical-align:-16.026667pt;}
.v5{vertical-align:-12.245333pt;}
.v3{vertical-align:-5.866667pt;}
.v7{vertical-align:-4.384000pt;}
.v8{vertical-align:-1.066667pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:20.800000pt;}
.v1{vertical-align:25.066667pt;}
.vb{vertical-align:30.400000pt;}
.v6{vertical-align:31.898667pt;}
.va{vertical-align:36.800000pt;}
.ve{vertical-align:48.533333pt;}
.vc{vertical-align:61.333333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.149333pt;}
.ls4{letter-spacing:0.192000pt;}
.ls4d{letter-spacing:0.266667pt;}
.ls36{letter-spacing:0.464000pt;}
.ls47{letter-spacing:0.594613pt;}
.ls25{letter-spacing:0.920361pt;}
.ls41{letter-spacing:0.923445pt;}
.ls1c{letter-spacing:0.928779pt;}
.ls28{letter-spacing:1.072779pt;}
.ls3d{letter-spacing:1.375582pt;}
.lsf{letter-spacing:1.382112pt;}
.ls4c{letter-spacing:1.498820pt;}
.ls42{letter-spacing:1.531445pt;}
.ls29{letter-spacing:1.751989pt;}
.ls17{letter-spacing:1.901323pt;}
.ls14{letter-spacing:2.087963pt;}
.ls1e{letter-spacing:2.357605pt;}
.ls24{letter-spacing:2.648012pt;}
.ls45{letter-spacing:2.686933pt;}
.ls1b{letter-spacing:2.786672pt;}
.ls19{letter-spacing:3.263931pt;}
.ls21{letter-spacing:3.567931pt;}
.ls2b{letter-spacing:3.665333pt;}
.ls43{letter-spacing:3.704000pt;}
.ls4f{letter-spacing:3.853333pt;}
.ls51{letter-spacing:4.240000pt;}
.ls3c{letter-spacing:4.326153pt;}
.ls44{letter-spacing:4.679947pt;}
.ls54{letter-spacing:4.687980pt;}
.ls35{letter-spacing:4.693211pt;}
.ls50{letter-spacing:4.698544pt;}
.ls1f{letter-spacing:4.715733pt;}
.ls1d{letter-spacing:4.837333pt;}
.ls4e{letter-spacing:5.101493pt;}
.ls4b{letter-spacing:5.106791pt;}
.ls31{letter-spacing:5.163445pt;}
.ls4a{letter-spacing:5.249838pt;}
.ls30{letter-spacing:5.282613pt;}
.ls3a{letter-spacing:5.306544pt;}
.ls13{letter-spacing:5.312779pt;}
.ls56{letter-spacing:5.445333pt;}
.ls26{letter-spacing:5.482635pt;}
.lse{letter-spacing:5.649659pt;}
.ls15{letter-spacing:5.984272pt;}
.ls2d{letter-spacing:5.989605pt;}
.ls39{letter-spacing:6.133605pt;}
.ls16{letter-spacing:6.173296pt;}
.ls34{letter-spacing:6.322629pt;}
.ls48{letter-spacing:6.406651pt;}
.ls23{letter-spacing:6.592272pt;}
.ls10{letter-spacing:6.594651pt;}
.ls27{letter-spacing:6.898651pt;}
.ls2c{letter-spacing:6.925296pt;}
.ls49{letter-spacing:7.014651pt;}
.lsd{letter-spacing:7.047984pt;}
.lsb{letter-spacing:7.053317pt;}
.ls3e{letter-spacing:7.444410pt;}
.ls33{letter-spacing:7.900000pt;}
.ls46{letter-spacing:7.933333pt;}
.ls22{letter-spacing:7.951931pt;}
.ls55{letter-spacing:8.325211pt;}
.ls53{letter-spacing:8.777574pt;}
.ls3b{letter-spacing:8.778544pt;}
.ls32{letter-spacing:9.063947pt;}
.ls11{letter-spacing:9.072000pt;}
.ls37{letter-spacing:9.088779pt;}
.ls38{letter-spacing:9.522613pt;}
.ls40{letter-spacing:9.917323pt;}
.ls3f{letter-spacing:10.479322pt;}
.ls12{letter-spacing:10.674651pt;}
.lsc{letter-spacing:10.679984pt;}
.ls20{letter-spacing:10.829317pt;}
.ls18{letter-spacing:11.133317pt;}
.ls1a{letter-spacing:12.186597pt;}
.ls2a{letter-spacing:12.695947pt;}
.ls52{letter-spacing:14.791963pt;}
.lsa{letter-spacing:63.466667pt;}
.ls0{letter-spacing:69.696000pt;}
.ls5b{letter-spacing:111.466667pt;}
.ls5a{letter-spacing:120.533333pt;}
.ls59{letter-spacing:124.266667pt;}
.ls57{letter-spacing:189.706667pt;}
.ls58{letter-spacing:229.866667pt;}
.ls5{letter-spacing:487.466667pt;}
.ls6{letter-spacing:513.066667pt;}
.ls8{letter-spacing:515.733333pt;}
.ls3{letter-spacing:516.800000pt;}
.ls9{letter-spacing:534.400000pt;}
.ls2e{letter-spacing:743.530667pt;}
.ls2f{letter-spacing:820.864000pt;}
.ws14{word-spacing:-31.976000pt;}
.ws18{word-spacing:-31.733333pt;}
.ws1c{word-spacing:-22.976005pt;}
.ws24{word-spacing:-22.946202pt;}
.ws26{word-spacing:-22.882736pt;}
.ws1d{word-spacing:-22.797991pt;}
.ws25{word-spacing:-22.738795pt;}
.ws1e{word-spacing:-22.733461pt;}
.ws1f{word-spacing:-22.432577pt;}
.ws23{word-spacing:-22.281247pt;}
.ws0{word-spacing:-21.333333pt;}
.ws21{word-spacing:-19.200000pt;}
.ws22{word-spacing:-18.922667pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-13.333333pt;}
.ws20{word-spacing:-12.267733pt;}
.ws1{word-spacing:-9.333333pt;}
.ws35{word-spacing:-7.733333pt;}
.ws2{word-spacing:-6.933333pt;}
.ws16{word-spacing:-2.421557pt;}
.ws9{word-spacing:-0.128000pt;}
.ws6{word-spacing:-0.064000pt;}
.ws12{word-spacing:-0.063952pt;}
.ws19{word-spacing:-0.063467pt;}
.ws7{word-spacing:-0.052267pt;}
.ws5{word-spacing:-0.046933pt;}
.ws8{word-spacing:0.000000pt;}
.ws1a{word-spacing:7.985381pt;}
.ws15{word-spacing:8.458331pt;}
.ws17{word-spacing:8.607664pt;}
.ws13{word-spacing:11.514645pt;}
.ws2c{word-spacing:24.586667pt;}
.ws2b{word-spacing:44.853333pt;}
.ws2a{word-spacing:63.893333pt;}
.ws42{word-spacing:68.800000pt;}
.ws41{word-spacing:77.760000pt;}
.ws32{word-spacing:84.266667pt;}
.ws3f{word-spacing:87.360000pt;}
.ws3d{word-spacing:89.013333pt;}
.ws2f{word-spacing:90.026667pt;}
.ws43{word-spacing:92.266667pt;}
.ws34{word-spacing:95.466667pt;}
.ws2e{word-spacing:106.666667pt;}
.ws3e{word-spacing:107.946667pt;}
.ws44{word-spacing:118.933333pt;}
.ws40{word-spacing:119.146667pt;}
.ws46{word-spacing:121.298133pt;}
.ws45{word-spacing:122.133333pt;}
.ws27{word-spacing:132.757333pt;}
.ws11{word-spacing:137.066667pt;}
.ws29{word-spacing:182.933333pt;}
.ws28{word-spacing:198.933333pt;}
.ws39{word-spacing:213.845333pt;}
.ws38{word-spacing:213.888000pt;}
.ws37{word-spacing:245.173333pt;}
.ws2d{word-spacing:264.320000pt;}
.ws3a{word-spacing:270.933333pt;}
.ws36{word-spacing:271.840000pt;}
.ws31{word-spacing:346.400000pt;}
.wsf{word-spacing:438.400000pt;}
.ws33{word-spacing:460.266667pt;}
.wsc{word-spacing:479.658667pt;}
.wsa{word-spacing:483.968000pt;}
.ws30{word-spacing:486.933333pt;}
.wsb{word-spacing:502.080000pt;}
.ws3b{word-spacing:506.666667pt;}
.wsd{word-spacing:507.925333pt;}
.wse{word-spacing:512.640000pt;}
.ws3c{word-spacing:666.400000pt;}
.ws10{word-spacing:1213.077333pt;}
.ws1b{word-spacing:1609.770667pt;}
._1d{margin-left:-3.952427pt;}
._1c{margin-left:-2.703221pt;}
._6{margin-left:-0.893867pt;}
._1{width:1.248000pt;}
._5{width:2.984533pt;}
._3{width:4.224000pt;}
._4{width:5.232000pt;}
._7{width:6.336000pt;}
._8{width:7.379200pt;}
._2{width:8.716800pt;}
._9{width:9.789867pt;}
._0{width:10.922667pt;}
._a{width:12.128000pt;}
._44{width:13.161600pt;}
._c{width:14.323200pt;}
._b{width:17.216000pt;}
._46{width:18.193067pt;}
._23{width:20.172800pt;}
._45{width:24.320000pt;}
._56{width:41.429333pt;}
._2e{width:46.314667pt;}
._55{width:47.541333pt;}
._3d{width:48.586667pt;}
._37{width:55.040000pt;}
._d{width:58.176000pt;}
._28{width:60.960000pt;}
._78{width:65.066667pt;}
._1e{width:67.285333pt;}
._3c{width:71.253333pt;}
._43{width:72.373333pt;}
._36{width:73.600000pt;}
._26{width:79.040000pt;}
._41{width:81.973333pt;}
._e{width:84.672000pt;}
._2b{width:88.000000pt;}
._30{width:90.560000pt;}
._35{width:93.333333pt;}
._67{width:99.200000pt;}
._65{width:105.066667pt;}
._27{width:108.693333pt;}
._32{width:114.666667pt;}
._68{width:115.733333pt;}
._4a{width:116.800000pt;}
._2d{width:120.000000pt;}
._6d{width:125.504000pt;}
._2c{width:126.400000pt;}
._3a{width:127.626667pt;}
._22{width:131.050667pt;}
._6f{width:132.800000pt;}
._2f{width:135.626667pt;}
._6b{width:141.333333pt;}
._70{width:142.400000pt;}
._f{width:143.296000pt;}
._17{width:145.066667pt;}
._34{width:146.666667pt;}
._29{width:150.133333pt;}
._33{width:153.066667pt;}
._39{width:156.640000pt;}
._11{width:158.656000pt;}
._4c{width:163.200000pt;}
._2a{width:164.266667pt;}
._4d{width:166.933333pt;}
._71{width:169.280000pt;}
._4f{width:171.573333pt;}
._4b{width:174.933333pt;}
._19{width:175.850667pt;}
._15{width:177.066667pt;}
._31{width:190.933333pt;}
._1a{width:192.000000pt;}
._66{width:197.866667pt;}
._6a{width:199.957333pt;}
._1b{width:201.066667pt;}
._12{width:206.400000pt;}
._48{width:208.032000pt;}
._76{width:217.440000pt;}
._14{width:222.421333pt;}
._64{width:225.866667pt;}
._21{width:226.986667pt;}
._75{width:228.981333pt;}
._18{width:236.800000pt;}
._57{width:239.040000pt;}
._16{width:240.320000pt;}
._13{width:243.221333pt;}
._73{width:245.706667pt;}
._10{width:250.048000pt;}
._58{width:252.266667pt;}
._47{width:263.893333pt;}
._69{width:267.306667pt;}
._6c{width:273.173333pt;}
._5e{width:277.333333pt;}
._6e{width:282.026667pt;}
._5a{width:288.768000pt;}
._54{width:291.360000pt;}
._5c{width:295.808000pt;}
._53{width:299.040000pt;}
._20{width:307.200000pt;}
._1f{width:310.656000pt;}
._60{width:313.664000pt;}
._38{width:319.786667pt;}
._40{width:331.626667pt;}
._42{width:332.586667pt;}
._5d{width:338.432000pt;}
._5f{width:349.248000pt;}
._25{width:350.720000pt;}
._74{width:363.253333pt;}
._72{width:375.040000pt;}
._52{width:395.733333pt;}
._51{width:404.266667pt;}
._24{width:410.133333pt;}
._50{width:412.800000pt;}
._63{width:432.053333pt;}
._49{width:433.653333pt;}
._4e{width:457.226667pt;}
._59{width:458.538667pt;}
._3f{width:473.600000pt;}
._77{width:482.453333pt;}
._5b{width:490.538667pt;}
._61{width:522.538667pt;}
._3e{width:538.666667pt;}
._3b{width:565.333333pt;}
._62{width:691.680000pt;}
.fs3{font-size:27.733333pt;}
.fsf{font-size:30.933333pt;}
.fs2{font-size:37.333333pt;}
.fse{font-size:37.845333pt;}
.fsa{font-size:38.400000pt;}
.fsc{font-size:42.666667pt;}
.fs6{font-size:46.933333pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:52.266667pt;}
.fs5{font-size:53.333333pt;}
.fs10{font-size:58.666667pt;}
.fs8{font-size:63.466667pt;}
.fsd{font-size:63.525333pt;}
.fs9{font-size:63.952000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:74.682667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.ycf{bottom:0.585333pt;}
.yea{bottom:3.588000pt;}
.ya9{bottom:3.589333pt;}
.y9e{bottom:3.602667pt;}
.y99{bottom:3.637333pt;}
.y82{bottom:3.638667pt;}
.yf9{bottom:3.674667pt;}
.yd6{bottom:3.676000pt;}
.yac{bottom:3.918667pt;}
.yda{bottom:5.249333pt;}
.yf0{bottom:5.254667pt;}
.y95{bottom:5.278667pt;}
.y92{bottom:5.384000pt;}
.yc6{bottom:5.409333pt;}
.y8f{bottom:5.988000pt;}
.ycc{bottom:5.997333pt;}
.yf6{bottom:6.002667pt;}
.y88{bottom:6.006667pt;}
.y85{bottom:6.012000pt;}
.yde{bottom:6.044000pt;}
.y96{bottom:6.185333pt;}
.y137{bottom:100.214667pt;}
.y3c{bottom:108.081333pt;}
.y7e{bottom:108.881333pt;}
.yb3{bottom:110.081333pt;}
.y67{bottom:114.081333pt;}
.y17c{bottom:117.281333pt;}
.y4e{bottom:120.881333pt;}
.y157{bottom:121.548000pt;}
.yab{bottom:122.052000pt;}
.y111{bottom:123.814667pt;}
.yfe{bottom:125.948000pt;}
.yad{bottom:126.748000pt;}
.y1c{bottom:129.148000pt;}
.y189{bottom:132.881333pt;}
.yd5{bottom:136.726667pt;}
.y1be{bottom:137.014667pt;}
.yd7{bottom:139.681333pt;}
.y13f{bottom:143.548000pt;}
.y138{bottom:144.481333pt;}
.y3b{bottom:144.881333pt;}
.y7d{bottom:145.681333pt;}
.yb2{bottom:146.881333pt;}
.y1a3{bottom:150.348000pt;}
.y66{bottom:150.881333pt;}
.y17b{bottom:154.081333pt;}
.y188{bottom:158.081333pt;}
.y110{bottom:160.614667pt;}
.y1bd{bottom:162.348000pt;}
.yfd{bottom:162.748000pt;}
.yaa{bottom:164.881333pt;}
.y1b{bottom:165.948000pt;}
.y156{bottom:167.281333pt;}
.y11d{bottom:171.014667pt;}
.y1a2{bottom:175.681333pt;}
.yd4{bottom:176.481333pt;}
.y7c{bottom:178.881333pt;}
.y13e{bottom:180.348000pt;}
.y3a{bottom:181.681333pt;}
.yb1{bottom:183.681333pt;}
.y65{bottom:187.681333pt;}
.y17a{bottom:190.881333pt;}
.y187{bottom:196.748000pt;}
.y10f{bottom:197.414667pt;}
.ya8{bottom:198.652000pt;}
.yfc{bottom:199.548000pt;}
.y1ab{bottom:200.881333pt;}
.ya7{bottom:201.681333pt;}
.y1a{bottom:202.748000pt;}
.y155{bottom:204.081333pt;}
.y11c{bottom:207.814667pt;}
.yd3{bottom:213.281333pt;}
.y1a1{bottom:214.214667pt;}
.yb0{bottom:217.014667pt;}
.y13d{bottom:217.148000pt;}
.y39{bottom:218.481333pt;}
.y186{bottom:221.948000pt;}
.y80{bottom:223.148000pt;}
.y64{bottom:224.481333pt;}
.y1bc{bottom:226.214667pt;}
.y179{bottom:227.681333pt;}
.y10e{bottom:234.214667pt;}
.ya6{bottom:235.452000pt;}
.yfb{bottom:236.348000pt;}
.ya5{bottom:238.481333pt;}
.y19{bottom:239.548000pt;}
.y154{bottom:240.881333pt;}
.y11b{bottom:244.614667pt;}
.yd2{bottom:250.081333pt;}
.y13c{bottom:253.948000pt;}
.y38{bottom:255.281333pt;}
.y185{bottom:260.614667pt;}
.yb4{bottom:261.148000pt;}
.y63{bottom:261.281333pt;}
.y178{bottom:264.481333pt;}
.y1a0{bottom:264.748000pt;}
.y10d{bottom:271.014667pt;}
.yfa{bottom:273.148000pt;}
.ya4{bottom:275.281333pt;}
.y18{bottom:276.348000pt;}
.y153{bottom:277.681333pt;}
.y1b7{bottom:278.081333pt;}
.y11a{bottom:281.414667pt;}
.y184{bottom:285.814667pt;}
.y1bb{bottom:290.081333pt;}
.y13b{bottom:290.748000pt;}
.y37{bottom:292.081333pt;}
.y62{bottom:298.081333pt;}
.yd1{bottom:300.214667pt;}
.y177{bottom:301.281333pt;}
.y19f{bottom:303.414667pt;}
.yf8{bottom:306.990667pt;}
.y10c{bottom:307.814667pt;}
.yf7{bottom:309.948000pt;}
.ya3{bottom:312.081333pt;}
.y17{bottom:313.148000pt;}
.y152{bottom:314.481333pt;}
.ybb{bottom:314.748000pt;}
.y119{bottom:318.214667pt;}
.y13a{bottom:323.948000pt;}
.y183{bottom:324.481333pt;}
.y19e{bottom:328.614667pt;}
.y36{bottom:328.881333pt;}
.yd0{bottom:334.073333pt;}
.y61{bottom:334.881333pt;}
.yce{bottom:336.585333pt;}
.ycd{bottom:337.014667pt;}
.y176{bottom:338.081333pt;}
.y1b6{bottom:341.948000pt;}
.yf5{bottom:343.452000pt;}
.y10b{bottom:344.614667pt;}
.ya2{bottom:345.852000pt;}
.yf4{bottom:347.681333pt;}
.ya1{bottom:348.881333pt;}
.y16{bottom:349.948000pt;}
.y151{bottom:351.281333pt;}
.yba{bottom:351.548000pt;}
.y1aa{bottom:353.948000pt;}
.y118{bottom:355.014667pt;}
.y182{bottom:363.014667pt;}
.y35{bottom:365.681333pt;}
.y19d{bottom:367.281333pt;}
.y141{bottom:368.214667pt;}
.ycb{bottom:370.518667pt;}
.y60{bottom:371.681333pt;}
.yca{bottom:374.748000pt;}
.y175{bottom:374.881333pt;}
.y1c1{bottom:377.948000pt;}
.y10a{bottom:381.414667pt;}
.yf3{bottom:383.925333pt;}
.ya0{bottom:385.681333pt;}
.y15{bottom:386.748000pt;}
.yf2{bottom:386.881333pt;}
.y150{bottom:388.081333pt;}
.yb9{bottom:388.348000pt;}
.y68{bottom:389.014667pt;}
.y117{bottom:391.814667pt;}
.y19c{bottom:392.481333pt;}
.y34{bottom:402.481333pt;}
.y1b5{bottom:405.814667pt;}
.y5f{bottom:408.481333pt;}
.yc9{bottom:411.008000pt;}
.y174{bottom:411.681333pt;}
.yc8{bottom:413.948000pt;}
.y1a9{bottom:417.814667pt;}
.y109{bottom:418.214667pt;}
.y14{bottom:420.081333pt;}
.yef{bottom:420.318667pt;}
.y9f{bottom:422.481333pt;}
.yf1{bottom:424.748000pt;}
.y14f{bottom:424.881333pt;}
.yb8{bottom:425.148000pt;}
.y181{bottom:426.881333pt;}
.y116{bottom:428.614667pt;}
.y19b{bottom:431.148000pt;}
.y136{bottom:435.548000pt;}
.y4d{bottom:436.614667pt;}
.y33{bottom:439.281333pt;}
.y1c0{bottom:443.014667pt;}
.y173{bottom:445.014667pt;}
.y5e{bottom:445.281333pt;}
.y7f{bottom:447.548000pt;}
.y13{bottom:450.881333pt;}
.y135{bottom:451.014667pt;}
.yae{bottom:453.814667pt;}
.yaf{bottom:453.948000pt;}
.y4c{bottom:455.014667pt;}
.y9d{bottom:456.252000pt;}
.y19a{bottom:456.348000pt;}
.y9c{bottom:459.281333pt;}
.yc5{bottom:460.718667pt;}
.y14e{bottom:461.681333pt;}
.yb7{bottom:461.948000pt;}
.yee{bottom:462.481333pt;}
.yc7{bottom:465.148000pt;}
.y115{bottom:465.414667pt;}
.y180{bottom:465.548000pt;}
.y134{bottom:466.348000pt;}
.y1b4{bottom:469.681333pt;}
.y4b{bottom:473.414667pt;}
.y172{bottom:475.814667pt;}
.y32{bottom:476.081333pt;}
.y12{bottom:481.681333pt;}
.y133{bottom:481.814667pt;}
.y5d{bottom:482.081333pt;}
.y7b{bottom:484.348000pt;}
.y17f{bottom:490.748000pt;}
.y108{bottom:491.814667pt;}
.y4a{bottom:492.481333pt;}
.y171{bottom:494.348000pt;}
.y199{bottom:495.014667pt;}
.yb6{bottom:495.281333pt;}
.y9b{bottom:496.081333pt;}
.y132{bottom:497.148000pt;}
.y14d{bottom:498.481333pt;}
.yed{bottom:499.281333pt;}
.y114{bottom:502.214667pt;}
.yc4{bottom:502.881333pt;}
.y1bf{bottom:506.881333pt;}
.y1b3{bottom:508.348000pt;}
.y49{bottom:511.548000pt;}
.y131{bottom:512.614667pt;}
.y31{bottom:512.881333pt;}
.y170{bottom:515.681333pt;}
.y11{bottom:515.948000pt;}
.y17e{bottom:516.081333pt;}
.y14c{bottom:517.014667pt;}
.y5c{bottom:518.881333pt;}
.y198{bottom:520.214667pt;}
.y7a{bottom:521.148000pt;}
.y130{bottom:527.948000pt;}
.y107{bottom:528.614667pt;}
.y98{bottom:529.806667pt;}
.y48{bottom:529.948000pt;}
.y9a{bottom:532.748000pt;}
.y14b{bottom:533.148000pt;}
.y1b2{bottom:533.548000pt;}
.y113{bottom:535.414667pt;}
.yec{bottom:536.081333pt;}
.y16f{bottom:536.214667pt;}
.ybc{bottom:539.414667pt;}
.yc3{bottom:539.681333pt;}
.y12f{bottom:543.414667pt;}
.y1a8{bottom:545.548000pt;}
.y47{bottom:548.348000pt;}
.y14a{bottom:549.148000pt;}
.y30{bottom:549.681333pt;}
.y10{bottom:552.748000pt;}
.y5b{bottom:555.681333pt;}
.y16e{bottom:556.214667pt;}
.y79{bottom:557.948000pt;}
.y197{bottom:558.881333pt;}
.y12e{bottom:562.081333pt;}
.y149{bottom:564.614667pt;}
.y106{bottom:565.414667pt;}
.y94{bottom:566.185333pt;}
.y11e{bottom:566.348000pt;}
.y46{bottom:566.748000pt;}
.yeb{bottom:569.585333pt;}
.ye9{bottom:570.785333pt;}
.y97{bottom:572.081333pt;}
.y1b1{bottom:572.214667pt;}
.ye8{bottom:573.814667pt;}
.y16d{bottom:576.214667pt;}
.yc2{bottom:576.481333pt;}
.y148{bottom:579.948000pt;}
.y12d{bottom:580.748000pt;}
.y196{bottom:584.081333pt;}
.y45{bottom:585.148000pt;}
.y2f{bottom:586.481333pt;}
.y12c{bottom:588.481333pt;}
.y17d{bottom:589.014667pt;}
.yf{bottom:589.548000pt;}
.y5a{bottom:592.481333pt;}
.y78{bottom:594.748000pt;}
.y147{bottom:595.414667pt;}
.y16c{bottom:596.214667pt;}
.y1b0{bottom:597.414667pt;}
.y112{bottom:602.214667pt;}
.y44{bottom:603.548000pt;}
.y91{bottom:607.918667pt;}
.ye6{bottom:607.985333pt;}
.y1a7{bottom:609.414667pt;}
.ye7{bottom:612.214667pt;}
.y93{bottom:612.348000pt;}
.yc1{bottom:613.281333pt;}
.y146{bottom:613.548000pt;}
.y12b{bottom:614.881333pt;}
.y16b{bottom:616.214667pt;}
.y105{bottom:621.281333pt;}
.y43{bottom:621.948000pt;}
.y195{bottom:622.748000pt;}
.y2e{bottom:623.281333pt;}
.ye{bottom:626.348000pt;}
.y145{bottom:629.014667pt;}
.y59{bottom:629.281333pt;}
.y77{bottom:631.548000pt;}
.y12a{bottom:633.548000pt;}
.y1ba{bottom:634.614667pt;}
.y16a{bottom:635.814667pt;}
.y142{bottom:636.748000pt;}
.y104{bottom:639.681333pt;}
.y42{bottom:640.348000pt;}
.y129{bottom:641.281333pt;}
.y144{bottom:644.348000pt;}
.y194{bottom:647.948000pt;}
.ye5{bottom:649.814667pt;}
.y90{bottom:650.081333pt;}
.y167{bottom:657.148000pt;}
.y103{bottom:658.081333pt;}
.y41{bottom:658.748000pt;}
.y2d{bottom:660.081333pt;}
.y1af{bottom:661.281333pt;}
.y143{bottom:661.948000pt;}
.yd{bottom:663.148000pt;}
.y58{bottom:666.081333pt;}
.y76{bottom:668.348000pt;}
.y128{bottom:668.881333pt;}
.y166{bottom:672.614667pt;}
.y1a6{bottom:673.281333pt;}
.y139{bottom:674.481333pt;}
.y169{bottom:675.814667pt;}
.y40{bottom:677.148000pt;}
.y100{bottom:677.548000pt;}
.y163{bottom:683.014667pt;}
.y8e{bottom:683.585333pt;}
.ye4{bottom:686.614667pt;}
.yff{bottom:686.748000pt;}
.yc0{bottom:686.881333pt;}
.y8d{bottom:687.814667pt;}
.y165{bottom:687.948000pt;}
.y168{bottom:691.281333pt;}
.y127{bottom:691.414667pt;}
.yc{bottom:694.481333pt;}
.y3f{bottom:695.548000pt;}
.y101{bottom:695.948000pt;}
.y102{bottom:696.214667pt;}
.y2c{bottom:696.881333pt;}
.y1b9{bottom:698.481333pt;}
.y57{bottom:702.881333pt;}
.y75{bottom:705.148000pt;}
.y164{bottom:709.814667pt;}
.y193{bottom:711.814667pt;}
.y126{bottom:713.414667pt;}
.y3e{bottom:713.948000pt;}
.y140{bottom:718.748000pt;}
.ye3{bottom:720.074667pt;}
.yb{bottom:722.081333pt;}
.ybf{bottom:723.681333pt;}
.ye2{bottom:724.214667pt;}
.y1ae{bottom:725.148000pt;}
.y8c{bottom:727.014667pt;}
.y125{bottom:732.081333pt;}
.y3d{bottom:733.014667pt;}
.y2b{bottom:733.681333pt;}
.y1a5{bottom:737.148000pt;}
.y56{bottom:739.681333pt;}
.y74{bottom:741.948000pt;}
.y162{bottom:747.281333pt;}
.y124{bottom:747.414667pt;}
.ya{bottom:749.681333pt;}
.y192{bottom:750.481333pt;}
.ybe{bottom:757.014667pt;}
.ye1{bottom:760.210667pt;}
.yb5{bottom:762.214667pt;}
.y1b8{bottom:762.348000pt;}
.y8b{bottom:763.814667pt;}
.ye0{bottom:764.348000pt;}
.y123{bottom:766.214667pt;}
.y2a{bottom:770.481333pt;}
.y191{bottom:775.681333pt;}
.y55{bottom:776.481333pt;}
.y9{bottom:777.281333pt;}
.y73{bottom:778.748000pt;}
.y161{bottom:784.081333pt;}
.yd8{bottom:787.814667pt;}
.y1ad{bottom:789.014667pt;}
.ydd{bottom:800.345333pt;}
.y8a{bottom:800.614667pt;}
.y1a4{bottom:801.014667pt;}
.ydf{bottom:801.536000pt;}
.ydc{bottom:804.481333pt;}
.y1f{bottom:804.881333pt;}
.y122{bottom:806.881333pt;}
.y29{bottom:807.281333pt;}
.y8{bottom:809.681333pt;}
.y72{bottom:812.081333pt;}
.y54{bottom:813.281333pt;}
.y190{bottom:814.348000pt;}
.y121{bottom:814.614667pt;}
.y160{bottom:817.281333pt;}
.y11f{bottom:826.348000pt;}
.y7{bottom:832.481333pt;}
.y89{bottom:837.414667pt;}
.yd9{bottom:838.718667pt;}
.y18f{bottom:839.548000pt;}
.y120{bottom:842.481333pt;}
.y71{bottom:842.881333pt;}
.ydb{bottom:843.148000pt;}
.y28{bottom:844.081333pt;}
.y15f{bottom:848.081333pt;}
.y53{bottom:850.081333pt;}
.y70{bottom:859.814667pt;}
.y1e{bottom:860.081333pt;}
.y6{bottom:864.881333pt;}
.y15e{bottom:865.548000pt;}
.y87{bottom:870.918667pt;}
.y86{bottom:875.148000pt;}
.y18e{bottom:878.214667pt;}
.y6f{bottom:879.014667pt;}
.y27{bottom:880.881333pt;}
.y15d{bottom:886.081333pt;}
.y52{bottom:886.881333pt;}
.y5{bottom:893.148000pt;}
.y6e{bottom:897.948000pt;}
.y18d{bottom:903.414667pt;}
.y15c{bottom:908.081333pt;}
.y84{bottom:911.052000pt;}
.y83{bottom:915.281333pt;}
.y6d{bottom:917.014667pt;}
.y26{bottom:917.681333pt;}
.y51{bottom:923.681333pt;}
.y6a{bottom:926.214667pt;}
.y18c{bottom:928.748000pt;}
.y15b{bottom:929.548000pt;}
.y6c{bottom:935.414667pt;}
.y4{bottom:937.281333pt;}
.y1ac{bottom:942.081333pt;}
.y69{bottom:944.614667pt;}
.y15a{bottom:949.548000pt;}
.y6b{bottom:953.814667pt;}
.y25{bottom:954.481333pt;}
.y50{bottom:960.481333pt;}
.y18b{bottom:967.281333pt;}
.y159{bottom:970.081333pt;}
.ybd{bottom:983.014667pt;}
.y3{bottom:986.348000pt;}
.y81{bottom:988.341333pt;}
.y158{bottom:990.214667pt;}
.y24{bottom:991.281333pt;}
.y18a{bottom:992.614667pt;}
.y4f{bottom:993.814667pt;}
.y1d{bottom:1025.814667pt;}
.y23{bottom:1045.572000pt;}
.y2{bottom:1060.214667pt;}
.y22{bottom:1061.572000pt;}
.y21{bottom:1077.572000pt;}
.y20{bottom:1093.572000pt;}
.h22{height:12.600000pt;}
.h10{height:17.517333pt;}
.h1c{height:17.585333pt;}
.h1d{height:17.600000pt;}
.h24{height:19.898667pt;}
.h21{height:19.980000pt;}
.h26{height:19.981333pt;}
.h28{height:19.985333pt;}
.h14{height:19.989333pt;}
.h12{height:19.994667pt;}
.h15{height:20.000000pt;}
.h23{height:20.328000pt;}
.h27{height:20.334667pt;}
.h20{height:20.337333pt;}
.h16{height:20.350667pt;}
.h1e{height:21.000000pt;}
.h18{height:23.268000pt;}
.h6{height:24.334375pt;}
.ha{height:34.329167pt;}
.h2f{height:36.145833pt;}
.hc{height:37.057292pt;}
.hb{height:38.230208pt;}
.h7{height:42.117188pt;}
.hd{height:43.375000pt;}
.he{height:44.437500pt;}
.h11{height:44.686979pt;}
.h25{height:44.728286pt;}
.h13{height:45.028703pt;}
.h8{height:46.796875pt;}
.h9{height:46.812500pt;}
.hf{height:47.345833pt;}
.h2d{height:47.942188pt;}
.h30{height:51.476562pt;}
.h1b{height:54.758594pt;}
.h17{height:55.177336pt;}
.h3{height:56.156250pt;}
.h1a{height:57.492417pt;}
.h5{height:57.824479pt;}
.h4{height:57.833333pt;}
.h1f{height:58.249750pt;}
.h19{height:64.435680pt;}
.h2a{height:77.196875pt;}
.h2c{height:77.730208pt;}
.h29{height:92.956250pt;}
.h2e{height:95.330208pt;}
.h2b{height:108.130208pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.wd{width:5.500000pt;}
.w15{width:7.333333pt;}
.w22{width:8.530667pt;}
.w3{width:9.133333pt;}
.w11{width:11.117333pt;}
.w1d{width:11.132000pt;}
.wa{width:11.522667pt;}
.wc{width:11.857333pt;}
.w12{width:12.124000pt;}
.wb{width:12.184000pt;}
.w24{width:12.200000pt;}
.we{width:15.742667pt;}
.w1e{width:17.450667pt;}
.w1b{width:18.000000pt;}
.w1f{width:18.014667pt;}
.w4{width:18.068000pt;}
.w5{width:19.453333pt;}
.w1c{width:20.132000pt;}
.w20{width:20.194667pt;}
.w6{width:20.666667pt;}
.w26{width:20.849333pt;}
.w13{width:22.866667pt;}
.w19{width:23.726667pt;}
.w29{width:24.794667pt;}
.w16{width:29.449333pt;}
.w27{width:39.848000pt;}
.w17{width:47.738667pt;}
.w14{width:49.652000pt;}
.w28{width:49.672000pt;}
.w23{width:49.732000pt;}
.w21{width:57.272000pt;}
.w18{width:75.800000pt;}
.w25{width:103.072000pt;}
.w9{width:123.605333pt;}
.wf{width:148.605333pt;}
.w10{width:194.605333pt;}
.w7{width:210.205333pt;}
.w1a{width:219.205333pt;}
.w8{width:377.205333pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:0.929333pt;}
.x2d{left:2.004000pt;}
.x9{left:32.533333pt;}
.xb{left:37.066667pt;}
.x6{left:40.666667pt;}
.x7{left:43.600000pt;}
.x5{left:44.933333pt;}
.x3{left:48.800000pt;}
.x4{left:50.933333pt;}
.x1{left:75.733333pt;}
.x2e{left:80.013333pt;}
.x2f{left:84.926667pt;}
.x2{left:99.733333pt;}
.xc{left:100.800000pt;}
.x8{left:109.577333pt;}
.x4c{left:110.798667pt;}
.x2b{left:115.993333pt;}
.x4d{left:118.400000pt;}
.x60{left:122.682667pt;}
.x45{left:127.748000pt;}
.x30{left:128.957333pt;}
.x31{left:132.926667pt;}
.x5c{left:138.133333pt;}
.x46{left:139.066667pt;}
.x64{left:140.937333pt;}
.x61{left:143.733333pt;}
.x71{left:145.200000pt;}
.xe{left:146.933333pt;}
.x53{left:147.866667pt;}
.x80{left:149.200000pt;}
.xd{left:153.600000pt;}
.x70{left:155.200000pt;}
.x81{left:157.733333pt;}
.x6c{left:163.600000pt;}
.x65{left:166.000000pt;}
.xa{left:179.866667pt;}
.x3f{left:181.066667pt;}
.x54{left:184.666667pt;}
.x3c{left:196.400000pt;}
.x22{left:198.932000pt;}
.x50{left:202.933333pt;}
.x55{left:205.066667pt;}
.x24{left:208.266667pt;}
.x74{left:211.066667pt;}
.x6f{left:212.266667pt;}
.x10{left:213.200000pt;}
.x3d{left:214.266667pt;}
.x66{left:219.333333pt;}
.x7f{left:220.400000pt;}
.x82{left:221.333333pt;}
.x72{left:223.066667pt;}
.xf{left:227.066667pt;}
.x73{left:232.133333pt;}
.x32{left:238.533333pt;}
.x67{left:243.333333pt;}
.x25{left:245.064000pt;}
.x26{left:263.333333pt;}
.x21{left:269.600000pt;}
.x44{left:274.800000pt;}
.x3e{left:278.266667pt;}
.x12{left:279.466667pt;}
.x33{left:283.614667pt;}
.x75{left:285.066667pt;}
.x40{left:291.066667pt;}
.x11{left:292.400000pt;}
.x34{left:296.000000pt;}
.x68{left:305.066667pt;}
.x5d{left:316.133333pt;}
.x77{left:344.133333pt;}
.x14{left:345.733333pt;}
.x83{left:350.800000pt;}
.x13{left:359.600000pt;}
.x41{left:361.600000pt;}
.x76{left:365.200000pt;}
.x5e{left:366.133333pt;}
.x47{left:378.141333pt;}
.x48{left:390.533333pt;}
.x69{left:391.866667pt;}
.x37{left:395.077333pt;}
.x38{left:400.800000pt;}
.x17{left:407.866667pt;}
.x16{left:410.933333pt;}
.x3b{left:414.400000pt;}
.x6a{left:418.133333pt;}
.x85{left:419.333333pt;}
.x84{left:420.800000pt;}
.x78{left:424.666667pt;}
.x15{left:425.600000pt;}
.x6d{left:428.666667pt;}
.x57{left:434.948000pt;}
.x35{left:440.674667pt;}
.x36{left:452.800000pt;}
.x19{left:477.733333pt;}
.x62{left:480.150667pt;}
.x7a{left:484.533333pt;}
.x79{left:488.000000pt;}
.x18{left:489.866667pt;}
.x29{left:492.400000pt;}
.x4a{left:495.080000pt;}
.x42{left:497.600000pt;}
.x2a{left:513.333333pt;}
.x6b{left:518.800000pt;}
.x63{left:520.266667pt;}
.x58{left:527.584000pt;}
.x1c{left:540.133333pt;}
.x1b{left:543.200000pt;}
.x4b{left:544.933333pt;}
.x59{left:545.866667pt;}
.x43{left:548.533333pt;}
.x7b{left:552.666667pt;}
.x1a{left:556.133333pt;}
.x27{left:560.012000pt;}
.x4e{left:569.082667pt;}
.x6e{left:577.066667pt;}
.x28{left:579.733333pt;}
.x4f{left:598.800000pt;}
.x1e{left:610.266667pt;}
.x7d{left:613.333333pt;}
.x51{left:617.205333pt;}
.x86{left:619.200000pt;}
.x7c{left:624.000000pt;}
.x1d{left:626.800000pt;}
.x2c{left:631.066667pt;}
.x5f{left:638.933333pt;}
.x52{left:641.200000pt;}
.x39{left:663.722667pt;}
.x56{left:674.266667pt;}
.x20{left:676.533333pt;}
.x3a{left:679.733333pt;}
.x7e{left:681.600000pt;}
.x5a{left:683.337333pt;}
.x1f{left:691.733333pt;}
.x49{left:702.400000pt;}
.x5b{left:703.733333pt;}
}




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