
    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_a0918811e9b7cf55725b6825.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.044000;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_ea011a614300a46a229b7b3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022000;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_8d211640fd779d8786565eb3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040000;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_89c139bfba9c05955ae491d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_e028099ef3001751f2a005ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049000;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_7297e95e027230a9cff9aa1d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.072000;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_e2d2d662ef6fa40f9fd41985.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948000;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_00966303b83db998c9922392.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.047000;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;}
.mb{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.md{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6{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:-18.781200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.762000px;}
.v2{vertical-align:23.976000px;}
.ls13{letter-spacing:-7.275600px;}
.lse{letter-spacing:-6.204000px;}
.ls1c{letter-spacing:-3.570000px;}
.ls10{letter-spacing:-2.256000px;}
.ls24{letter-spacing:-1.800000px;}
.ls1b{letter-spacing:-1.680000px;}
.lsf{letter-spacing:-1.015200px;}
.ls2{letter-spacing:-1.004400px;}
.ls25{letter-spacing:-0.945000px;}
.ls8{letter-spacing:-0.564000px;}
.ls11{letter-spacing:-0.420000px;}
.ls9{letter-spacing:-0.328812px;}
.ls19{letter-spacing:-0.282000px;}
.ls26{letter-spacing:-0.252000px;}
.ls4{letter-spacing:-0.222000px;}
.ls1d{letter-spacing:-0.210000px;}
.ls22{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.164406px;}
.ls21{letter-spacing:-0.135000px;}
.ls23{letter-spacing:-0.090000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000037px;}
.ls6{letter-spacing:0.037299px;}
.lsb{letter-spacing:0.040342px;}
.ls5{letter-spacing:0.222000px;}
.ls3{letter-spacing:0.613800px;}
.ls1f{letter-spacing:1.039500px;}
.ls20{letter-spacing:1.170000px;}
.lsc{letter-spacing:1.297200px;}
.ls12{letter-spacing:1.635600px;}
.ls1e{letter-spacing:3.069000px;}
.lsa{letter-spacing:3.835200px;}
.ls14{letter-spacing:5.752800px;}
.ls17{letter-spacing:40.576701px;}
.lsd{letter-spacing:40.577320px;}
.ls15{letter-spacing:41.109375px;}
.ls16{letter-spacing:42.207447px;}
.ls18{letter-spacing:43.944396px;}
.ls0{letter-spacing:63.256701px;}
.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;}
}
.ws48{word-spacing:-16.694400px;}
.ws47{word-spacing:-16.516800px;}
.ws49{word-spacing:-16.130400px;}
.ws60{word-spacing:-15.679200px;}
.ws1{word-spacing:-15.512400px;}
.ws61{word-spacing:-14.438400px;}
.ws0{word-spacing:-12.000000px;}
.ws3{word-spacing:-10.500000px;}
.wsb8{word-spacing:-10.290000px;}
.wse8{word-spacing:-10.170000px;}
.ws81{word-spacing:-10.080000px;}
.ws6e{word-spacing:-9.418800px;}
.wse7{word-spacing:-9.000000px;}
.wsea{word-spacing:-8.910000px;}
.ws4{word-spacing:-8.880000px;}
.wsa3{word-spacing:-8.820000px;}
.ws1b{word-spacing:-8.658000px;}
.ws2{word-spacing:-8.400000px;}
.wseb{word-spacing:-8.055000px;}
.wse9{word-spacing:-7.200000px;}
.wsa4{word-spacing:-6.930000px;}
.ws5f{word-spacing:-6.576240px;}
.wsa2{word-spacing:-6.411834px;}
.ws26{word-spacing:-6.296400px;}
.ws4a{word-spacing:-6.247428px;}
.ws24{word-spacing:-3.835200px;}
.ws21{word-spacing:-3.292200px;}
.ws74{word-spacing:-3.271200px;}
.ws53{word-spacing:-3.186000px;}
.ws23{word-spacing:-3.102000px;}
.ws30{word-spacing:-2.932800px;}
.ws7b{word-spacing:-2.901600px;}
.ws2c{word-spacing:-2.820000px;}
.ws62{word-spacing:-2.707200px;}
.ws95{word-spacing:-2.594400px;}
.ws15{word-spacing:-2.566800px;}
.ws8f{word-spacing:-2.430000px;}
.ws56{word-spacing:-2.268000px;}
.wsba{word-spacing:-2.199600px;}
.wscb{word-spacing:-2.184000px;}
.wsac{word-spacing:-2.160000px;}
.ws3d{word-spacing:-2.064600px;}
.wsa7{word-spacing:-2.030400px;}
.wsb4{word-spacing:-2.008800px;}
.ws66{word-spacing:-1.974000px;}
.wse2{word-spacing:-1.953000px;}
.ws35{word-spacing:-1.917600px;}
.ws10{word-spacing:-1.909200px;}
.ws8b{word-spacing:-1.848000px;}
.ws19{word-spacing:-1.806000px;}
.ws92{word-spacing:-1.804800px;}
.ws7c{word-spacing:-1.785600px;}
.wscc{word-spacing:-1.764000px;}
.wsff{word-spacing:-1.755000px;}
.ws86{word-spacing:-1.748400px;}
.ws4d{word-spacing:-1.729800px;}
.wsd{word-spacing:-1.702800px;}
.ws51{word-spacing:-1.692000px;}
.ws28{word-spacing:-1.635600px;}
.wsb6{word-spacing:-1.562400px;}
.ws96{word-spacing:-1.522800px;}
.ws1e{word-spacing:-1.450800px;}
.ws8a{word-spacing:-1.428000px;}
.ws5b{word-spacing:-1.353600px;}
.ws4e{word-spacing:-1.339200px;}
.wsa1{word-spacing:-1.260000px;}
.ws7a{word-spacing:-1.240800px;}
.wsc{word-spacing:-1.238400px;}
.ws52{word-spacing:-1.188000px;}
.ws12{word-spacing:-1.186800px;}
.ws55{word-spacing:-1.080000px;}
.wsb5{word-spacing:-1.060200px;}
.wsf3{word-spacing:-1.035000px;}
.wsb0{word-spacing:-1.026000px;}
.ws1d{word-spacing:-1.004400px;}
.ws108{word-spacing:-0.990000px;}
.ws9b{word-spacing:-0.958800px;}
.ws11b{word-spacing:-0.855000px;}
.wsd0{word-spacing:-0.846000px;}
.wsa0{word-spacing:-0.840000px;}
.ws97{word-spacing:-0.789600px;}
.ws36{word-spacing:-0.733200px;}
.ws126{word-spacing:-0.705600px;}
.ws50{word-spacing:-0.676800px;}
.ws7e{word-spacing:-0.672000px;}
.ws127{word-spacing:-0.604800px;}
.wsaa{word-spacing:-0.564000px;}
.wsbd{word-spacing:-0.540000px;}
.ws87{word-spacing:-0.507600px;}
.ws9f{word-spacing:-0.504000px;}
.ws4c{word-spacing:-0.502200px;}
.wsf4{word-spacing:-0.495000px;}
.ws112{word-spacing:-0.450000px;}
.ws1c{word-spacing:-0.444000px;}
.ws3a{word-spacing:-0.432000px;}
.ws6c{word-spacing:-0.420000px;}
.ws33{word-spacing:-0.394800px;}
.ws1f{word-spacing:-0.390600px;}
.ws39{word-spacing:-0.378000px;}
.ws106{word-spacing:-0.360000px;}
.ws7d{word-spacing:-0.282000px;}
.ws34{word-spacing:-0.169200px;}
.ws14{word-spacing:-0.167400px;}
.ws11{word-spacing:-0.103200px;}
.wscf{word-spacing:-0.056400px;}
.wsc0{word-spacing:-0.054000px;}
.wsb7{word-spacing:-0.042000px;}
.ws6{word-spacing:0.000000px;}
.ws9d{word-spacing:0.042000px;}
.wsb3{word-spacing:0.111600px;}
.wsed{word-spacing:0.135000px;}
.wsa{word-spacing:0.154800px;}
.ws3f{word-spacing:0.210000px;}
.wsdd{word-spacing:0.223200px;}
.ws25{word-spacing:0.282000px;}
.ws1a{word-spacing:0.294000px;}
.ws90{word-spacing:0.324000px;}
.ws5d{word-spacing:0.328812px;}
.wsb2{word-spacing:0.334800px;}
.ws43{word-spacing:0.378000px;}
.ws6d{word-spacing:0.420000px;}
.ws6f{word-spacing:0.451200px;}
.wsc5{word-spacing:0.502200px;}
.ws73{word-spacing:0.507600px;}
.ws101{word-spacing:0.540000px;}
.ws5c{word-spacing:0.564000px;}
.ws22{word-spacing:0.613800px;}
.wse{word-spacing:0.619200px;}
.wsa6{word-spacing:0.620400px;}
.ws2a{word-spacing:0.676800px;}
.ws8e{word-spacing:0.702000px;}
.ws111{word-spacing:0.720000px;}
.wscd{word-spacing:0.725400px;}
.ws2d{word-spacing:0.733200px;}
.ws88{word-spacing:0.756000px;}
.wsce{word-spacing:0.781200px;}
.ws42{word-spacing:0.798000px;}
.wsb9{word-spacing:0.846000px;}
.ws54{word-spacing:0.864000px;}
.ws20{word-spacing:0.892800px;}
.ws32{word-spacing:0.902400px;}
.wsc8{word-spacing:0.948600px;}
.ws27{word-spacing:0.958800px;}
.wse5{word-spacing:1.004400px;}
.ws71{word-spacing:1.015200px;}
.wsda{word-spacing:1.071600px;}
.ws11a{word-spacing:1.080000px;}
.wsf{word-spacing:1.135200px;}
.wsbe{word-spacing:1.188000px;}
.ws13{word-spacing:1.238400px;}
.wse6{word-spacing:1.260000px;}
.ws58{word-spacing:1.297200px;}
.ws44{word-spacing:1.302000px;}
.wse3{word-spacing:1.339200px;}
.ws10b{word-spacing:1.350000px;}
.wsd4{word-spacing:1.410000px;}
.ws11c{word-spacing:1.440000px;}
.ws91{word-spacing:1.450800px;}
.ws94{word-spacing:1.466400px;}
.ws5a{word-spacing:1.522800px;}
.ws17{word-spacing:1.562400px;}
.wse1{word-spacing:1.618200px;}
.ws38{word-spacing:1.635600px;}
.wse0{word-spacing:1.674000px;}
.ws45{word-spacing:1.722000px;}
.wsc6{word-spacing:1.729800px;}
.ws69{word-spacing:1.748400px;}
.ws8d{word-spacing:1.890000px;}
.wsc3{word-spacing:1.897200px;}
.wsa5{word-spacing:1.917600px;}
.ws84{word-spacing:1.974000px;}
.wsec{word-spacing:1.980000px;}
.ws16{word-spacing:2.008800px;}
.ws78{word-spacing:2.086800px;}
.wsad{word-spacing:2.106000px;}
.ws10d{word-spacing:2.115000px;}
.ws80{word-spacing:2.142000px;}
.ws76{word-spacing:2.143200px;}
.ws40{word-spacing:2.226000px;}
.ws2f{word-spacing:2.256000px;}
.wsc7{word-spacing:2.287800px;}
.ws63{word-spacing:2.312400px;}
.ws10c{word-spacing:2.340000px;}
.ws29{word-spacing:2.368800px;}
.wsb1{word-spacing:2.399400px;}
.wsb{word-spacing:2.476800px;}
.ws9e{word-spacing:2.478000px;}
.ws67{word-spacing:2.481600px;}
.ws7f{word-spacing:2.562000px;}
.wsae{word-spacing:2.592000px;}
.wsd7{word-spacing:2.594400px;}
.ws6a{word-spacing:2.650800px;}
.wsd3{word-spacing:2.763600px;}
.ws59{word-spacing:2.876400px;}
.ws46{word-spacing:2.898000px;}
.ws83{word-spacing:2.989200px;}
.wse4{word-spacing:3.013200px;}
.wsdf{word-spacing:3.069000px;}
.ws77{word-spacing:3.102000px;}
.ws41{word-spacing:3.150000px;}
.ws72{word-spacing:3.158400px;}
.ws9a{word-spacing:3.214800px;}
.ws2b{word-spacing:3.271200px;}
.wsab{word-spacing:3.348000px;}
.wsdb{word-spacing:3.440400px;}
.ws116{word-spacing:3.465000px;}
.ws75{word-spacing:3.496800px;}
.ws11f{word-spacing:3.510000px;}
.ws4f{word-spacing:3.553200px;}
.wsf2{word-spacing:3.600000px;}
.ws37{word-spacing:3.666000px;}
.wsa9{word-spacing:3.722400px;}
.ws103{word-spacing:3.780000px;}
.ws99{word-spacing:3.835200px;}
.ws65{word-spacing:3.891600px;}
.ws57{word-spacing:3.906000px;}
.ws68{word-spacing:4.004400px;}
.ws9{word-spacing:4.024800px;}
.ws2e{word-spacing:4.060800px;}
.wsc9{word-spacing:4.116000px;}
.ws98{word-spacing:4.117200px;}
.ws8{word-spacing:4.128000px;}
.ws124{word-spacing:4.183200px;}
.wsee{word-spacing:4.185000px;}
.ws3e{word-spacing:4.200000px;}
.ws79{word-spacing:4.286400px;}
.ws89{word-spacing:4.368000px;}
.wsfc{word-spacing:4.410000px;}
.wsd8{word-spacing:4.455600px;}
.ws31{word-spacing:4.568400px;}
.wsa8{word-spacing:4.624800px;}
.wsc1{word-spacing:4.687200px;}
.ws100{word-spacing:4.725000px;}
.ws5e{word-spacing:4.746000px;}
.ws107{word-spacing:4.770000px;}
.ws7{word-spacing:4.850400px;}
.wsfa{word-spacing:4.905000px;}
.wsfb{word-spacing:4.995000px;}
.ws93{word-spacing:5.019600px;}
.wsd2{word-spacing:5.358000px;}
.ws115{word-spacing:5.490000px;}
.ws3b{word-spacing:5.724000px;}
.ws18{word-spacing:5.747400px;}
.ws85{word-spacing:5.752800px;}
.wsf6{word-spacing:5.760000px;}
.wsd5{word-spacing:5.865600px;}
.ws104{word-spacing:6.030000px;}
.wsdc{word-spacing:6.034800px;}
.wsde{word-spacing:6.082200px;}
.ws70{word-spacing:6.091200px;}
.wsf5{word-spacing:6.120000px;}
.ws64{word-spacing:6.204000px;}
.wsbb{word-spacing:6.210000px;}
.wsca{word-spacing:6.300000px;}
.ws102{word-spacing:6.345000px;}
.wsc4{word-spacing:6.361200px;}
.ws11d{word-spacing:6.390000px;}
.wsaf{word-spacing:6.426000px;}
.wsf7{word-spacing:6.525000px;}
.wsd9{word-spacing:6.542400px;}
.wsd1{word-spacing:6.598800px;}
.ws9c{word-spacing:6.937200px;}
.wsf9{word-spacing:6.975000px;}
.wsd6{word-spacing:7.275600px;}
.ws114{word-spacing:7.605000px;}
.ws10a{word-spacing:7.695000px;}
.wsc2{word-spacing:7.867800px;}
.wsbc{word-spacing:8.100000px;}
.ws119{word-spacing:8.190000px;}
.wsbf{word-spacing:8.208000px;}
.ws10e{word-spacing:8.235000px;}
.wsf8{word-spacing:8.280000px;}
.ws4b{word-spacing:8.370000px;}
.ws82{word-spacing:8.460000px;}
.ws6b{word-spacing:8.572800px;}
.ws117{word-spacing:8.730000px;}
.ws3c{word-spacing:9.126000px;}
.ws10f{word-spacing:9.270000px;}
.wsf0{word-spacing:9.855000px;}
.wsfe{word-spacing:10.395000px;}
.ws125{word-spacing:10.432800px;}
.ws118{word-spacing:10.845000px;}
.wsef{word-spacing:11.295000px;}
.ws122{word-spacing:13.320000px;}
.ws8c{word-spacing:13.932000px;}
.wsf1{word-spacing:13.995000px;}
.ws11e{word-spacing:14.490000px;}
.ws120{word-spacing:15.390000px;}
.ws121{word-spacing:16.380000px;}
.ws109{word-spacing:18.585000px;}
.ws113{word-spacing:18.945000px;}
.wsfd{word-spacing:21.105000px;}
.ws105{word-spacing:21.735000px;}
.ws110{word-spacing:23.040000px;}
.ws123{word-spacing:46.530000px;}
.ws5{word-spacing:2042.820000px;}
._b{margin-left:-19.100586px;}
._11{margin-left:-17.796000px;}
._13{margin-left:-15.985200px;}
._12{margin-left:-8.240760px;}
._6{margin-left:-7.198200px;}
._8{margin-left:-6.082800px;}
._1{margin-left:-4.222800px;}
._7{margin-left:-3.186000px;}
._4{margin-left:-2.064000px;}
._5{margin-left:-1.004400px;}
._0{width:1.285200px;}
._3{width:3.045000px;}
._e{width:4.123200px;}
._2{width:5.460000px;}
._f{width:6.722400px;}
._10{width:7.857000px;}
._14{width:21.484800px;}
._c{width:40.572000px;}
._9{width:63.256701px;}
._a{width:914.195878px;}
._d{width:916.460571px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,88,158);}
.fc1{color:rgb(92,36,131);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:31.482000px;}
.fs6{font-size:32.531400px;}
.fsb{font-size:32.881200px;}
.fse{font-size:41.976000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:44.400000px;}
.fs0{font-size:45.000000px;}
.fsf{font-size:50.400000px;}
.fs4{font-size:51.600000px;}
.fsc{font-size:54.000000px;}
.fs5{font-size:55.800000px;}
.fsa{font-size:56.400000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:61.200000px;}
.fs9{font-size:75.600000px;}
.fs2{font-size:105.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:65.260950px;}
.yfb{bottom:104.169900px;}
.y1e{bottom:104.170350px;}
.y76{bottom:104.171400px;}
.y57{bottom:104.171550px;}
.y9c{bottom:104.171850px;}
.y30{bottom:104.173350px;}
.ye6{bottom:111.666000px;}
.y9b{bottom:118.269900px;}
.yaa{bottom:118.271400px;}
.y1d{bottom:118.271850px;}
.yab{bottom:118.273350px;}
.y56{bottom:122.513100px;}
.yc9{bottom:122.522100px;}
.y75{bottom:122.523600px;}
.yfa{bottom:122.523900px;}
.y84{bottom:122.525400px;}
.ye5{bottom:125.765550px;}
.y1c{bottom:132.373350px;}
.yf9{bottom:136.619100px;}
.ya9{bottom:136.622100px;}
.y9a{bottom:136.623900px;}
.y112{bottom:136.625400px;}
.y140{bottom:140.620500px;}
.y141{bottom:140.628000px;}
.y55{bottom:140.867100px;}
.y74{bottom:140.875650px;}
.yc8{bottom:140.876100px;}
.y83{bottom:140.877600px;}
.ye4{bottom:144.117600px;}
.y2f{bottom:144.678000px;}
.y99{bottom:150.723600px;}
.y13f{bottom:154.874250px;}
.y54{bottom:154.968600px;}
.yf8{bottom:154.973100px;}
.yc7{bottom:154.975650px;}
.ya8{bottom:154.976100px;}
.y16e{bottom:159.122400px;}
.y16f{bottom:159.129900px;}
.y73{bottom:159.227850px;}
.ye3{bottom:162.469800px;}
.y2e{bottom:164.925600px;}
.y53{bottom:169.070100px;}
.yf7{bottom:169.074600px;}
.y98{bottom:169.075650px;}
.ya7{bottom:169.077600px;}
.y13e{bottom:169.128000px;}
.yc6{bottom:173.323350px;}
.y16d{bottom:173.376150px;}
.y72{bottom:177.579900px;}
.ye2{bottom:180.823800px;}
.y52{bottom:183.171600px;}
.yf6{bottom:183.176100px;}
.y1b{bottom:185.157150px;}
.y2d{bottom:185.173200px;}
.y82{bottom:185.175600px;}
.y108{bottom:185.187600px;}
.y97{bottom:187.427850px;}
.ya6{bottom:187.428150px;}
.y13d{bottom:187.579050px;}
.y16c{bottom:187.629900px;}
.yc5{bottom:191.677350px;}
.y71{bottom:195.930600px;}
.y51{bottom:197.273100px;}
.yf5{bottom:197.277600px;}
.ye0{bottom:199.174050px;}
.ye1{bottom:199.176000px;}
.ya4{bottom:201.527850px;}
.ya5{bottom:201.529650px;}
.y13c{bottom:201.832800px;}
.y1a{bottom:205.412550px;}
.y2c{bottom:205.417800px;}
.y81{bottom:205.423200px;}
.y107{bottom:205.435200px;}
.yc4{bottom:205.778850px;}
.y96{bottom:205.779900px;}
.y16b{bottom:206.128050px;}
.y50{bottom:211.374600px;}
.y70{bottom:214.284600px;}
.yf4{bottom:215.629650px;}
.ydf{bottom:217.526100px;}
.yc3{bottom:219.880350px;}
.ya3{bottom:219.881850px;}
.y13b{bottom:220.339050px;}
.y16a{bottom:220.381800px;}
.y95{bottom:224.133900px;}
.y4f{bottom:225.476100px;}
.y29{bottom:225.646200px;}
.y19{bottom:225.667950px;}
.y2b{bottom:225.673200px;}
.y80{bottom:225.680400px;}
.y106{bottom:225.682800px;}
.y6f{bottom:228.384150px;}
.y2a{bottom:230.318550px;}
.yc2{bottom:233.979900px;}
.y13a{bottom:234.592800px;}
.yde{bottom:235.880100px;}
.y169{bottom:238.793250px;}
.y4e{bottom:239.575650px;}
.y111{bottom:245.869200px;}
.y28{bottom:245.901600px;}
.y16{bottom:245.917950px;}
.y18{bottom:245.923350px;}
.y7f{bottom:245.928000px;}
.y105{bottom:245.930400px;}
.y6e{bottom:246.738150px;}
.y139{bottom:248.846550px;}
.y17{bottom:250.568550px;}
.yc1{bottom:252.332100px;}
.y168{bottom:253.047000px;}
.y4d{bottom:257.929650px;}
.y138{bottom:263.100300px;}
.y110{bottom:266.124600px;}
.y27{bottom:266.157000px;}
.y15{bottom:266.173350px;}
.y7e{bottom:266.175600px;}
.y104{bottom:266.178000px;}
.y167{bottom:267.300750px;}
.yc0{bottom:270.686100px;}
.y137{bottom:281.606550px;}
.y166{bottom:285.807000px;}
.y10f{bottom:286.380000px;}
.y26{bottom:286.412400px;}
.ya2{bottom:286.423200px;}
.y103{bottom:286.425600px;}
.ya1{bottom:286.428000px;}
.y7d{bottom:286.430400px;}
.y136{bottom:295.860300px;}
.y165{bottom:300.060750px;}
.y10e{bottom:306.635400px;}
.ydd{bottom:306.662400px;}
.y25{bottom:306.667800px;}
.y102{bottom:306.673200px;}
.y94{bottom:306.675600px;}
.y7c{bottom:306.678000px;}
.y135{bottom:310.114050px;}
.y4c{bottom:311.318550px;}
.y164{bottom:314.314500px;}
.y10d{bottom:326.890800px;}
.y100{bottom:326.912400px;}
.ydc{bottom:326.917800px;}
.y24{bottom:326.923200px;}
.y7b{bottom:326.925600px;}
.y6d{bottom:326.930400px;}
.ybf{bottom:326.937600px;}
.y163{bottom:328.568250px;}
.y134{bottom:328.620300px;}
.y101{bottom:331.568550px;}
.y162{bottom:342.822000px;}
.y133{bottom:342.874050px;}
.y14{bottom:347.134350px;}
.y10c{bottom:347.146200px;}
.y93{bottom:347.162400px;}
.yff{bottom:347.167800px;}
.ya0{bottom:347.173200px;}
.y6c{bottom:347.178000px;}
.ybe{bottom:347.185200px;}
.ydb{bottom:351.818550px;}
.y161{bottom:361.328250px;}
.y132{bottom:361.380300px;}
.y13{bottom:367.387350px;}
.yf3{bottom:367.396200px;}
.y10b{bottom:367.401600px;}
.y92{bottom:367.417800px;}
.y23{bottom:367.423200px;}
.y6b{bottom:367.425600px;}
.y9f{bottom:367.428000px;}
.ybd{bottom:367.432800px;}
.yfe{bottom:372.068550px;}
.y160{bottom:375.582000px;}
.y131{bottom:375.634050px;}
.y12{bottom:387.640350px;}
.yf2{bottom:387.651600px;}
.y10a{bottom:387.657000px;}
.yfd{bottom:387.662400px;}
.yd9{bottom:387.667800px;}
.y4b{bottom:387.673200px;}
.y6a{bottom:387.675600px;}
.y7a{bottom:387.678000px;}
.ybc{bottom:387.680400px;}
.y15f{bottom:389.835750px;}
.y130{bottom:389.887800px;}
.yda{bottom:392.318550px;}
.y11{bottom:407.893350px;}
.yf1{bottom:407.907000px;}
.yd7{bottom:407.912400px;}
.yfc{bottom:407.917800px;}
.y4a{bottom:407.923200px;}
.y79{bottom:407.925600px;}
.y9e{bottom:407.928000px;}
.y15e{bottom:408.342000px;}
.y12f{bottom:408.385950px;}
.yd8{bottom:412.568550px;}
.y15d{bottom:422.595750px;}
.y12e{bottom:422.639700px;}
.y10{bottom:428.146350px;}
.y68{bottom:428.162400px;}
.yd6{bottom:428.167800px;}
.y49{bottom:428.173200px;}
.y9d{bottom:428.175600px;}
.y78{bottom:428.178000px;}
.y69{bottom:432.818550px;}
.y12d{bottom:436.786350px;}
.y15c{bottom:441.102000px;}
.yf{bottom:448.399350px;}
.y22{bottom:448.417800px;}
.y48{bottom:448.423200px;}
.y77{bottom:448.425600px;}
.y12c{bottom:451.040100px;}
.y15b{bottom:455.355750px;}
.yef{bottom:468.651600px;}
.ye{bottom:468.652350px;}
.y21{bottom:468.673200px;}
.y12b{bottom:469.546350px;}
.yf0{bottom:473.318550px;}
.y15a{bottom:473.862000px;}
.y12a{bottom:488.052600px;}
.y159{bottom:488.115750px;}
.yd{bottom:488.905350px;}
.yee{bottom:488.907000px;}
.yd4{bottom:488.923200px;}
.y47{bottom:488.928000px;}
.ybb{bottom:488.930400px;}
.yd5{bottom:493.418700px;}
.y129{bottom:502.306350px;}
.y158{bottom:506.622000px;}
.yc{bottom:509.158350px;}
.yed{bottom:509.162400px;}
.y67{bottom:509.173200px;}
.y46{bottom:509.175600px;}
.y91{bottom:509.178000px;}
.y128{bottom:520.812600px;}
.y157{bottom:520.875750px;}
.yb{bottom:529.411350px;}
.yec{bottom:529.417800px;}
.y45{bottom:529.423200px;}
.y90{bottom:529.425600px;}
.y31{bottom:529.948800px;}
.yac{bottom:531.011700px;}
.y109{bottom:532.074750px;}
.y127{bottom:535.066350px;}
.y156{bottom:539.382000px;}
.y126{bottom:549.320100px;}
.ya{bottom:549.664350px;}
.y66{bottom:549.673200px;}
.yba{bottom:549.678000px;}
.y44{bottom:549.704400px;}
.y155{bottom:553.635750px;}
.y125{bottom:567.826350px;}
.y154{bottom:567.889500px;}
.y9{bottom:569.917350px;}
.y65{bottom:569.923200px;}
.yb9{bottom:569.925600px;}
.y8f{bottom:569.942400px;}
.y43{bottom:569.952000px;}
.y124{bottom:582.080100px;}
.y153{bottom:586.395750px;}
.y8{bottom:590.170350px;}
.yd3{bottom:590.173200px;}
.yb8{bottom:590.187600px;}
.y8e{bottom:590.190000px;}
.y42{bottom:590.199600px;}
.yeb{bottom:594.668700px;}
.y123{bottom:600.586350px;}
.y152{bottom:600.649500px;}
.y63{bottom:610.423200px;}
.y7{bottom:610.423350px;}
.yb7{bottom:610.435200px;}
.y8d{bottom:610.437600px;}
.y41{bottom:610.447200px;}
.y151{bottom:614.838000px;}
.y122{bottom:614.840100px;}
.y64{bottom:614.918700px;}
.y121{bottom:629.093850px;}
.y62{bottom:630.673200px;}
.y174{bottom:630.680400px;}
.yb6{bottom:630.682800px;}
.y8c{bottom:630.685200px;}
.y40{bottom:630.694800px;}
.y150{bottom:633.344250px;}
.y14f{bottom:647.598000px;}
.y120{bottom:647.600100px;}
.yea{bottom:650.923200px;}
.y6{bottom:650.923350px;}
.yd2{bottom:650.925600px;}
.y173{bottom:650.928600px;}
.yb5{bottom:650.930400px;}
.y8b{bottom:650.932800px;}
.y3f{bottom:650.942400px;}
.y14e{bottom:661.851750px;}
.y11f{bottom:661.853850px;}
.yd1{bottom:671.173200px;}
.y172{bottom:671.176800px;}
.yb4{bottom:671.178000px;}
.y61{bottom:671.180400px;}
.y3e{bottom:671.190000px;}
.y14d{bottom:676.105500px;}
.y11e{bottom:676.107600px;}
.ye9{bottom:691.423200px;}
.y171{bottom:691.425000px;}
.yb3{bottom:691.425600px;}
.y60{bottom:691.428000px;}
.y3d{bottom:691.437600px;}
.yd0{bottom:691.444800px;}
.y14c{bottom:694.611750px;}
.y11d{bottom:694.613850px;}
.y14b{bottom:708.865500px;}
.y11c{bottom:708.867600px;}
.yb2{bottom:711.673200px;}
.y5f{bottom:711.675600px;}
.y3c{bottom:711.685200px;}
.ycf{bottom:711.692400px;}
.y11b{bottom:723.121350px;}
.y14a{bottom:727.371750px;}
.yb0{bottom:731.917800px;}
.y5e{bottom:731.923200px;}
.y3b{bottom:731.932800px;}
.yce{bottom:731.940000px;}
.yb1{bottom:736.568550px;}
.y149{bottom:741.625500px;}
.y11a{bottom:741.627600px;}
.y5c{bottom:752.151600px;}
.y5{bottom:752.165850px;}
.yaf{bottom:752.173200px;}
.y3a{bottom:752.180400px;}
.y8a{bottom:752.182800px;}
.ycd{bottom:752.187600px;}
.y5d{bottom:756.818550px;}
.y148{bottom:760.131750px;}
.y119{bottom:760.133850px;}
.y5b{bottom:772.407000px;}
.y39{bottom:772.428000px;}
.y89{bottom:772.430400px;}
.ycc{bottom:772.435200px;}
.y147{bottom:774.385500px;}
.y118{bottom:774.387600px;}
.y5a{bottom:792.662400px;}
.y4{bottom:792.669600px;}
.yae{bottom:792.673200px;}
.y38{bottom:792.675600px;}
.y88{bottom:792.678000px;}
.ycb{bottom:792.682800px;}
.y146{bottom:792.891750px;}
.y117{bottom:792.893850px;}
.y145{bottom:807.145500px;}
.y116{bottom:807.147600px;}
.y59{bottom:812.917800px;}
.y37{bottom:812.923200px;}
.y170{bottom:812.925000px;}
.y87{bottom:812.925600px;}
.ye8{bottom:812.928000px;}
.yca{bottom:812.930400px;}
.y144{bottom:821.399250px;}
.y115{bottom:821.401350px;}
.y36{bottom:833.173200px;}
.y3{bottom:833.173350px;}
.ye7{bottom:833.175600px;}
.y86{bottom:833.178000px;}
.y143{bottom:839.905500px;}
.y114{bottom:839.907600px;}
.y58{bottom:853.423200px;}
.y85{bottom:853.425600px;}
.y35{bottom:853.428000px;}
.y142{bottom:854.159250px;}
.y113{bottom:854.161350px;}
.yad{bottom:873.673200px;}
.y34{bottom:873.675600px;}
.y33{bottom:893.923200px;}
.y2{bottom:893.923350px;}
.y1{bottom:952.912500px;}
.y20{bottom:952.953150px;}
.y32{bottom:953.019600px;}
.h14{height:25.626348px;}
.h8{height:26.480560px;}
.ha{height:32.550000px;}
.h9{height:34.188000px;}
.hb{height:34.942800px;}
.hd{height:35.830800px;}
.hc{height:36.315000px;}
.h2{height:36.450000px;}
.h12{height:39.258000px;}
.h7{height:40.566600px;}
.h1d{height:40.672800px;}
.hf{height:41.002800px;}
.h1c{height:41.025600px;}
.h6{height:41.641200px;}
.h13{height:43.608348px;}
.h11{height:45.421697px;}
.h1b{height:45.460097px;}
.h18{height:45.469697px;}
.h1a{height:45.488897px;}
.h17{height:45.508097px;}
.h16{height:45.517697px;}
.h10{height:45.527297px;}
.h15{height:45.536897px;}
.h19{height:45.546497px;}
.h5{height:47.220000px;}
.h1e{height:48.164400px;}
.h3{height:49.572000px;}
.he{height:61.538400px;}
.h4{height:82.635000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x13{left:87.535050px;}
.xe{left:89.083350px;}
.x8{left:93.543300px;}
.x4{left:99.911115px;}
.x17{left:109.435950px;}
.xf{left:115.470900px;}
.x5{left:123.585300px;}
.x1b{left:125.599650px;}
.x11{left:134.301450px;}
.x19{left:142.010400px;}
.x1e{left:144.106650px;}
.x1f{left:152.714250px;}
.x1c{left:202.685100px;}
.x1d{left:211.292700px;}
.xd{left:242.730150px;}
.x10{left:299.439000px;}
.x1a{left:308.509050px;}
.xa{left:316.173750px;}
.x21{left:359.295900px;}
.x22{left:372.050700px;}
.xb{left:375.642300px;}
.xc{left:379.807350px;}
.x18{left:388.599150px;}
.x9{left:447.422550px;}
.x23{left:458.975100px;}
.x20{left:479.631750px;}
.x14{left:519.578550px;}
.x15{left:528.186150px;}
.x6{left:543.535950px;}
.x7{left:547.839750px;}
.x2{left:558.753000px;}
.x3{left:563.056800px;}
.x16{left:579.248100px;}
.x12{left:617.370450px;}
@media print{
.v3{vertical-align:-16.694400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.677333pt;}
.v2{vertical-align:21.312000pt;}
.ls13{letter-spacing:-6.467200pt;}
.lse{letter-spacing:-5.514667pt;}
.ls1c{letter-spacing:-3.173333pt;}
.ls10{letter-spacing:-2.005333pt;}
.ls24{letter-spacing:-1.600000pt;}
.ls1b{letter-spacing:-1.493333pt;}
.lsf{letter-spacing:-0.902400pt;}
.ls2{letter-spacing:-0.892800pt;}
.ls25{letter-spacing:-0.840000pt;}
.ls8{letter-spacing:-0.501333pt;}
.ls11{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:-0.292277pt;}
.ls19{letter-spacing:-0.250667pt;}
.ls26{letter-spacing:-0.224000pt;}
.ls4{letter-spacing:-0.197333pt;}
.ls1d{letter-spacing:-0.186667pt;}
.ls22{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.146139pt;}
.ls21{letter-spacing:-0.120000pt;}
.ls23{letter-spacing:-0.080000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000033pt;}
.ls6{letter-spacing:0.033155pt;}
.lsb{letter-spacing:0.035860pt;}
.ls5{letter-spacing:0.197333pt;}
.ls3{letter-spacing:0.545600pt;}
.ls1f{letter-spacing:0.924000pt;}
.ls20{letter-spacing:1.040000pt;}
.lsc{letter-spacing:1.153067pt;}
.ls12{letter-spacing:1.453867pt;}
.ls1e{letter-spacing:2.728000pt;}
.lsa{letter-spacing:3.409067pt;}
.ls14{letter-spacing:5.113600pt;}
.ls17{letter-spacing:36.068179pt;}
.lsd{letter-spacing:36.068729pt;}
.ls15{letter-spacing:36.541667pt;}
.ls16{letter-spacing:37.517730pt;}
.ls18{letter-spacing:39.061685pt;}
.ls0{letter-spacing:56.228179pt;}
.ws48{word-spacing:-14.839467pt;}
.ws47{word-spacing:-14.681600pt;}
.ws49{word-spacing:-14.338133pt;}
.ws60{word-spacing:-13.937067pt;}
.ws1{word-spacing:-13.788800pt;}
.ws61{word-spacing:-12.834133pt;}
.ws0{word-spacing:-10.666667pt;}
.ws3{word-spacing:-9.333333pt;}
.wsb8{word-spacing:-9.146667pt;}
.wse8{word-spacing:-9.040000pt;}
.ws81{word-spacing:-8.960000pt;}
.ws6e{word-spacing:-8.372267pt;}
.wse7{word-spacing:-8.000000pt;}
.wsea{word-spacing:-7.920000pt;}
.ws4{word-spacing:-7.893333pt;}
.wsa3{word-spacing:-7.840000pt;}
.ws1b{word-spacing:-7.696000pt;}
.ws2{word-spacing:-7.466667pt;}
.wseb{word-spacing:-7.160000pt;}
.wse9{word-spacing:-6.400000pt;}
.wsa4{word-spacing:-6.160000pt;}
.ws5f{word-spacing:-5.845547pt;}
.wsa2{word-spacing:-5.699408pt;}
.ws26{word-spacing:-5.596800pt;}
.ws4a{word-spacing:-5.553269pt;}
.ws24{word-spacing:-3.409067pt;}
.ws21{word-spacing:-2.926400pt;}
.ws74{word-spacing:-2.907733pt;}
.ws53{word-spacing:-2.832000pt;}
.ws23{word-spacing:-2.757333pt;}
.ws30{word-spacing:-2.606933pt;}
.ws7b{word-spacing:-2.579200pt;}
.ws2c{word-spacing:-2.506667pt;}
.ws62{word-spacing:-2.406400pt;}
.ws95{word-spacing:-2.306133pt;}
.ws15{word-spacing:-2.281600pt;}
.ws8f{word-spacing:-2.160000pt;}
.ws56{word-spacing:-2.016000pt;}
.wsba{word-spacing:-1.955200pt;}
.wscb{word-spacing:-1.941333pt;}
.wsac{word-spacing:-1.920000pt;}
.ws3d{word-spacing:-1.835200pt;}
.wsa7{word-spacing:-1.804800pt;}
.wsb4{word-spacing:-1.785600pt;}
.ws66{word-spacing:-1.754667pt;}
.wse2{word-spacing:-1.736000pt;}
.ws35{word-spacing:-1.704533pt;}
.ws10{word-spacing:-1.697067pt;}
.ws8b{word-spacing:-1.642667pt;}
.ws19{word-spacing:-1.605333pt;}
.ws92{word-spacing:-1.604267pt;}
.ws7c{word-spacing:-1.587200pt;}
.wscc{word-spacing:-1.568000pt;}
.wsff{word-spacing:-1.560000pt;}
.ws86{word-spacing:-1.554133pt;}
.ws4d{word-spacing:-1.537600pt;}
.wsd{word-spacing:-1.513600pt;}
.ws51{word-spacing:-1.504000pt;}
.ws28{word-spacing:-1.453867pt;}
.wsb6{word-spacing:-1.388800pt;}
.ws96{word-spacing:-1.353600pt;}
.ws1e{word-spacing:-1.289600pt;}
.ws8a{word-spacing:-1.269333pt;}
.ws5b{word-spacing:-1.203200pt;}
.ws4e{word-spacing:-1.190400pt;}
.wsa1{word-spacing:-1.120000pt;}
.ws7a{word-spacing:-1.102933pt;}
.wsc{word-spacing:-1.100800pt;}
.ws52{word-spacing:-1.056000pt;}
.ws12{word-spacing:-1.054933pt;}
.ws55{word-spacing:-0.960000pt;}
.wsb5{word-spacing:-0.942400pt;}
.wsf3{word-spacing:-0.920000pt;}
.wsb0{word-spacing:-0.912000pt;}
.ws1d{word-spacing:-0.892800pt;}
.ws108{word-spacing:-0.880000pt;}
.ws9b{word-spacing:-0.852267pt;}
.ws11b{word-spacing:-0.760000pt;}
.wsd0{word-spacing:-0.752000pt;}
.wsa0{word-spacing:-0.746667pt;}
.ws97{word-spacing:-0.701867pt;}
.ws36{word-spacing:-0.651733pt;}
.ws126{word-spacing:-0.627200pt;}
.ws50{word-spacing:-0.601600pt;}
.ws7e{word-spacing:-0.597333pt;}
.ws127{word-spacing:-0.537600pt;}
.wsaa{word-spacing:-0.501333pt;}
.wsbd{word-spacing:-0.480000pt;}
.ws87{word-spacing:-0.451200pt;}
.ws9f{word-spacing:-0.448000pt;}
.ws4c{word-spacing:-0.446400pt;}
.wsf4{word-spacing:-0.440000pt;}
.ws112{word-spacing:-0.400000pt;}
.ws1c{word-spacing:-0.394667pt;}
.ws3a{word-spacing:-0.384000pt;}
.ws6c{word-spacing:-0.373333pt;}
.ws33{word-spacing:-0.350933pt;}
.ws1f{word-spacing:-0.347200pt;}
.ws39{word-spacing:-0.336000pt;}
.ws106{word-spacing:-0.320000pt;}
.ws7d{word-spacing:-0.250667pt;}
.ws34{word-spacing:-0.150400pt;}
.ws14{word-spacing:-0.148800pt;}
.ws11{word-spacing:-0.091733pt;}
.wscf{word-spacing:-0.050133pt;}
.wsc0{word-spacing:-0.048000pt;}
.wsb7{word-spacing:-0.037333pt;}
.ws6{word-spacing:0.000000pt;}
.ws9d{word-spacing:0.037333pt;}
.wsb3{word-spacing:0.099200pt;}
.wsed{word-spacing:0.120000pt;}
.wsa{word-spacing:0.137600pt;}
.ws3f{word-spacing:0.186667pt;}
.wsdd{word-spacing:0.198400pt;}
.ws25{word-spacing:0.250667pt;}
.ws1a{word-spacing:0.261333pt;}
.ws90{word-spacing:0.288000pt;}
.ws5d{word-spacing:0.292277pt;}
.wsb2{word-spacing:0.297600pt;}
.ws43{word-spacing:0.336000pt;}
.ws6d{word-spacing:0.373333pt;}
.ws6f{word-spacing:0.401067pt;}
.wsc5{word-spacing:0.446400pt;}
.ws73{word-spacing:0.451200pt;}
.ws101{word-spacing:0.480000pt;}
.ws5c{word-spacing:0.501333pt;}
.ws22{word-spacing:0.545600pt;}
.wse{word-spacing:0.550400pt;}
.wsa6{word-spacing:0.551467pt;}
.ws2a{word-spacing:0.601600pt;}
.ws8e{word-spacing:0.624000pt;}
.ws111{word-spacing:0.640000pt;}
.wscd{word-spacing:0.644800pt;}
.ws2d{word-spacing:0.651733pt;}
.ws88{word-spacing:0.672000pt;}
.wsce{word-spacing:0.694400pt;}
.ws42{word-spacing:0.709333pt;}
.wsb9{word-spacing:0.752000pt;}
.ws54{word-spacing:0.768000pt;}
.ws20{word-spacing:0.793600pt;}
.ws32{word-spacing:0.802133pt;}
.wsc8{word-spacing:0.843200pt;}
.ws27{word-spacing:0.852267pt;}
.wse5{word-spacing:0.892800pt;}
.ws71{word-spacing:0.902400pt;}
.wsda{word-spacing:0.952533pt;}
.ws11a{word-spacing:0.960000pt;}
.wsf{word-spacing:1.009067pt;}
.wsbe{word-spacing:1.056000pt;}
.ws13{word-spacing:1.100800pt;}
.wse6{word-spacing:1.120000pt;}
.ws58{word-spacing:1.153067pt;}
.ws44{word-spacing:1.157333pt;}
.wse3{word-spacing:1.190400pt;}
.ws10b{word-spacing:1.200000pt;}
.wsd4{word-spacing:1.253333pt;}
.ws11c{word-spacing:1.280000pt;}
.ws91{word-spacing:1.289600pt;}
.ws94{word-spacing:1.303467pt;}
.ws5a{word-spacing:1.353600pt;}
.ws17{word-spacing:1.388800pt;}
.wse1{word-spacing:1.438400pt;}
.ws38{word-spacing:1.453867pt;}
.wse0{word-spacing:1.488000pt;}
.ws45{word-spacing:1.530667pt;}
.wsc6{word-spacing:1.537600pt;}
.ws69{word-spacing:1.554133pt;}
.ws8d{word-spacing:1.680000pt;}
.wsc3{word-spacing:1.686400pt;}
.wsa5{word-spacing:1.704533pt;}
.ws84{word-spacing:1.754667pt;}
.wsec{word-spacing:1.760000pt;}
.ws16{word-spacing:1.785600pt;}
.ws78{word-spacing:1.854933pt;}
.wsad{word-spacing:1.872000pt;}
.ws10d{word-spacing:1.880000pt;}
.ws80{word-spacing:1.904000pt;}
.ws76{word-spacing:1.905067pt;}
.ws40{word-spacing:1.978667pt;}
.ws2f{word-spacing:2.005333pt;}
.wsc7{word-spacing:2.033600pt;}
.ws63{word-spacing:2.055467pt;}
.ws10c{word-spacing:2.080000pt;}
.ws29{word-spacing:2.105600pt;}
.wsb1{word-spacing:2.132800pt;}
.wsb{word-spacing:2.201600pt;}
.ws9e{word-spacing:2.202667pt;}
.ws67{word-spacing:2.205867pt;}
.ws7f{word-spacing:2.277333pt;}
.wsae{word-spacing:2.304000pt;}
.wsd7{word-spacing:2.306133pt;}
.ws6a{word-spacing:2.356267pt;}
.wsd3{word-spacing:2.456533pt;}
.ws59{word-spacing:2.556800pt;}
.ws46{word-spacing:2.576000pt;}
.ws83{word-spacing:2.657067pt;}
.wse4{word-spacing:2.678400pt;}
.wsdf{word-spacing:2.728000pt;}
.ws77{word-spacing:2.757333pt;}
.ws41{word-spacing:2.800000pt;}
.ws72{word-spacing:2.807467pt;}
.ws9a{word-spacing:2.857600pt;}
.ws2b{word-spacing:2.907733pt;}
.wsab{word-spacing:2.976000pt;}
.wsdb{word-spacing:3.058133pt;}
.ws116{word-spacing:3.080000pt;}
.ws75{word-spacing:3.108267pt;}
.ws11f{word-spacing:3.120000pt;}
.ws4f{word-spacing:3.158400pt;}
.wsf2{word-spacing:3.200000pt;}
.ws37{word-spacing:3.258667pt;}
.wsa9{word-spacing:3.308800pt;}
.ws103{word-spacing:3.360000pt;}
.ws99{word-spacing:3.409067pt;}
.ws65{word-spacing:3.459200pt;}
.ws57{word-spacing:3.472000pt;}
.ws68{word-spacing:3.559467pt;}
.ws9{word-spacing:3.577600pt;}
.ws2e{word-spacing:3.609600pt;}
.wsc9{word-spacing:3.658667pt;}
.ws98{word-spacing:3.659733pt;}
.ws8{word-spacing:3.669333pt;}
.ws124{word-spacing:3.718400pt;}
.wsee{word-spacing:3.720000pt;}
.ws3e{word-spacing:3.733333pt;}
.ws79{word-spacing:3.810133pt;}
.ws89{word-spacing:3.882667pt;}
.wsfc{word-spacing:3.920000pt;}
.wsd8{word-spacing:3.960533pt;}
.ws31{word-spacing:4.060800pt;}
.wsa8{word-spacing:4.110933pt;}
.wsc1{word-spacing:4.166400pt;}
.ws100{word-spacing:4.200000pt;}
.ws5e{word-spacing:4.218667pt;}
.ws107{word-spacing:4.240000pt;}
.ws7{word-spacing:4.311467pt;}
.wsfa{word-spacing:4.360000pt;}
.wsfb{word-spacing:4.440000pt;}
.ws93{word-spacing:4.461867pt;}
.wsd2{word-spacing:4.762667pt;}
.ws115{word-spacing:4.880000pt;}
.ws3b{word-spacing:5.088000pt;}
.ws18{word-spacing:5.108800pt;}
.ws85{word-spacing:5.113600pt;}
.wsf6{word-spacing:5.120000pt;}
.wsd5{word-spacing:5.213867pt;}
.ws104{word-spacing:5.360000pt;}
.wsdc{word-spacing:5.364267pt;}
.wsde{word-spacing:5.406400pt;}
.ws70{word-spacing:5.414400pt;}
.wsf5{word-spacing:5.440000pt;}
.ws64{word-spacing:5.514667pt;}
.wsbb{word-spacing:5.520000pt;}
.wsca{word-spacing:5.600000pt;}
.ws102{word-spacing:5.640000pt;}
.wsc4{word-spacing:5.654400pt;}
.ws11d{word-spacing:5.680000pt;}
.wsaf{word-spacing:5.712000pt;}
.wsf7{word-spacing:5.800000pt;}
.wsd9{word-spacing:5.815467pt;}
.wsd1{word-spacing:5.865600pt;}
.ws9c{word-spacing:6.166400pt;}
.wsf9{word-spacing:6.200000pt;}
.wsd6{word-spacing:6.467200pt;}
.ws114{word-spacing:6.760000pt;}
.ws10a{word-spacing:6.840000pt;}
.wsc2{word-spacing:6.993600pt;}
.wsbc{word-spacing:7.200000pt;}
.ws119{word-spacing:7.280000pt;}
.wsbf{word-spacing:7.296000pt;}
.ws10e{word-spacing:7.320000pt;}
.wsf8{word-spacing:7.360000pt;}
.ws4b{word-spacing:7.440000pt;}
.ws82{word-spacing:7.520000pt;}
.ws6b{word-spacing:7.620267pt;}
.ws117{word-spacing:7.760000pt;}
.ws3c{word-spacing:8.112000pt;}
.ws10f{word-spacing:8.240000pt;}
.wsf0{word-spacing:8.760000pt;}
.wsfe{word-spacing:9.240000pt;}
.ws125{word-spacing:9.273600pt;}
.ws118{word-spacing:9.640000pt;}
.wsef{word-spacing:10.040000pt;}
.ws122{word-spacing:11.840000pt;}
.ws8c{word-spacing:12.384000pt;}
.wsf1{word-spacing:12.440000pt;}
.ws11e{word-spacing:12.880000pt;}
.ws120{word-spacing:13.680000pt;}
.ws121{word-spacing:14.560000pt;}
.ws109{word-spacing:16.520000pt;}
.ws113{word-spacing:16.840000pt;}
.wsfd{word-spacing:18.760000pt;}
.ws105{word-spacing:19.320000pt;}
.ws110{word-spacing:20.480000pt;}
.ws123{word-spacing:41.360000pt;}
.ws5{word-spacing:1815.840000pt;}
._b{margin-left:-16.978298pt;}
._11{margin-left:-15.818667pt;}
._13{margin-left:-14.209067pt;}
._12{margin-left:-7.325120pt;}
._6{margin-left:-6.398400pt;}
._8{margin-left:-5.406933pt;}
._1{margin-left:-3.753600pt;}
._7{margin-left:-2.832000pt;}
._4{margin-left:-1.834667pt;}
._5{margin-left:-0.892800pt;}
._0{width:1.142400pt;}
._3{width:2.706667pt;}
._e{width:3.665067pt;}
._2{width:4.853333pt;}
._f{width:5.975467pt;}
._10{width:6.984000pt;}
._14{width:19.097600pt;}
._c{width:36.064000pt;}
._9{width:56.228179pt;}
._a{width:812.618558pt;}
._d{width:814.631619pt;}
.fsd{font-size:27.984000pt;}
.fs6{font-size:28.916800pt;}
.fsb{font-size:29.227733pt;}
.fse{font-size:37.312000pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:39.466667pt;}
.fs0{font-size:40.000000pt;}
.fsf{font-size:44.800000pt;}
.fs4{font-size:45.866667pt;}
.fsc{font-size:48.000000pt;}
.fs5{font-size:49.600000pt;}
.fsa{font-size:50.133333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:54.400000pt;}
.fs9{font-size:67.200000pt;}
.fs2{font-size:93.333333pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:58.009733pt;}
.yfb{bottom:92.595467pt;}
.y1e{bottom:92.595867pt;}
.y76{bottom:92.596800pt;}
.y57{bottom:92.596933pt;}
.y9c{bottom:92.597200pt;}
.y30{bottom:92.598533pt;}
.ye6{bottom:99.258667pt;}
.y9b{bottom:105.128800pt;}
.yaa{bottom:105.130133pt;}
.y1d{bottom:105.130533pt;}
.yab{bottom:105.131867pt;}
.y56{bottom:108.900533pt;}
.yc9{bottom:108.908533pt;}
.y75{bottom:108.909867pt;}
.yfa{bottom:108.910133pt;}
.y84{bottom:108.911467pt;}
.ye5{bottom:111.791600pt;}
.y1c{bottom:117.665200pt;}
.yf9{bottom:121.439200pt;}
.ya9{bottom:121.441867pt;}
.y9a{bottom:121.443467pt;}
.y112{bottom:121.444800pt;}
.y140{bottom:124.996000pt;}
.y141{bottom:125.002667pt;}
.y55{bottom:125.215200pt;}
.y74{bottom:125.222800pt;}
.yc8{bottom:125.223200pt;}
.y83{bottom:125.224533pt;}
.ye4{bottom:128.104533pt;}
.y2f{bottom:128.602667pt;}
.y99{bottom:133.976533pt;}
.y13f{bottom:137.666000pt;}
.y54{bottom:137.749867pt;}
.yf8{bottom:137.753867pt;}
.yc7{bottom:137.756133pt;}
.ya8{bottom:137.756533pt;}
.y16e{bottom:141.442133pt;}
.y16f{bottom:141.448800pt;}
.y73{bottom:141.535867pt;}
.ye3{bottom:144.417600pt;}
.y2e{bottom:146.600533pt;}
.y53{bottom:150.284533pt;}
.yf7{bottom:150.288533pt;}
.y98{bottom:150.289467pt;}
.ya7{bottom:150.291200pt;}
.y13e{bottom:150.336000pt;}
.yc6{bottom:154.065200pt;}
.y16d{bottom:154.112133pt;}
.y72{bottom:157.848800pt;}
.ye2{bottom:160.732267pt;}
.y52{bottom:162.819200pt;}
.yf6{bottom:162.823200pt;}
.y1b{bottom:164.584133pt;}
.y2d{bottom:164.598400pt;}
.y82{bottom:164.600533pt;}
.y108{bottom:164.611200pt;}
.y97{bottom:166.602533pt;}
.ya6{bottom:166.602800pt;}
.y13d{bottom:166.736933pt;}
.y16c{bottom:166.782133pt;}
.yc5{bottom:170.379867pt;}
.y71{bottom:174.160533pt;}
.y51{bottom:175.353867pt;}
.yf5{bottom:175.357867pt;}
.ye0{bottom:177.043600pt;}
.ye1{bottom:177.045333pt;}
.ya4{bottom:179.135867pt;}
.ya5{bottom:179.137467pt;}
.y13c{bottom:179.406933pt;}
.y1a{bottom:182.588933pt;}
.y2c{bottom:182.593600pt;}
.y81{bottom:182.598400pt;}
.y107{bottom:182.609067pt;}
.yc4{bottom:182.914533pt;}
.y96{bottom:182.915467pt;}
.y16b{bottom:183.224933pt;}
.y50{bottom:187.888533pt;}
.y70{bottom:190.475200pt;}
.yf4{bottom:191.670800pt;}
.ydf{bottom:193.356533pt;}
.yc3{bottom:195.449200pt;}
.ya3{bottom:195.450533pt;}
.y13b{bottom:195.856933pt;}
.y16a{bottom:195.894933pt;}
.y95{bottom:199.230133pt;}
.y4f{bottom:200.423200pt;}
.y29{bottom:200.574400pt;}
.y19{bottom:200.593733pt;}
.y2b{bottom:200.598400pt;}
.y80{bottom:200.604800pt;}
.y106{bottom:200.606933pt;}
.y6f{bottom:203.008133pt;}
.y2a{bottom:204.727600pt;}
.yc2{bottom:207.982133pt;}
.y13a{bottom:208.526933pt;}
.yde{bottom:209.671200pt;}
.y169{bottom:212.260667pt;}
.y4e{bottom:212.956133pt;}
.y111{bottom:218.550400pt;}
.y28{bottom:218.579200pt;}
.y16{bottom:218.593733pt;}
.y18{bottom:218.598533pt;}
.y7f{bottom:218.602667pt;}
.y105{bottom:218.604800pt;}
.y6e{bottom:219.322800pt;}
.y139{bottom:221.196933pt;}
.y17{bottom:222.727600pt;}
.yc1{bottom:224.295200pt;}
.y168{bottom:224.930667pt;}
.y4d{bottom:229.270800pt;}
.y138{bottom:233.866933pt;}
.y110{bottom:236.555200pt;}
.y27{bottom:236.584000pt;}
.y15{bottom:236.598533pt;}
.y7e{bottom:236.600533pt;}
.y104{bottom:236.602667pt;}
.y167{bottom:237.600667pt;}
.yc0{bottom:240.609867pt;}
.y137{bottom:250.316933pt;}
.y166{bottom:254.050667pt;}
.y10f{bottom:254.560000pt;}
.y26{bottom:254.588800pt;}
.ya2{bottom:254.598400pt;}
.y103{bottom:254.600533pt;}
.ya1{bottom:254.602667pt;}
.y7d{bottom:254.604800pt;}
.y136{bottom:262.986933pt;}
.y165{bottom:266.720667pt;}
.y10e{bottom:272.564800pt;}
.ydd{bottom:272.588800pt;}
.y25{bottom:272.593600pt;}
.y102{bottom:272.598400pt;}
.y94{bottom:272.600533pt;}
.y7c{bottom:272.602667pt;}
.y135{bottom:275.656933pt;}
.y4c{bottom:276.727600pt;}
.y164{bottom:279.390667pt;}
.y10d{bottom:290.569600pt;}
.y100{bottom:290.588800pt;}
.ydc{bottom:290.593600pt;}
.y24{bottom:290.598400pt;}
.y7b{bottom:290.600533pt;}
.y6d{bottom:290.604800pt;}
.ybf{bottom:290.611200pt;}
.y163{bottom:292.060667pt;}
.y134{bottom:292.106933pt;}
.y101{bottom:294.727600pt;}
.y162{bottom:304.730667pt;}
.y133{bottom:304.776933pt;}
.y14{bottom:308.563867pt;}
.y10c{bottom:308.574400pt;}
.y93{bottom:308.588800pt;}
.yff{bottom:308.593600pt;}
.ya0{bottom:308.598400pt;}
.y6c{bottom:308.602667pt;}
.ybe{bottom:308.609067pt;}
.ydb{bottom:312.727600pt;}
.y161{bottom:321.180667pt;}
.y132{bottom:321.226933pt;}
.y13{bottom:326.566533pt;}
.yf3{bottom:326.574400pt;}
.y10b{bottom:326.579200pt;}
.y92{bottom:326.593600pt;}
.y23{bottom:326.598400pt;}
.y6b{bottom:326.600533pt;}
.y9f{bottom:326.602667pt;}
.ybd{bottom:326.606933pt;}
.yfe{bottom:330.727600pt;}
.y160{bottom:333.850667pt;}
.y131{bottom:333.896933pt;}
.y12{bottom:344.569200pt;}
.yf2{bottom:344.579200pt;}
.y10a{bottom:344.584000pt;}
.yfd{bottom:344.588800pt;}
.yd9{bottom:344.593600pt;}
.y4b{bottom:344.598400pt;}
.y6a{bottom:344.600533pt;}
.y7a{bottom:344.602667pt;}
.ybc{bottom:344.604800pt;}
.y15f{bottom:346.520667pt;}
.y130{bottom:346.566933pt;}
.yda{bottom:348.727600pt;}
.y11{bottom:362.571867pt;}
.yf1{bottom:362.584000pt;}
.yd7{bottom:362.588800pt;}
.yfc{bottom:362.593600pt;}
.y4a{bottom:362.598400pt;}
.y79{bottom:362.600533pt;}
.y9e{bottom:362.602667pt;}
.y15e{bottom:362.970667pt;}
.y12f{bottom:363.009733pt;}
.yd8{bottom:366.727600pt;}
.y15d{bottom:375.640667pt;}
.y12e{bottom:375.679733pt;}
.y10{bottom:380.574533pt;}
.y68{bottom:380.588800pt;}
.yd6{bottom:380.593600pt;}
.y49{bottom:380.598400pt;}
.y9d{bottom:380.600533pt;}
.y78{bottom:380.602667pt;}
.y69{bottom:384.727600pt;}
.y12d{bottom:388.254533pt;}
.y15c{bottom:392.090667pt;}
.yf{bottom:398.577200pt;}
.y22{bottom:398.593600pt;}
.y48{bottom:398.598400pt;}
.y77{bottom:398.600533pt;}
.y12c{bottom:400.924533pt;}
.y15b{bottom:404.760667pt;}
.yef{bottom:416.579200pt;}
.ye{bottom:416.579867pt;}
.y21{bottom:416.598400pt;}
.y12b{bottom:417.374533pt;}
.yf0{bottom:420.727600pt;}
.y15a{bottom:421.210667pt;}
.y12a{bottom:433.824533pt;}
.y159{bottom:433.880667pt;}
.yd{bottom:434.582533pt;}
.yee{bottom:434.584000pt;}
.yd4{bottom:434.598400pt;}
.y47{bottom:434.602667pt;}
.ybb{bottom:434.604800pt;}
.yd5{bottom:438.594400pt;}
.y129{bottom:446.494533pt;}
.y158{bottom:450.330667pt;}
.yc{bottom:452.585200pt;}
.yed{bottom:452.588800pt;}
.y67{bottom:452.598400pt;}
.y46{bottom:452.600533pt;}
.y91{bottom:452.602667pt;}
.y128{bottom:462.944533pt;}
.y157{bottom:463.000667pt;}
.yb{bottom:470.587867pt;}
.yec{bottom:470.593600pt;}
.y45{bottom:470.598400pt;}
.y90{bottom:470.600533pt;}
.y31{bottom:471.065600pt;}
.yac{bottom:472.010400pt;}
.y109{bottom:472.955333pt;}
.y127{bottom:475.614533pt;}
.y156{bottom:479.450667pt;}
.y126{bottom:488.284533pt;}
.ya{bottom:488.590533pt;}
.y66{bottom:488.598400pt;}
.yba{bottom:488.602667pt;}
.y44{bottom:488.626133pt;}
.y155{bottom:492.120667pt;}
.y125{bottom:504.734533pt;}
.y154{bottom:504.790667pt;}
.y9{bottom:506.593200pt;}
.y65{bottom:506.598400pt;}
.yb9{bottom:506.600533pt;}
.y8f{bottom:506.615467pt;}
.y43{bottom:506.624000pt;}
.y124{bottom:517.404533pt;}
.y153{bottom:521.240667pt;}
.y8{bottom:524.595867pt;}
.yd3{bottom:524.598400pt;}
.yb8{bottom:524.611200pt;}
.y8e{bottom:524.613333pt;}
.y42{bottom:524.621867pt;}
.yeb{bottom:528.594400pt;}
.y123{bottom:533.854533pt;}
.y152{bottom:533.910667pt;}
.y63{bottom:542.598400pt;}
.y7{bottom:542.598533pt;}
.yb7{bottom:542.609067pt;}
.y8d{bottom:542.611200pt;}
.y41{bottom:542.619733pt;}
.y151{bottom:546.522667pt;}
.y122{bottom:546.524533pt;}
.y64{bottom:546.594400pt;}
.y121{bottom:559.194533pt;}
.y62{bottom:560.598400pt;}
.y174{bottom:560.604800pt;}
.yb6{bottom:560.606933pt;}
.y8c{bottom:560.609067pt;}
.y40{bottom:560.617600pt;}
.y150{bottom:562.972667pt;}
.y14f{bottom:575.642667pt;}
.y120{bottom:575.644533pt;}
.yea{bottom:578.598400pt;}
.y6{bottom:578.598533pt;}
.yd2{bottom:578.600533pt;}
.y173{bottom:578.603200pt;}
.yb5{bottom:578.604800pt;}
.y8b{bottom:578.606933pt;}
.y3f{bottom:578.615467pt;}
.y14e{bottom:588.312667pt;}
.y11f{bottom:588.314533pt;}
.yd1{bottom:596.598400pt;}
.y172{bottom:596.601600pt;}
.yb4{bottom:596.602667pt;}
.y61{bottom:596.604800pt;}
.y3e{bottom:596.613333pt;}
.y14d{bottom:600.982667pt;}
.y11e{bottom:600.984533pt;}
.ye9{bottom:614.598400pt;}
.y171{bottom:614.600000pt;}
.yb3{bottom:614.600533pt;}
.y60{bottom:614.602667pt;}
.y3d{bottom:614.611200pt;}
.yd0{bottom:614.617600pt;}
.y14c{bottom:617.432667pt;}
.y11d{bottom:617.434533pt;}
.y14b{bottom:630.102667pt;}
.y11c{bottom:630.104533pt;}
.yb2{bottom:632.598400pt;}
.y5f{bottom:632.600533pt;}
.y3c{bottom:632.609067pt;}
.ycf{bottom:632.615467pt;}
.y11b{bottom:642.774533pt;}
.y14a{bottom:646.552667pt;}
.yb0{bottom:650.593600pt;}
.y5e{bottom:650.598400pt;}
.y3b{bottom:650.606933pt;}
.yce{bottom:650.613333pt;}
.yb1{bottom:654.727600pt;}
.y149{bottom:659.222667pt;}
.y11a{bottom:659.224533pt;}
.y5c{bottom:668.579200pt;}
.y5{bottom:668.591867pt;}
.yaf{bottom:668.598400pt;}
.y3a{bottom:668.604800pt;}
.y8a{bottom:668.606933pt;}
.ycd{bottom:668.611200pt;}
.y5d{bottom:672.727600pt;}
.y148{bottom:675.672667pt;}
.y119{bottom:675.674533pt;}
.y5b{bottom:686.584000pt;}
.y39{bottom:686.602667pt;}
.y89{bottom:686.604800pt;}
.ycc{bottom:686.609067pt;}
.y147{bottom:688.342667pt;}
.y118{bottom:688.344533pt;}
.y5a{bottom:704.588800pt;}
.y4{bottom:704.595200pt;}
.yae{bottom:704.598400pt;}
.y38{bottom:704.600533pt;}
.y88{bottom:704.602667pt;}
.ycb{bottom:704.606933pt;}
.y146{bottom:704.792667pt;}
.y117{bottom:704.794533pt;}
.y145{bottom:717.462667pt;}
.y116{bottom:717.464533pt;}
.y59{bottom:722.593600pt;}
.y37{bottom:722.598400pt;}
.y170{bottom:722.600000pt;}
.y87{bottom:722.600533pt;}
.ye8{bottom:722.602667pt;}
.yca{bottom:722.604800pt;}
.y144{bottom:730.132667pt;}
.y115{bottom:730.134533pt;}
.y36{bottom:740.598400pt;}
.y3{bottom:740.598533pt;}
.ye7{bottom:740.600533pt;}
.y86{bottom:740.602667pt;}
.y143{bottom:746.582667pt;}
.y114{bottom:746.584533pt;}
.y58{bottom:758.598400pt;}
.y85{bottom:758.600533pt;}
.y35{bottom:758.602667pt;}
.y142{bottom:759.252667pt;}
.y113{bottom:759.254533pt;}
.yad{bottom:776.598400pt;}
.y34{bottom:776.600533pt;}
.y33{bottom:794.598400pt;}
.y2{bottom:794.598533pt;}
.y1{bottom:847.033333pt;}
.y20{bottom:847.069467pt;}
.y32{bottom:847.128533pt;}
.h14{height:22.778976pt;}
.h8{height:23.538275pt;}
.ha{height:28.933333pt;}
.h9{height:30.389333pt;}
.hb{height:31.060267pt;}
.hd{height:31.849600pt;}
.hc{height:32.280000pt;}
.h2{height:32.400000pt;}
.h12{height:34.896000pt;}
.h7{height:36.059200pt;}
.h1d{height:36.153600pt;}
.hf{height:36.446933pt;}
.h1c{height:36.467200pt;}
.h6{height:37.014400pt;}
.h13{height:38.762976pt;}
.h11{height:40.374842pt;}
.h1b{height:40.408975pt;}
.h18{height:40.417508pt;}
.h1a{height:40.434575pt;}
.h17{height:40.451642pt;}
.h16{height:40.460175pt;}
.h10{height:40.468708pt;}
.h15{height:40.477242pt;}
.h19{height:40.485775pt;}
.h5{height:41.973333pt;}
.h1e{height:42.812800pt;}
.h3{height:44.064000pt;}
.he{height:54.700800pt;}
.h4{height:73.453333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x13{left:77.808933pt;}
.xe{left:79.185200pt;}
.x8{left:83.149600pt;}
.x4{left:88.809880pt;}
.x17{left:97.276400pt;}
.xf{left:102.640800pt;}
.x5{left:109.853600pt;}
.x1b{left:111.644133pt;}
.x11{left:119.379067pt;}
.x19{left:126.231467pt;}
.x1e{left:128.094800pt;}
.x1f{left:135.746000pt;}
.x1c{left:180.164533pt;}
.x1d{left:187.815733pt;}
.xd{left:215.760133pt;}
.x10{left:266.168000pt;}
.x1a{left:274.230267pt;}
.xa{left:281.043333pt;}
.x21{left:319.374133pt;}
.x22{left:330.711733pt;}
.xb{left:333.904267pt;}
.xc{left:337.606533pt;}
.x18{left:345.421467pt;}
.x9{left:397.708933pt;}
.x23{left:407.977867pt;}
.x20{left:426.339333pt;}
.x14{left:461.847600pt;}
.x15{left:469.498800pt;}
.x6{left:483.143067pt;}
.x7{left:486.968667pt;}
.x2{left:496.669333pt;}
.x3{left:500.494933pt;}
.x16{left:514.887200pt;}
.x12{left:548.773733pt;}
}




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