
    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_fdc88c1fdba786d0666e2b02.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_93354797da03620ed1473bd1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.100586;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_7e9afdd0827f51d420c3fc65.woff')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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_57b63c6f18ec87e2597575da.woff')format("woff");}.ff4{font-family:ff4;line-height:0.959473;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_08df154c93eb73eb4394f298.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_08df154c93eb73eb4394f298.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m7{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-1.566000px;}
.ls15{letter-spacing:-1.211040px;}
.ls22{letter-spacing:-0.993600px;}
.ls1b{letter-spacing:-0.927360px;}
.ls1d{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.648000px;}
.ls18{letter-spacing:-0.432000px;}
.ls14{letter-spacing:-0.334080px;}
.ls2e{letter-spacing:-0.331200px;}
.ls17{letter-spacing:-0.324000px;}
.ls2d{letter-spacing:-0.264960px;}
.ls13{letter-spacing:-0.250560px;}
.ls16{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.198720px;}
.ls1f{letter-spacing:-0.162000px;}
.ls19{letter-spacing:-0.066240px;}
.ls21{letter-spacing:-0.054000px;}
.ls12{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.057720px;}
.ls11{letter-spacing:0.066240px;}
.ls10{letter-spacing:0.108000px;}
.ls2c{letter-spacing:0.198720px;}
.lsd{letter-spacing:0.204480px;}
.lse{letter-spacing:0.270720px;}
.ls2f{letter-spacing:0.331200px;}
.ls30{letter-spacing:0.861120px;}
.ls1c{letter-spacing:0.927360px;}
.ls39{letter-spacing:0.993600px;}
.lsa{letter-spacing:28.748160px;}
.ls7{letter-spacing:29.543040px;}
.ls29{letter-spacing:54.780480px;}
.ls26{letter-spacing:74.652480px;}
.ls23{letter-spacing:74.917440px;}
.ls2b{letter-spacing:136.785600px;}
.ls2a{letter-spacing:143.343360px;}
.ls34{letter-spacing:162.685440px;}
.lsb{letter-spacing:172.385400px;}
.ls31{letter-spacing:174.012480px;}
.ls4{letter-spacing:180.636480px;}
.ls6{letter-spacing:187.856640px;}
.ls8{letter-spacing:232.634880px;}
.ls0{letter-spacing:232.740000px;}
.ls2{letter-spacing:252.705600px;}
.ls27{letter-spacing:262.707840px;}
.ls32{letter-spacing:408.237120px;}
.ls3{letter-spacing:415.589760px;}
.ls1{letter-spacing:444.205440px;}
.ls5{letter-spacing:475.272000px;}
.ls25{letter-spacing:535.947840px;}
.ls9{letter-spacing:587.416320px;}
.lsc{letter-spacing:646.701120px;}
.ls36{letter-spacing:768.847680px;}
.ls38{letter-spacing:847.408320px;}
.ls33{letter-spacing:966.971520px;}
.ls24{letter-spacing:1212.192000px;}
.ls28{letter-spacing:1254.850560px;}
.ls35{letter-spacing:1604.531520px;}
.ls37{letter-spacing:2045.822400px;}
.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;}
}
.ws28{word-spacing:-17.487360px;}
.ws1{word-spacing:-16.626240px;}
.ws3{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.493760px;}
.ws2{word-spacing:-16.361280px;}
.ws27{word-spacing:-16.228800px;}
.ws0{word-spacing:-15.632640px;}
.ws4{word-spacing:-13.608000px;}
.ws2d{word-spacing:-3.643200px;}
.ws3f{word-spacing:-3.510720px;}
.ws32{word-spacing:-2.914560px;}
.ws33{word-spacing:-2.782080px;}
.ws38{word-spacing:-2.252160px;}
.ws29{word-spacing:-2.119680px;}
.ws2f{word-spacing:-1.523520px;}
.ws12{word-spacing:-1.391040px;}
.ws1b{word-spacing:-1.258560px;}
.ws37{word-spacing:-1.192320px;}
.ws1a{word-spacing:-1.126080px;}
.ws2a{word-spacing:-0.927360px;}
.ws1d{word-spacing:-0.794880px;}
.ws39{word-spacing:-0.662400px;}
.ws9{word-spacing:-0.596160px;}
.wsb{word-spacing:-0.529920px;}
.ws41{word-spacing:-0.463680px;}
.ws1f{word-spacing:-0.090000px;}
.ws23{word-spacing:-0.066240px;}
.ws6{word-spacing:0.000000px;}
.ws16{word-spacing:0.066240px;}
.ws22{word-spacing:0.162000px;}
.wsf{word-spacing:0.198720px;}
.ws30{word-spacing:0.662400px;}
.wsa{word-spacing:0.794880px;}
.ws15{word-spacing:0.927360px;}
.ws31{word-spacing:0.993600px;}
.ws8{word-spacing:1.188000px;}
.ws7{word-spacing:1.296000px;}
.ws17{word-spacing:1.391040px;}
.ws13{word-spacing:1.523520px;}
.ws2b{word-spacing:1.656000px;}
.ws35{word-spacing:1.722240px;}
.ws1c{word-spacing:2.119680px;}
.ws2e{word-spacing:2.252160px;}
.wsc{word-spacing:2.384640px;}
.wsd{word-spacing:2.848320px;}
.ws10{word-spacing:2.980800px;}
.ws19{word-spacing:3.047040px;}
.ws3b{word-spacing:3.113280px;}
.ws36{word-spacing:3.378240px;}
.ws21{word-spacing:3.510720px;}
.ws14{word-spacing:3.643200px;}
.ws3c{word-spacing:3.775680px;}
.ws11{word-spacing:4.239360px;}
.ws20{word-spacing:4.371840px;}
.ws18{word-spacing:4.504320px;}
.ws34{word-spacing:4.570560px;}
.ws2c{word-spacing:5.696640px;}
.ws3e{word-spacing:5.829120px;}
.wse{word-spacing:5.961600px;}
.ws3a{word-spacing:6.027840px;}
.ws3d{word-spacing:6.690240px;}
.ws26{word-spacing:7.286400px;}
.ws40{word-spacing:7.485120px;}
.ws25{word-spacing:7.882560px;}
.ws1e{word-spacing:8.015040px;}
.ws24{word-spacing:8.147520px;}
._56{margin-left:-7.621632px;}
._55{margin-left:-3.337344px;}
._54{margin-left:-2.181888px;}
._2{margin-left:-1.127520px;}
._6{width:1.344600px;}
._5{width:2.614176px;}
._53{width:5.147400px;}
._52{width:6.473400px;}
._57{width:10.803960px;}
._3a{width:25.853472px;}
._8c{width:27.324000px;}
._3c{width:29.450304px;}
._37{width:40.247424px;}
._9{width:41.724576px;}
._1c{width:44.606016px;}
._d{width:51.806304px;}
._16{width:55.442880px;}
._1e{width:60.444000px;}
._40{width:62.576928px;}
._12{width:66.935520px;}
._34{width:70.505856px;}
._2d{width:71.519328px;}
._4a{width:73.360800px;}
._88{width:75.712320px;}
._8a{width:81.256608px;}
._31{width:82.362816px;}
._38{width:86.317344px;}
._3d{width:87.787872px;}
._86{width:90.006912px;}
._b{width:92.126592px;}
._60{width:93.570624px;}
._87{width:97.876224px;}
._e{width:101.506176px;}
._3f{width:110.812896px;}
._49{width:115.164864px;}
._45{width:117.330912px;}
._48{width:120.927744px;}
._72{width:123.140160px;}
._2e{width:124.173504px;}
._33{width:128.068416px;}
._1f{width:129.519072px;}
._4c{width:135.354816px;}
._4b{width:137.454624px;}
._1d{width:139.633920px;}
._82{width:144.105120px;}
._62{width:147.648960px;}
._41{width:151.146432px;}
._8b{width:155.385792px;}
._1a{width:156.909312px;}
._4f{width:164.937600px;}
._11{width:166.977792px;}
._10{width:169.190208px;}
._96{width:183.524544px;}
._65{width:186.458976px;}
._66{width:190.704960px;}
._5c{width:194.328288px;}
._f{width:197.249472px;}
._8e{width:198.686880px;}
._2c{width:201.124512px;}
._23{width:202.343328px;}
._91{width:205.231392px;}
._19{width:207.311328px;}
._4d{width:209.517120px;}
._64{width:214.557984px;}
._7c{width:215.975520px;}
._c{width:217.419552px;}
._42{width:218.651616px;}
._89{width:221.009760px;}
._5d{width:243.710208px;}
._47{width:246.849984px;}
._4e{width:249.857280px;}
._93{width:251.182080px;}
._5e{width:252.645984px;}
._97{width:262.098432px;}
._2f{width:265.291200px;}
._92{width:266.331168px;}
._39{width:269.941248px;}
._3e{width:272.100672px;}
._a0{width:273.571200px;}
._7d{width:275.028480px;}
._5b{width:277.141536px;}
._74{width:278.612064px;}
._46{width:284.480928px;}
._7a{width:285.838848px;}
._9b{width:290.833344px;}
._76{width:301.670208px;}
._20{width:305.167680px;}
._70{width:306.724320px;}
._5f{width:310.950432px;}
._a{width:313.202592px;}
._1b{width:318.137472px;}
._36{width:337.578912px;}
._8f{width:343.401408px;}
._61{width:344.845440px;}
._94{width:347.018112px;}
._95{width:349.157664px;}
._43{width:353.522880px;}
._32{width:355.642560px;}
._67{width:386.642880px;}
._2a{width:390.219840px;}
._35{width:399.572928px;}
._73{width:405.368928px;}
._30{width:417.179520px;}
._7b{width:419.815872px;}
._7e{width:436.832928px;}
._24{width:450.630720px;}
._9e{width:456.592320px;}
._3b{width:460.719072px;}
._78{width:465.865920px;}
._6a{width:474.543360px;}
._80{width:480.240000px;}
._69{width:481.723776px;}
._77{width:504.735552px;}
._71{width:550.851840px;}
._59{width:558.601920px;}
._17{width:565.225920px;}
._50{width:589.006080px;}
._8{width:591.920640px;}
._28{width:597.617280px;}
._9a{width:603.347040px;}
._6d{width:642.925440px;}
._15{width:652.331520px;}
._9f{width:658.869408px;}
._9c{width:687.597696px;}
._81{width:696.977280px;}
._2b{width:722.877120px;}
._79{width:748.114560px;}
._6c{width:758.845440px;}
._6f{width:778.982400px;}
._84{width:791.223552px;}
._5a{width:834.292800px;}
._90{width:840.267648px;}
._a1{width:848.865600px;}
._3{width:913.750560px;}
._85{width:934.513920px;}
._6e{width:946.039680px;}
._7f{width:977.040000px;}
._14{width:979.954560px;}
._4{width:995.516640px;}
._9d{width:1017.446400px;}
._18{width:1018.704960px;}
._27{width:1021.023360px;}
._25{width:1057.455360px;}
._75{width:1080.109440px;}
._6b{width:1108.142208px;}
._0{width:1141.551360px;}
._98{width:1182.715200px;}
._29{width:1189.272960px;}
._1{width:1193.876640px;}
._21{width:1205.303040px;}
._51{width:1215.437760px;}
._68{width:1233.653760px;}
._8d{width:1234.779840px;}
._22{width:1296.714240px;}
._63{width:1300.291200px;}
._7{width:1451.450880px;}
._83{width:1469.600640px;}
._44{width:1586.712960px;}
._99{width:1611.155520px;}
._13{width:1645.931520px;}
._26{width:1674.216000px;}
._58{width:1964.082240px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(23,54,93);}
.fc0{color:transparent;}
.fs4{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.yb8{bottom:65.692800px;}
.y81{bottom:65.695680px;}
.y5{bottom:65.700000px;}
.y35{bottom:65.701440px;}
.y57{bottom:99.775440px;}
.y80{bottom:99.776160px;}
.y2b{bottom:101.532240px;}
.y34{bottom:101.537280px;}
.y56{bottom:120.111120px;}
.y7f{bottom:120.111840px;}
.y2a{bottom:121.867920px;}
.y33{bottom:121.872960px;}
.y9c{bottom:122.597280px;}
.y55{bottom:140.446800px;}
.y7e{bottom:140.447520px;}
.y9b{bottom:140.962320px;}
.y29{bottom:142.385760px;}
.y32{bottom:142.390800px;}
.y54{bottom:160.964640px;}
.y7d{bottom:160.965360px;}
.y9a{bottom:174.794400px;}
.y28{bottom:176.400000px;}
.y31{bottom:176.421600px;}
.y53{bottom:181.300320px;}
.y7c{bottom:181.301040px;}
.y27{bottom:196.939440px;}
.y52{bottom:201.636000px;}
.y7b{bottom:201.636720px;}
.y99{bottom:208.808640px;}
.y26{bottom:217.275120px;}
.y51{bottom:222.153840px;}
.y7a{bottom:222.154560px;}
.y25{bottom:237.610800px;}
.yb7{bottom:242.470800px;}
.y98{bottom:242.475120px;}
.y79{bottom:242.490240px;}
.y24{bottom:258.128640px;}
.yb6{bottom:262.806480px;}
.y97{bottom:262.810800px;}
.y78{bottom:262.825920px;}
.y23{bottom:278.464320px;}
.yb5{bottom:283.324320px;}
.y50{bottom:283.343040px;}
.y77{bottom:283.343760px;}
.y22{bottom:298.800000px;}
.y21{bottom:298.802160px;}
.yb4{bottom:303.660000px;}
.y96{bottom:303.664320px;}
.y4f{bottom:303.678720px;}
.y76{bottom:303.679440px;}
.y20{bottom:319.320000px;}
.y1f{bottom:319.324320px;}
.y95{bottom:324.000000px;}
.yb3{bottom:324.002160px;}
.y94{bottom:324.002880px;}
.y4e{bottom:324.014400px;}
.y75{bottom:324.015120px;}
.y1e{bottom:339.660000px;}
.y1d{bottom:339.666480px;}
.y30{bottom:339.667920px;}
.yb2{bottom:344.520000px;}
.y93{bottom:344.520720px;}
.yb1{bottom:344.524320px;}
.y4d{bottom:344.714400px;}
.y74{bottom:344.715120px;}
.y1c{bottom:360.184320px;}
.y2f{bottom:360.185760px;}
.yb0{bottom:364.860000px;}
.y92{bottom:364.872960px;}
.yaf{bottom:364.877280px;}
.y4c{bottom:378.380880px;}
.y73{bottom:378.381600px;}
.y91{bottom:385.208640px;}
.yae{bottom:385.212960px;}
.y1b{bottom:394.198560px;}
.y2e{bottom:394.200000px;}
.y2d{bottom:394.202160px;}
.y4b{bottom:398.716560px;}
.y72{bottom:398.717280px;}
.y90{bottom:405.726480px;}
.yad{bottom:405.730800px;}
.y2c{bottom:414.715500px;}
.y1a{bottom:414.716400px;}
.y4a{bottom:419.234400px;}
.y71{bottom:419.235120px;}
.y8f{bottom:426.062160px;}
.yac{bottom:426.066480px;}
.y19{bottom:435.118320px;}
.y49{bottom:439.570080px;}
.y70{bottom:439.570800px;}
.y8e{bottom:446.397840px;}
.yab{bottom:446.402160px;}
.y18{bottom:455.454000px;}
.y48{bottom:459.905760px;}
.y6f{bottom:459.906480px;}
.yaa{bottom:466.920000px;}
.ya9{bottom:466.965330px;}
.y8d{bottom:466.965360px;}
.y17{bottom:475.971840px;}
.y47{bottom:480.423600px;}
.y6e{bottom:480.424320px;}
.ya8{bottom:487.483170px;}
.y8c{bottom:487.483200px;}
.y16{bottom:496.307520px;}
.y6d{bottom:500.760000px;}
.y6c{bottom:500.770800px;}
.y46{bottom:500.775840px;}
.y15{bottom:516.643200px;}
.y6b{bottom:521.106480px;}
.ya7{bottom:521.149650px;}
.y8b{bottom:521.149680px;}
.y14{bottom:537.161040px;}
.y6a{bottom:541.624320px;}
.y45{bottom:541.629360px;}
.ya6{bottom:541.667490px;}
.y8a{bottom:541.667520px;}
.y13{bottom:557.496720px;}
.y69{bottom:561.960000px;}
.y68{bottom:561.970800px;}
.y44{bottom:561.981600px;}
.ya5{bottom:562.003170px;}
.y89{bottom:562.003200px;}
.y12{bottom:577.832400px;}
.y67{bottom:582.306480px;}
.y43{bottom:582.317280px;}
.ya4{bottom:582.338850px;}
.y88{bottom:582.338880px;}
.y11{bottom:598.350240px;}
.y66{bottom:602.824320px;}
.y42{bottom:602.835120px;}
.ya3{bottom:602.856690px;}
.y87{bottom:602.856720px;}
.y10{bottom:618.685920px;}
.y65{bottom:623.160000px;}
.y64{bottom:623.164320px;}
.y41{bottom:623.170800px;}
.ya2{bottom:623.192370px;}
.y86{bottom:623.192400px;}
.yf{bottom:639.021600px;}
.y63{bottom:643.500000px;}
.y62{bottom:643.502160px;}
.y40{bottom:643.506480px;}
.ya1{bottom:643.528050px;}
.y85{bottom:643.528080px;}
.ye{bottom:659.539440px;}
.y61{bottom:664.020000px;}
.y3f{bottom:664.024320px;}
.ya0{bottom:664.045890px;}
.y84{bottom:664.045920px;}
.yd{bottom:679.875120px;}
.y3e{bottom:684.360000px;}
.y60{bottom:684.364320px;}
.y9f{bottom:684.381570px;}
.y83{bottom:684.381600px;}
.yc{bottom:700.210800px;}
.y3d{bottom:704.700000px;}
.y5f{bottom:704.717250px;}
.y3c{bottom:704.717280px;}
.yb{bottom:720.728640px;}
.y5e{bottom:725.417250px;}
.y3b{bottom:725.417280px;}
.ya{bottom:741.064320px;}
.y5d{bottom:759.083730px;}
.y3a{bottom:759.083760px;}
.y9{bottom:761.400000px;}
.y5c{bottom:779.419410px;}
.y39{bottom:779.419440px;}
.y8{bottom:799.380000px;}
.y5b{bottom:799.937250px;}
.y38{bottom:799.937280px;}
.y5a{bottom:820.272930px;}
.y37{bottom:820.272960px;}
.y7{bottom:828.900000px;}
.y59{bottom:840.603600px;}
.y9e{bottom:840.605760px;}
.y82{bottom:840.608640px;}
.y6{bottom:858.060000px;}
.y58{bottom:861.121440px;}
.y9d{bottom:861.123600px;}
.y36{bottom:861.126480px;}
.y4{bottom:907.920000px;}
.y3{bottom:927.540000px;}
.y2{bottom:943.740000px;}
.y1{bottom:958.319850px;}
.h3{height:34.969922px;}
.h2{height:34.990313px;}
.h5{height:45.219727px;}
.h4{height:45.246094px;}
.h9{height:46.122187px;}
.h6{height:55.469531px;}
.he{height:55.480931px;}
.ha{height:55.487531px;}
.hc{height:55.489571px;}
.hd{height:55.501875px;}
.h8{height:56.019375px;}
.hb{height:65.010937px;}
.h7{height:75.410156px;}
.h0{height:1020.600030px;}
.h1{height:1020.750000px;}
.w0{width:722.880015px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:89.280000px;}
.x57{left:96.140190px;}
.x1b{left:99.896220px;}
.x1e{left:104.399280px;}
.x2e{left:106.241790px;}
.x19{left:108.188340px;}
.x12{left:112.311780px;}
.x54{left:118.082190px;}
.x1c{left:120.600600px;}
.xa{left:124.382700px;}
.x1f{left:127.103040px;}
.x24{left:128.864910px;}
.x58{left:129.972270px;}
.x29{left:138.053550px;}
.x2f{left:142.044510px;}
.xb{left:144.360000px;}
.x3e{left:145.620000px;}
.x21{left:147.604320px;}
.x55{left:152.642910px;}
.x1{left:154.977000px;}
.x60{left:159.296550px;}
.x66{left:163.260000px;}
.x33{left:168.476970px;}
.x6{left:170.280000px;}
.x4a{left:173.160000px;}
.xe{left:174.593940px;}
.x5d{left:183.626670px;}
.x20{left:187.381440px;}
.x59{left:188.843070px;}
.x1a{left:191.932260px;}
.x10{left:199.251780px;}
.x3f{left:202.860000px;}
.x5a{left:210.271710px;}
.x5e{left:212.027070px;}
.x3c{left:213.122730px;}
.xf{left:216.540420px;}
.x4b{left:225.006450px;}
.x11{left:228.248340px;}
.x38{left:231.140010px;}
.x67{left:235.797900px;}
.x32{left:238.144890px;}
.x39{left:241.937130px;}
.x45{left:243.720000px;}
.x16{left:246.364980px;}
.x14{left:249.842580px;}
.x37{left:252.187770px;}
.x5c{left:258.709710px;}
.x13{left:259.728900px;}
.x3d{left:260.997690px;}
.x52{left:262.087950px;}
.x31{left:263.316090px;}
.xc{left:266.750340px;}
.x56{left:267.999870px;}
.x41{left:270.900000px;}
.x5f{left:288.362700px;}
.x65{left:293.220000px;}
.x61{left:303.269190px;}
.x46{left:304.380000px;}
.x53{left:305.458590px;}
.x36{left:306.570810px;}
.x44{left:308.520000px;}
.x2c{left:313.390830px;}
.x4e{left:318.060000px;}
.x4c{left:325.806450px;}
.x5b{left:327.036270px;}
.x23{left:330.267630px;}
.x35{left:333.199290px;}
.x28{left:349.702530px;}
.x7{left:351.180000px;}
.x4f{left:356.404350px;}
.x47{left:362.160000px;}
.x4{left:371.516850px;}
.x8{left:372.957150px;}
.xd{left:378.232260px;}
.x3a{left:383.061450px;}
.x50{left:390.600000px;}
.x2a{left:393.607470px;}
.x18{left:397.773060px;}
.x63{left:414.360000px;}
.x48{left:422.100750px;}
.x30{left:427.690650px;}
.x22{left:434.160000px;}
.x49{left:436.500000px;}
.x3b{left:442.280010px;}
.x68{left:451.980000px;}
.x42{left:455.400000px;}
.x64{left:469.794300px;}
.x2d{left:478.295310px;}
.x1d{left:482.580000px;}
.x62{left:483.840000px;}
.x27{left:486.355650px;}
.x34{left:491.993130px;}
.x3{left:503.287500px;}
.x69{left:510.477900px;}
.x51{left:515.344350px;}
.x15{left:524.639220px;}
.x43{left:545.764350px;}
.x9{left:562.312950px;}
.x26{left:579.420000px;}
.x17{left:584.271780px;}
.x40{left:589.860000px;}
.x4d{left:596.885700px;}
.x25{left:600.840000px;}
.x2b{left:610.758750px;}
.x2{left:633.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-1.392000pt;}
.ls15{letter-spacing:-1.076480pt;}
.ls22{letter-spacing:-0.883200pt;}
.ls1b{letter-spacing:-0.824320pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.576000pt;}
.ls18{letter-spacing:-0.384000pt;}
.ls14{letter-spacing:-0.296960pt;}
.ls2e{letter-spacing:-0.294400pt;}
.ls17{letter-spacing:-0.288000pt;}
.ls2d{letter-spacing:-0.235520pt;}
.ls13{letter-spacing:-0.222720pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.176640pt;}
.ls1f{letter-spacing:-0.144000pt;}
.ls19{letter-spacing:-0.058880pt;}
.ls21{letter-spacing:-0.048000pt;}
.ls12{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.051307pt;}
.ls11{letter-spacing:0.058880pt;}
.ls10{letter-spacing:0.096000pt;}
.ls2c{letter-spacing:0.176640pt;}
.lsd{letter-spacing:0.181760pt;}
.lse{letter-spacing:0.240640pt;}
.ls2f{letter-spacing:0.294400pt;}
.ls30{letter-spacing:0.765440pt;}
.ls1c{letter-spacing:0.824320pt;}
.ls39{letter-spacing:0.883200pt;}
.lsa{letter-spacing:25.553920pt;}
.ls7{letter-spacing:26.260480pt;}
.ls29{letter-spacing:48.693760pt;}
.ls26{letter-spacing:66.357760pt;}
.ls23{letter-spacing:66.593280pt;}
.ls2b{letter-spacing:121.587200pt;}
.ls2a{letter-spacing:127.416320pt;}
.ls34{letter-spacing:144.609280pt;}
.lsb{letter-spacing:153.231467pt;}
.ls31{letter-spacing:154.677760pt;}
.ls4{letter-spacing:160.565760pt;}
.ls6{letter-spacing:166.983680pt;}
.ls8{letter-spacing:206.786560pt;}
.ls0{letter-spacing:206.880000pt;}
.ls2{letter-spacing:224.627200pt;}
.ls27{letter-spacing:233.518080pt;}
.ls32{letter-spacing:362.877440pt;}
.ls3{letter-spacing:369.413120pt;}
.ls1{letter-spacing:394.849280pt;}
.ls5{letter-spacing:422.464000pt;}
.ls25{letter-spacing:476.398080pt;}
.ls9{letter-spacing:522.147840pt;}
.lsc{letter-spacing:574.845440pt;}
.ls36{letter-spacing:683.420160pt;}
.ls38{letter-spacing:753.251840pt;}
.ls33{letter-spacing:859.530240pt;}
.ls24{letter-spacing:1077.504000pt;}
.ls28{letter-spacing:1115.422720pt;}
.ls35{letter-spacing:1426.250240pt;}
.ls37{letter-spacing:1818.508800pt;}
.ws28{word-spacing:-15.544320pt;}
.ws1{word-spacing:-14.778880pt;}
.ws3{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.661120pt;}
.ws2{word-spacing:-14.543360pt;}
.ws27{word-spacing:-14.425600pt;}
.ws0{word-spacing:-13.895680pt;}
.ws4{word-spacing:-12.096000pt;}
.ws2d{word-spacing:-3.238400pt;}
.ws3f{word-spacing:-3.120640pt;}
.ws32{word-spacing:-2.590720pt;}
.ws33{word-spacing:-2.472960pt;}
.ws38{word-spacing:-2.001920pt;}
.ws29{word-spacing:-1.884160pt;}
.ws2f{word-spacing:-1.354240pt;}
.ws12{word-spacing:-1.236480pt;}
.ws1b{word-spacing:-1.118720pt;}
.ws37{word-spacing:-1.059840pt;}
.ws1a{word-spacing:-1.000960pt;}
.ws2a{word-spacing:-0.824320pt;}
.ws1d{word-spacing:-0.706560pt;}
.ws39{word-spacing:-0.588800pt;}
.ws9{word-spacing:-0.529920pt;}
.wsb{word-spacing:-0.471040pt;}
.ws41{word-spacing:-0.412160pt;}
.ws1f{word-spacing:-0.080000pt;}
.ws23{word-spacing:-0.058880pt;}
.ws6{word-spacing:0.000000pt;}
.ws16{word-spacing:0.058880pt;}
.ws22{word-spacing:0.144000pt;}
.wsf{word-spacing:0.176640pt;}
.ws30{word-spacing:0.588800pt;}
.wsa{word-spacing:0.706560pt;}
.ws15{word-spacing:0.824320pt;}
.ws31{word-spacing:0.883200pt;}
.ws8{word-spacing:1.056000pt;}
.ws7{word-spacing:1.152000pt;}
.ws17{word-spacing:1.236480pt;}
.ws13{word-spacing:1.354240pt;}
.ws2b{word-spacing:1.472000pt;}
.ws35{word-spacing:1.530880pt;}
.ws1c{word-spacing:1.884160pt;}
.ws2e{word-spacing:2.001920pt;}
.wsc{word-spacing:2.119680pt;}
.wsd{word-spacing:2.531840pt;}
.ws10{word-spacing:2.649600pt;}
.ws19{word-spacing:2.708480pt;}
.ws3b{word-spacing:2.767360pt;}
.ws36{word-spacing:3.002880pt;}
.ws21{word-spacing:3.120640pt;}
.ws14{word-spacing:3.238400pt;}
.ws3c{word-spacing:3.356160pt;}
.ws11{word-spacing:3.768320pt;}
.ws20{word-spacing:3.886080pt;}
.ws18{word-spacing:4.003840pt;}
.ws34{word-spacing:4.062720pt;}
.ws2c{word-spacing:5.063680pt;}
.ws3e{word-spacing:5.181440pt;}
.wse{word-spacing:5.299200pt;}
.ws3a{word-spacing:5.358080pt;}
.ws3d{word-spacing:5.946880pt;}
.ws26{word-spacing:6.476800pt;}
.ws40{word-spacing:6.653440pt;}
.ws25{word-spacing:7.006720pt;}
.ws1e{word-spacing:7.124480pt;}
.ws24{word-spacing:7.242240pt;}
._56{margin-left:-6.774784pt;}
._55{margin-left:-2.966528pt;}
._54{margin-left:-1.939456pt;}
._2{margin-left:-1.002240pt;}
._6{width:1.195200pt;}
._5{width:2.323712pt;}
._53{width:4.575467pt;}
._52{width:5.754133pt;}
._57{width:9.603520pt;}
._3a{width:22.980864pt;}
._8c{width:24.288000pt;}
._3c{width:26.178048pt;}
._37{width:35.775488pt;}
._9{width:37.088512pt;}
._1c{width:39.649792pt;}
._d{width:46.050048pt;}
._16{width:49.282560pt;}
._1e{width:53.728000pt;}
._40{width:55.623936pt;}
._12{width:59.498240pt;}
._34{width:62.671872pt;}
._2d{width:63.572736pt;}
._4a{width:65.209600pt;}
._88{width:67.299840pt;}
._8a{width:72.228096pt;}
._31{width:73.211392pt;}
._38{width:76.726528pt;}
._3d{width:78.033664pt;}
._86{width:80.006144pt;}
._b{width:81.890304pt;}
._60{width:83.173888pt;}
._87{width:87.001088pt;}
._e{width:90.227712pt;}
._3f{width:98.500352pt;}
._49{width:102.368768pt;}
._45{width:104.294144pt;}
._48{width:107.491328pt;}
._72{width:109.457920pt;}
._2e{width:110.376448pt;}
._33{width:113.838592pt;}
._1f{width:115.128064pt;}
._4c{width:120.315392pt;}
._4b{width:122.181888pt;}
._1d{width:124.119040pt;}
._82{width:128.093440pt;}
._62{width:131.243520pt;}
._41{width:134.352384pt;}
._8b{width:138.120704pt;}
._1a{width:139.474944pt;}
._4f{width:146.611200pt;}
._11{width:148.424704pt;}
._10{width:150.391296pt;}
._96{width:163.132928pt;}
._65{width:165.741312pt;}
._66{width:169.515520pt;}
._5c{width:172.736256pt;}
._f{width:175.332864pt;}
._8e{width:176.610560pt;}
._2c{width:178.777344pt;}
._23{width:179.860736pt;}
._91{width:182.427904pt;}
._19{width:184.276736pt;}
._4d{width:186.237440pt;}
._64{width:190.718208pt;}
._7c{width:191.978240pt;}
._c{width:193.261824pt;}
._42{width:194.356992pt;}
._89{width:196.453120pt;}
._5d{width:216.631296pt;}
._47{width:219.422208pt;}
._4e{width:222.095360pt;}
._93{width:223.272960pt;}
._5e{width:224.574208pt;}
._97{width:232.976384pt;}
._2f{width:235.814400pt;}
._92{width:236.738816pt;}
._39{width:239.947776pt;}
._3e{width:241.867264pt;}
._a0{width:243.174400pt;}
._7d{width:244.469760pt;}
._5b{width:246.348032pt;}
._74{width:247.655168pt;}
._46{width:252.871936pt;}
._7a{width:254.078976pt;}
._9b{width:258.518528pt;}
._76{width:268.151296pt;}
._20{width:271.260160pt;}
._70{width:272.643840pt;}
._5f{width:276.400384pt;}
._a{width:278.402304pt;}
._1b{width:282.788864pt;}
._36{width:300.070144pt;}
._8f{width:305.245696pt;}
._61{width:306.529280pt;}
._94{width:308.460544pt;}
._95{width:310.362368pt;}
._43{width:314.242560pt;}
._32{width:316.126720pt;}
._67{width:343.682560pt;}
._2a{width:346.862080pt;}
._35{width:355.175936pt;}
._73{width:360.327936pt;}
._30{width:370.826240pt;}
._7b{width:373.169664pt;}
._7e{width:388.295936pt;}
._24{width:400.560640pt;}
._9e{width:405.859840pt;}
._3b{width:409.528064pt;}
._78{width:414.103040pt;}
._6a{width:421.816320pt;}
._80{width:426.880000pt;}
._69{width:428.198912pt;}
._77{width:448.653824pt;}
._71{width:489.646080pt;}
._59{width:496.535040pt;}
._17{width:502.423040pt;}
._50{width:523.560960pt;}
._8{width:526.151680pt;}
._28{width:531.215360pt;}
._9a{width:536.308480pt;}
._6d{width:571.489280pt;}
._15{width:579.850240pt;}
._9f{width:585.661696pt;}
._9c{width:611.197952pt;}
._81{width:619.535360pt;}
._2b{width:642.557440pt;}
._79{width:664.990720pt;}
._6c{width:674.529280pt;}
._6f{width:692.428800pt;}
._84{width:703.309824pt;}
._5a{width:741.593600pt;}
._90{width:746.904576pt;}
._a1{width:754.547200pt;}
._3{width:812.222720pt;}
._85{width:830.679040pt;}
._6e{width:840.924160pt;}
._7f{width:868.480000pt;}
._14{width:871.070720pt;}
._4{width:884.903680pt;}
._9d{width:904.396800pt;}
._18{width:905.515520pt;}
._27{width:907.576320pt;}
._25{width:939.960320pt;}
._75{width:960.097280pt;}
._6b{width:985.015296pt;}
._0{width:1014.712320pt;}
._98{width:1051.302400pt;}
._29{width:1057.131520pt;}
._1{width:1061.223680pt;}
._21{width:1071.380480pt;}
._51{width:1080.389120pt;}
._68{width:1096.581120pt;}
._8d{width:1097.582080pt;}
._22{width:1152.634880pt;}
._63{width:1155.814400pt;}
._7{width:1290.178560pt;}
._83{width:1306.311680pt;}
._44{width:1410.411520pt;}
._99{width:1432.138240pt;}
._13{width:1463.050240pt;}
._26{width:1488.192000pt;}
._58{width:1745.850880pt;}
.fs4{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:58.393600pt;}
.y81{bottom:58.396160pt;}
.y5{bottom:58.400000pt;}
.y35{bottom:58.401280pt;}
.y57{bottom:88.689280pt;}
.y80{bottom:88.689920pt;}
.y2b{bottom:90.250880pt;}
.y34{bottom:90.255360pt;}
.y56{bottom:106.765440pt;}
.y7f{bottom:106.766080pt;}
.y2a{bottom:108.327040pt;}
.y33{bottom:108.331520pt;}
.y9c{bottom:108.975360pt;}
.y55{bottom:124.841600pt;}
.y7e{bottom:124.842240pt;}
.y9b{bottom:125.299840pt;}
.y29{bottom:126.565120pt;}
.y32{bottom:126.569600pt;}
.y54{bottom:143.079680pt;}
.y7d{bottom:143.080320pt;}
.y9a{bottom:155.372800pt;}
.y28{bottom:156.800000pt;}
.y31{bottom:156.819200pt;}
.y53{bottom:161.155840pt;}
.y7c{bottom:161.156480pt;}
.y27{bottom:175.057280pt;}
.y52{bottom:179.232000pt;}
.y7b{bottom:179.232640pt;}
.y99{bottom:185.607680pt;}
.y26{bottom:193.133440pt;}
.y51{bottom:197.470080pt;}
.y7a{bottom:197.470720pt;}
.y25{bottom:211.209600pt;}
.yb7{bottom:215.529600pt;}
.y98{bottom:215.533440pt;}
.y79{bottom:215.546880pt;}
.y24{bottom:229.447680pt;}
.yb6{bottom:233.605760pt;}
.y97{bottom:233.609600pt;}
.y78{bottom:233.623040pt;}
.y23{bottom:247.523840pt;}
.yb5{bottom:251.843840pt;}
.y50{bottom:251.860480pt;}
.y77{bottom:251.861120pt;}
.y22{bottom:265.600000pt;}
.y21{bottom:265.601920pt;}
.yb4{bottom:269.920000pt;}
.y96{bottom:269.923840pt;}
.y4f{bottom:269.936640pt;}
.y76{bottom:269.937280pt;}
.y20{bottom:283.840000pt;}
.y1f{bottom:283.843840pt;}
.y95{bottom:288.000000pt;}
.yb3{bottom:288.001920pt;}
.y94{bottom:288.002560pt;}
.y4e{bottom:288.012800pt;}
.y75{bottom:288.013440pt;}
.y1e{bottom:301.920000pt;}
.y1d{bottom:301.925760pt;}
.y30{bottom:301.927040pt;}
.yb2{bottom:306.240000pt;}
.y93{bottom:306.240640pt;}
.yb1{bottom:306.243840pt;}
.y4d{bottom:306.412800pt;}
.y74{bottom:306.413440pt;}
.y1c{bottom:320.163840pt;}
.y2f{bottom:320.165120pt;}
.yb0{bottom:324.320000pt;}
.y92{bottom:324.331520pt;}
.yaf{bottom:324.335360pt;}
.y4c{bottom:336.338560pt;}
.y73{bottom:336.339200pt;}
.y91{bottom:342.407680pt;}
.yae{bottom:342.411520pt;}
.y1b{bottom:350.398720pt;}
.y2e{bottom:350.400000pt;}
.y2d{bottom:350.401920pt;}
.y4b{bottom:354.414720pt;}
.y72{bottom:354.415360pt;}
.y90{bottom:360.645760pt;}
.yad{bottom:360.649600pt;}
.y2c{bottom:368.636000pt;}
.y1a{bottom:368.636800pt;}
.y4a{bottom:372.652800pt;}
.y71{bottom:372.653440pt;}
.y8f{bottom:378.721920pt;}
.yac{bottom:378.725760pt;}
.y19{bottom:386.771840pt;}
.y49{bottom:390.728960pt;}
.y70{bottom:390.729600pt;}
.y8e{bottom:396.798080pt;}
.yab{bottom:396.801920pt;}
.y18{bottom:404.848000pt;}
.y48{bottom:408.805120pt;}
.y6f{bottom:408.805760pt;}
.yaa{bottom:415.040000pt;}
.ya9{bottom:415.080293pt;}
.y8d{bottom:415.080320pt;}
.y17{bottom:423.086080pt;}
.y47{bottom:427.043200pt;}
.y6e{bottom:427.043840pt;}
.ya8{bottom:433.318373pt;}
.y8c{bottom:433.318400pt;}
.y16{bottom:441.162240pt;}
.y6d{bottom:445.120000pt;}
.y6c{bottom:445.129600pt;}
.y46{bottom:445.134080pt;}
.y15{bottom:459.238400pt;}
.y6b{bottom:463.205760pt;}
.ya7{bottom:463.244133pt;}
.y8b{bottom:463.244160pt;}
.y14{bottom:477.476480pt;}
.y6a{bottom:481.443840pt;}
.y45{bottom:481.448320pt;}
.ya6{bottom:481.482213pt;}
.y8a{bottom:481.482240pt;}
.y13{bottom:495.552640pt;}
.y69{bottom:499.520000pt;}
.y68{bottom:499.529600pt;}
.y44{bottom:499.539200pt;}
.ya5{bottom:499.558373pt;}
.y89{bottom:499.558400pt;}
.y12{bottom:513.628800pt;}
.y67{bottom:517.605760pt;}
.y43{bottom:517.615360pt;}
.ya4{bottom:517.634533pt;}
.y88{bottom:517.634560pt;}
.y11{bottom:531.866880pt;}
.y66{bottom:535.843840pt;}
.y42{bottom:535.853440pt;}
.ya3{bottom:535.872613pt;}
.y87{bottom:535.872640pt;}
.y10{bottom:549.943040pt;}
.y65{bottom:553.920000pt;}
.y64{bottom:553.923840pt;}
.y41{bottom:553.929600pt;}
.ya2{bottom:553.948773pt;}
.y86{bottom:553.948800pt;}
.yf{bottom:568.019200pt;}
.y63{bottom:572.000000pt;}
.y62{bottom:572.001920pt;}
.y40{bottom:572.005760pt;}
.ya1{bottom:572.024933pt;}
.y85{bottom:572.024960pt;}
.ye{bottom:586.257280pt;}
.y61{bottom:590.240000pt;}
.y3f{bottom:590.243840pt;}
.ya0{bottom:590.263013pt;}
.y84{bottom:590.263040pt;}
.yd{bottom:604.333440pt;}
.y3e{bottom:608.320000pt;}
.y60{bottom:608.323840pt;}
.y9f{bottom:608.339173pt;}
.y83{bottom:608.339200pt;}
.yc{bottom:622.409600pt;}
.y3d{bottom:626.400000pt;}
.y5f{bottom:626.415333pt;}
.y3c{bottom:626.415360pt;}
.yb{bottom:640.647680pt;}
.y5e{bottom:644.815333pt;}
.y3b{bottom:644.815360pt;}
.ya{bottom:658.723840pt;}
.y5d{bottom:674.741093pt;}
.y3a{bottom:674.741120pt;}
.y9{bottom:676.800000pt;}
.y5c{bottom:692.817253pt;}
.y39{bottom:692.817280pt;}
.y8{bottom:710.560000pt;}
.y5b{bottom:711.055333pt;}
.y38{bottom:711.055360pt;}
.y5a{bottom:729.131493pt;}
.y37{bottom:729.131520pt;}
.y7{bottom:736.800000pt;}
.y59{bottom:747.203200pt;}
.y9e{bottom:747.205120pt;}
.y82{bottom:747.207680pt;}
.y6{bottom:762.720000pt;}
.y58{bottom:765.441280pt;}
.y9d{bottom:765.443200pt;}
.y36{bottom:765.445760pt;}
.y4{bottom:807.040000pt;}
.y3{bottom:824.480000pt;}
.y2{bottom:838.880000pt;}
.y1{bottom:851.839867pt;}
.h3{height:31.084375pt;}
.h2{height:31.102500pt;}
.h5{height:40.195312pt;}
.h4{height:40.218750pt;}
.h9{height:40.997500pt;}
.h6{height:49.306250pt;}
.he{height:49.316383pt;}
.ha{height:49.322250pt;}
.hc{height:49.324063pt;}
.hd{height:49.335000pt;}
.h8{height:49.795000pt;}
.hb{height:57.787500pt;}
.h7{height:67.031250pt;}
.h0{height:907.200027pt;}
.h1{height:907.333333pt;}
.w0{width:642.560013pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:79.360000pt;}
.x57{left:85.457947pt;}
.x1b{left:88.796640pt;}
.x1e{left:92.799360pt;}
.x2e{left:94.437147pt;}
.x19{left:96.167413pt;}
.x12{left:99.832693pt;}
.x54{left:104.961947pt;}
.x1c{left:107.200533pt;}
.xa{left:110.562400pt;}
.x1f{left:112.980480pt;}
.x24{left:114.546587pt;}
.x58{left:115.530907pt;}
.x29{left:122.714267pt;}
.x2f{left:126.261787pt;}
.xb{left:128.320000pt;}
.x3e{left:129.440000pt;}
.x21{left:131.203840pt;}
.x55{left:135.682587pt;}
.x1{left:137.757333pt;}
.x60{left:141.596933pt;}
.x66{left:145.120000pt;}
.x33{left:149.757307pt;}
.x6{left:151.360000pt;}
.x4a{left:153.920000pt;}
.xe{left:155.194613pt;}
.x5d{left:163.223707pt;}
.x20{left:166.561280pt;}
.x59{left:167.860507pt;}
.x1a{left:170.606453pt;}
.x10{left:177.112693pt;}
.x3f{left:180.320000pt;}
.x5a{left:186.908187pt;}
.x5e{left:188.468507pt;}
.x3c{left:189.442427pt;}
.xf{left:192.480373pt;}
.x4b{left:200.005733pt;}
.x11{left:202.887413pt;}
.x38{left:205.457787pt;}
.x67{left:209.598133pt;}
.x32{left:211.684347pt;}
.x39{left:215.055227pt;}
.x45{left:216.640000pt;}
.x16{left:218.991093pt;}
.x14{left:222.082293pt;}
.x37{left:224.166907pt;}
.x5c{left:229.964187pt;}
.x13{left:230.870133pt;}
.x3d{left:231.997947pt;}
.x52{left:232.967067pt;}
.x31{left:234.058747pt;}
.xc{left:237.111413pt;}
.x56{left:238.222107pt;}
.x41{left:240.800000pt;}
.x5f{left:256.322400pt;}
.x65{left:260.640000pt;}
.x61{left:269.572613pt;}
.x46{left:270.560000pt;}
.x53{left:271.518747pt;}
.x36{left:272.507387pt;}
.x44{left:274.240000pt;}
.x2c{left:278.569627pt;}
.x4e{left:282.720000pt;}
.x4c{left:289.605733pt;}
.x5b{left:290.698907pt;}
.x23{left:293.571227pt;}
.x35{left:296.177147pt;}
.x28{left:310.846693pt;}
.x7{left:312.160000pt;}
.x4f{left:316.803867pt;}
.x47{left:321.920000pt;}
.x4{left:330.237200pt;}
.x8{left:331.517467pt;}
.xd{left:336.206453pt;}
.x3a{left:340.499067pt;}
.x50{left:347.200000pt;}
.x2a{left:349.873307pt;}
.x18{left:353.576053pt;}
.x63{left:368.320000pt;}
.x48{left:375.200667pt;}
.x30{left:380.169467pt;}
.x22{left:385.920000pt;}
.x49{left:388.000000pt;}
.x3b{left:393.137787pt;}
.x68{left:401.760000pt;}
.x42{left:404.800000pt;}
.x64{left:417.594933pt;}
.x2d{left:425.151387pt;}
.x1d{left:428.960000pt;}
.x62{left:430.080000pt;}
.x27{left:432.316133pt;}
.x34{left:437.327227pt;}
.x3{left:447.366667pt;}
.x69{left:453.758133pt;}
.x51{left:458.083867pt;}
.x15{left:466.345973pt;}
.x43{left:485.123867pt;}
.x9{left:499.833733pt;}
.x26{left:515.040000pt;}
.x17{left:519.352693pt;}
.x40{left:524.320000pt;}
.x4d{left:530.565067pt;}
.x25{left:534.080000pt;}
.x2b{left:542.896667pt;}
.x2{left:563.200000pt;}
}

