
    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_62ea549816ab4b83e14e7c46.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_3dca67e3f92b3a45613398ca.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_6a47acd993a362c1f0a2f1c7.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_08df154c93eb73eb4394f298.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls20{letter-spacing:-1.566000px;}
.ls17{letter-spacing:-1.211040px;}
.ls1c{letter-spacing:-0.794880px;}
.ls3a{letter-spacing:-0.662400px;}
.ls23{letter-spacing:-0.594000px;}
.ls1f{letter-spacing:-0.450000px;}
.ls1a{letter-spacing:-0.432000px;}
.ls21{letter-spacing:-0.397440px;}
.ls3d{letter-spacing:-0.378000px;}
.ls16{letter-spacing:-0.334080px;}
.ls19{letter-spacing:-0.324000px;}
.ls1e{letter-spacing:-0.264960px;}
.ls15{letter-spacing:-0.250560px;}
.ls18{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.198720px;}
.ls22{letter-spacing:-0.162000px;}
.ls3c{letter-spacing:-0.108000px;}
.ls1d{letter-spacing:-0.066240px;}
.ls24{letter-spacing:-0.054000px;}
.ls14{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.066240px;}
.ls37{letter-spacing:0.100800px;}
.ls26{letter-spacing:0.108000px;}
.ls38{letter-spacing:0.118080px;}
.lsf{letter-spacing:0.129600px;}
.ls13{letter-spacing:0.132480px;}
.ls36{letter-spacing:0.138240px;}
.lse{letter-spacing:0.166800px;}
.ls27{letter-spacing:0.198720px;}
.ls3b{letter-spacing:0.264960px;}
.ls25{letter-spacing:0.331200px;}
.ls12{letter-spacing:0.662400px;}
.ls39{letter-spacing:0.728640px;}
.ls10{letter-spacing:0.927360px;}
.ls11{letter-spacing:0.993600px;}
.ls8{letter-spacing:26.628480px;}
.ls32{letter-spacing:30.205440px;}
.ls31{letter-spacing:141.223680px;}
.ls6{letter-spacing:152.749440px;}
.lsa{letter-spacing:167.520960px;}
.lsc{letter-spacing:179.046720px;}
.ls30{letter-spacing:179.709120px;}
.ls2d{letter-spacing:192.957120px;}
.ls4{letter-spacing:230.846400px;}
.ls0{letter-spacing:232.740000px;}
.ls9{letter-spacing:233.098560px;}
.ls7{letter-spacing:238.265280px;}
.ls33{letter-spacing:242.504640px;}
.ls28{letter-spacing:251.248320px;}
.ls5{letter-spacing:280.725120px;}
.ls40{letter-spacing:308.943360px;}
.ls29{letter-spacing:400.288320px;}
.ls2{letter-spacing:444.205440px;}
.ls2a{letter-spacing:472.092480px;}
.ls3f{letter-spacing:542.174400px;}
.ls3{letter-spacing:651.669120px;}
.ls34{letter-spacing:696.116160px;}
.ls42{letter-spacing:847.408320px;}
.lsb{letter-spacing:861.716160px;}
.ls1{letter-spacing:917.820000px;}
.ls2c{letter-spacing:1018.175040px;}
.ls41{letter-spacing:1043.081280px;}
.ls2b{letter-spacing:1396.802880px;}
.ls2e{letter-spacing:1500.468480px;}
.ls35{letter-spacing:1628.974080px;}
.ls3e{letter-spacing:1660.968000px;}
.ls2f{letter-spacing:1836.040320px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-16.758720px;}
.ws6{word-spacing:-16.626240px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.493760px;}
.ws7{word-spacing:-16.361280px;}
.ws0{word-spacing:-16.162560px;}
.ws4{word-spacing:-13.608000px;}
.ws31{word-spacing:-13.446000px;}
.ws2{word-spacing:-13.338000px;}
.ws32{word-spacing:-13.122000px;}
.ws41{word-spacing:-3.510720px;}
.ws38{word-spacing:-3.378240px;}
.ws47{word-spacing:-2.914560px;}
.ws3e{word-spacing:-2.782080px;}
.ws42{word-spacing:-2.252160px;}
.ws49{word-spacing:-2.119680px;}
.ws3a{word-spacing:-1.987200px;}
.ws2b{word-spacing:-1.920960px;}
.ws4d{word-spacing:-1.788480px;}
.ws11{word-spacing:-1.523520px;}
.ws23{word-spacing:-1.391040px;}
.ws45{word-spacing:-1.258560px;}
.ws3f{word-spacing:-0.927360px;}
.ws4a{word-spacing:-0.794880px;}
.ws12{word-spacing:-0.662400px;}
.wsc{word-spacing:-0.596160px;}
.wsf{word-spacing:-0.529920px;}
.ws2c{word-spacing:-0.463680px;}
.wsb{word-spacing:-0.360000px;}
.ws4f{word-spacing:-0.331200px;}
.ws43{word-spacing:-0.264960px;}
.ws21{word-spacing:-0.066240px;}
.ws8{word-spacing:0.000000px;}
.ws14{word-spacing:0.066240px;}
.ws2e{word-spacing:0.162000px;}
.ws15{word-spacing:0.198720px;}
.ws40{word-spacing:0.264960px;}
.ws33{word-spacing:0.334080px;}
.ws2a{word-spacing:0.662400px;}
.wsd{word-spacing:0.728640px;}
.ws10{word-spacing:0.794880px;}
.wse{word-spacing:0.927360px;}
.wsa{word-spacing:1.188000px;}
.ws9{word-spacing:1.296000px;}
.ws36{word-spacing:1.324800px;}
.ws18{word-spacing:1.391040px;}
.ws20{word-spacing:1.523520px;}
.ws4e{word-spacing:1.656000px;}
.ws3b{word-spacing:2.119680px;}
.ws22{word-spacing:2.252160px;}
.ws1f{word-spacing:2.384640px;}
.ws46{word-spacing:2.848320px;}
.ws16{word-spacing:2.980800px;}
.ws25{word-spacing:3.113280px;}
.ws17{word-spacing:3.444480px;}
.ws39{word-spacing:3.510720px;}
.ws1e{word-spacing:3.643200px;}
.ws1d{word-spacing:3.841920px;}
.ws34{word-spacing:4.239360px;}
.ws29{word-spacing:4.371840px;}
.ws30{word-spacing:4.504320px;}
.ws37{word-spacing:4.769280px;}
.ws48{word-spacing:4.968000px;}
.ws44{word-spacing:5.431680px;}
.ws1a{word-spacing:5.696640px;}
.ws4c{word-spacing:5.829120px;}
.ws28{word-spacing:6.425280px;}
.ws4b{word-spacing:6.557760px;}
.ws26{word-spacing:6.822720px;}
.ws27{word-spacing:7.087680px;}
.ws19{word-spacing:7.153920px;}
.ws1c{word-spacing:7.220160px;}
.ws35{word-spacing:7.286400px;}
.ws2f{word-spacing:7.418880px;}
.ws1b{word-spacing:7.485120px;}
.ws13{word-spacing:7.882560px;}
.ws24{word-spacing:8.015040px;}
.ws2d{word-spacing:8.081280px;}
.ws3d{word-spacing:10.002240px;}
.ws3c{word-spacing:10.730880px;}
._37{margin-left:-2.175840px;}
._2{margin-left:-1.127520px;}
._6{width:1.344600px;}
._5{width:2.614176px;}
._69{width:4.897560px;}
._6a{width:5.979624px;}
._39{width:7.153920px;}
._3a{width:9.493800px;}
._38{width:11.242680px;}
._7c{width:26.608608px;}
._1c{width:34.577280px;}
._13{width:40.942944px;}
._6f{width:42.446592px;}
._2a{width:48.209472px;}
._20{width:51.084288px;}
._2d{width:60.444000px;}
._1e{width:64.769472px;}
._42{width:71.969760px;}
._81{width:73.413792px;}
._3f{width:74.837952px;}
._84{width:80.607456px;}
._15{width:89.251776px;}
._12{width:91.411200px;}
._8{width:93.610368px;}
._5a{width:95.670432px;}
._9{width:105.851520px;}
._57{width:107.229312px;}
._41{width:109.408608px;}
._2c{width:112.349664px;}
._25{width:114.482592px;}
._40{width:115.886880px;}
._56{width:123.809184px;}
._3e{width:125.915616px;}
._7e{width:128.247264px;}
._16{width:129.558816px;}
._7a{width:136.043712px;}
._5e{width:141.071328px;}
._79{width:151.166304px;}
._6e{width:152.610336px;}
._10{width:156.962304px;}
._58{width:158.293728px;}
._2e{width:161.963424px;}
._3d{width:164.109600px;}
._60{width:165.600000px;}
._80{width:175.655232px;}
._36{width:178.549920px;}
._6d{width:179.980704px;}
._6c{width:187.863264px;}
._8e{width:196.507584px;}
._d{width:198.017856px;}
._62{width:201.588192px;}
._71{width:203.038848px;}
._33{width:205.900416px;}
._b{width:209.583360px;}
._2f{width:212.372064px;}
._18{width:214.617600px;}
._1b{width:223.228800px;}
._22{width:226.766016px;}
._78{width:234.006048px;}
._61{width:238.358016px;}
._1f{width:239.682816px;}
._26{width:241.855488px;}
._72{width:244.803168px;}
._21{width:246.942720px;}
._27{width:255.587040px;}
._5b{width:257.613984px;}
._2b{width:259.879392px;}
._4c{width:264.960000px;}
._59{width:267.073056px;}
._74{width:271.385280px;}
._8d{width:274.207104px;}
._17{width:275.684256px;}
._4a{width:277.936416px;}
._6b{width:281.533248px;}
._5c{width:283.626432px;}
._5f{width:287.945280px;}
._43{width:290.926080px;}
._7b{width:294.456672px;}
._32{width:296.993664px;}
._11{width:299.477664px;}
._14{width:308.777760px;}
._30{width:334.015200px;}
._82{width:336.214368px;}
._8b{width:344.116800px;}
._3b{width:347.693760px;}
._3c{width:357.762240px;}
._28{width:360.577440px;}
._48{width:363.657600px;}
._7{width:379.422720px;}
._86{width:380.880000px;}
._73{width:393.114528px;}
._67{width:398.102400px;}
._50{width:421.153920px;}
._4b{width:425.505888px;}
._4f{width:426.916800px;}
._4e{width:447.053760px;}
._4d{width:454.340160px;}
._45{width:463.613760px;}
._44{width:491.699520px;}
._53{width:508.325760px;}
._77{width:528.396480px;}
._a{width:543.552192px;}
._70{width:569.531520px;}
._31{width:575.824320px;}
._8c{width:593.311680px;}
._47{width:604.837440px;}
._7d{width:609.831936px;}
._29{width:620.602560px;}
._19{width:624.974400px;}
._54{width:634.248000px;}
._f{width:653.788800px;}
._89{width:660.876480px;}
._64{width:670.282560px;}
._34{width:693.135360px;}
._e{width:707.085504px;}
._76{width:726.454080px;}
._49{width:744.537600px;}
._75{width:757.321920px;}
._1d{width:797.065920px;}
._8a{width:815.811840px;}
._3{width:913.750560px;}
._85{width:915.045984px;}
._5d{width:961.235136px;}
._46{width:969.886080px;}
._4{width:995.516640px;}
._c{width:1021.553280px;}
._51{width:1028.773440px;}
._65{width:1058.978880px;}
._0{width:1141.551360px;}
._87{width:1190.730240px;}
._1{width:1193.876640px;}
._1a{width:1201.461120px;}
._63{width:1318.308480px;}
._24{width:1424.689920px;}
._7f{width:1443.899520px;}
._66{width:1452.974400px;}
._23{width:1455.822720px;}
._68{width:1460.790720px;}
._88{width:1462.181760px;}
._52{width:1506.165120px;}
._35{width:1523.255040px;}
._55{width:1634.935680px;}
._83{width:1651.694400px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(23,54,93);}
.fc0{color:transparent;}
.fs0{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:65.700000px;}
.ya8{bottom:65.700720px;}
.y40{bottom:65.705040px;}
.y66{bottom:99.722880px;}
.y86{bottom:99.730800px;}
.y3f{bottom:102.070800px;}
.y2b{bottom:102.070830px;}
.y65{bottom:120.058560px;}
.y85{bottom:120.066480px;}
.y3e{bottom:122.406480px;}
.y2a{bottom:122.406510px;}
.y64{bottom:140.394240px;}
.y84{bottom:140.402160px;}
.y3d{bottom:142.924320px;}
.y29{bottom:142.924350px;}
.y63{bottom:160.928640px;}
.y3c{bottom:163.260000px;}
.y28{bottom:163.266480px;}
.y62{bottom:181.264320px;}
.y27{bottom:183.602160px;}
.y61{bottom:201.600000px;}
.y26{bottom:204.120000px;}
.y25{bottom:204.133680px;}
.y3b{bottom:204.135120px;}
.y60{bottom:222.300000px;}
.y24{bottom:224.469360px;}
.y3a{bottom:224.470800px;}
.y23{bottom:244.805040px;}
.y39{bottom:244.806480px;}
.y9d{bottom:251.487360px;}
.y5f{bottom:255.960000px;}
.y83{bottom:255.964320px;}
.y22{bottom:265.322880px;}
.y38{bottom:265.324320px;}
.y9c{bottom:270.034560px;}
.y5e{bottom:276.300000px;}
.y82{bottom:276.323760px;}
.y5d{bottom:276.333840px;}
.y21{bottom:285.658560px;}
.y37{bottom:285.660000px;}
.y36{bottom:285.664320px;}
.y81{bottom:296.841600px;}
.y9b{bottom:303.701040px;}
.y35{bottom:306.000000px;}
.y34{bottom:306.025200px;}
.y20{bottom:306.027360px;}
.y80{bottom:317.177280px;}
.y5c{bottom:317.187360px;}
.y9a{bottom:324.036720px;}
.y33{bottom:326.543040px;}
.y1f{bottom:326.545200px;}
.y7f{bottom:337.512960px;}
.y5b{bottom:337.523040px;}
.ya7{bottom:344.554560px;}
.y32{bottom:346.878720px;}
.y1e{bottom:346.880880px;}
.y7e{bottom:358.030800px;}
.y5a{bottom:358.040880px;}
.y99{bottom:364.890240px;}
.y31{bottom:367.396560px;}
.y1d{bottom:367.398720px;}
.y7d{bottom:378.366480px;}
.y59{bottom:378.376560px;}
.y98{bottom:385.225920px;}
.y7c{bottom:398.702160px;}
.y58{bottom:398.712240px;}
.y30{bottom:401.228640px;}
.y1c{bottom:401.230800px;}
.y97{bottom:405.925920px;}
.y7b{bottom:419.220000px;}
.y7a{bottom:419.241600px;}
.y57{bottom:419.246640px;}
.y2f{bottom:421.564320px;}
.y79{bottom:439.577280px;}
.y56{bottom:439.582320px;}
.y96{bottom:439.592400px;}
.y1b{bottom:441.902160px;}
.y78{bottom:459.912960px;}
.y55{bottom:459.918000px;}
.y95{bottom:459.928080px;}
.y1a{bottom:462.420000px;}
.y19{bottom:462.424320px;}
.y77{bottom:480.430800px;}
.y54{bottom:480.435840px;}
.y94{bottom:480.445920px;}
.y18{bottom:482.760000px;}
.y17{bottom:482.766480px;}
.y76{bottom:500.766480px;}
.y53{bottom:500.771520px;}
.y93{bottom:500.781600px;}
.y16{bottom:503.102160px;}
.y75{bottom:521.102160px;}
.y52{bottom:521.107200px;}
.y92{bottom:521.117280px;}
.y15{bottom:523.620000px;}
.y2e{bottom:523.628640px;}
.y74{bottom:541.635120px;}
.y51{bottom:541.641600px;}
.y14{bottom:543.964320px;}
.y73{bottom:561.970800px;}
.y50{bottom:561.977280px;}
.y13{bottom:564.300000px;}
.y12{bottom:564.302160px;}
.y72{bottom:582.306480px;}
.y4f{bottom:582.312960px;}
.y11{bottom:584.820000px;}
.y10{bottom:584.820720px;}
.y2d{bottom:584.822160px;}
.y71{bottom:602.824320px;}
.y4e{bottom:602.830800px;}
.yf{bottom:605.355120px;}
.y91{bottom:623.160000px;}
.y4d{bottom:623.166480px;}
.ya6{bottom:623.168640px;}
.ye{bottom:639.021600px;}
.y4c{bottom:643.502160px;}
.y90{bottom:643.504320px;}
.y2c{bottom:659.539440px;}
.y4b{bottom:664.020000px;}
.y8f{bottom:664.022160px;}
.y70{bottom:664.026480px;}
.yd{bottom:679.875120px;}
.y4a{bottom:684.362160px;}
.y8e{bottom:684.540000px;}
.yc{bottom:700.210800px;}
.y49{bottom:704.880000px;}
.y6f{bottom:704.896560px;}
.y48{bottom:704.899440px;}
.y8d{bottom:718.223700px;}
.ya5{bottom:718.223760px;}
.yb{bottom:720.728640px;}
.y6e{bottom:738.728640px;}
.y47{bottom:738.731520px;}
.ya4{bottom:738.741600px;}
.ya{bottom:741.064320px;}
.y6d{bottom:759.064320px;}
.y46{bottom:759.067200px;}
.y8c{bottom:759.077220px;}
.ya3{bottom:759.077280px;}
.y9{bottom:761.400000px;}
.y6c{bottom:779.400000px;}
.y45{bottom:779.402880px;}
.y6b{bottom:779.406480px;}
.y8b{bottom:779.412900px;}
.ya2{bottom:779.412960px;}
.y8{bottom:799.380000px;}
.y44{bottom:799.920720px;}
.y6a{bottom:799.924320px;}
.y8a{bottom:799.930740px;}
.ya1{bottom:799.930800px;}
.y43{bottom:820.256400px;}
.y69{bottom:820.264320px;}
.y89{bottom:820.266420px;}
.ya0{bottom:820.266480px;}
.y7{bottom:828.900000px;}
.y68{bottom:840.600720px;}
.y88{bottom:840.602100px;}
.y9f{bottom:840.602160px;}
.y42{bottom:840.608640px;}
.y6{bottom:858.060000px;}
.y67{bottom:861.118560px;}
.y87{bottom:861.120000px;}
.y41{bottom:861.126480px;}
.y9e{bottom:861.127200px;}
.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;}
.h6{height:55.469531px;}
.hb{height:55.501091px;}
.h9{height:55.501875px;}
.ha{height:55.953135px;}
.h8{height:56.019375px;}
.hc{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;}
.x4d{left:104.397120px;}
.xc{left:105.479850px;}
.x2c{left:107.100000px;}
.x15{left:112.324320px;}
.x27{left:116.820000px;}
.x40{left:118.795680px;}
.xa{left:124.382700px;}
.x3e{left:129.420000px;}
.x13{left:132.645600px;}
.x1c{left:134.278560px;}
.x59{left:138.985710px;}
.xf{left:140.561280px;}
.xb{left:144.360000px;}
.x53{left:147.066990px;}
.x4b{left:151.195680px;}
.x28{left:152.640000px;}
.x3d{left:153.822240px;}
.x1{left:154.977000px;}
.x37{left:158.243760px;}
.x48{left:162.545790px;}
.x5a{left:166.320000px;}
.x3b{left:167.716080px;}
.x6{left:170.280000px;}
.x12{left:171.313200px;}
.x49{left:182.519850px;}
.x36{left:185.220000px;}
.x19{left:189.553854px;}
.x47{left:190.616400px;}
.x21{left:193.878000px;}
.x33{left:195.847950px;}
.x23{left:197.986650px;}
.x43{left:200.160000px;}
.x3a{left:201.912480px;}
.x44{left:206.100000px;}
.x32{left:207.721470px;}
.x52{left:214.035630px;}
.x54{left:216.718350px;}
.x9{left:221.029200px;}
.x4c{left:226.792080px;}
.x57{left:229.121790px;}
.x18{left:242.274690px;}
.x20{left:243.508320px;}
.x45{left:258.480000px;}
.x31{left:263.346510px;}
.x1f{left:264.986640px;}
.x50{left:268.882350px;}
.x35{left:278.449530px;}
.xd{left:281.520000px;}
.x24{left:286.024350px;}
.x56{left:294.285390px;}
.x30{left:307.445790px;}
.x11{left:308.711520px;}
.x39{left:332.769600px;}
.x1b{left:335.350080px;}
.x4e{left:345.063600px;}
.x2e{left:349.739280px;}
.x7{left:351.180000px;}
.x10{left:369.470160px;}
.x4{left:371.516850px;}
.x8{left:372.957150px;}
.xe{left:379.604880px;}
.x2f{left:384.300750px;}
.x4f{left:391.759158px;}
.x41{left:433.800000px;}
.x3f{left:450.219750px;}
.x58{left:456.142830px;}
.x25{left:459.900000px;}
.x16{left:461.872200px;}
.x34{left:483.440250px;}
.x4a{left:487.545840px;}
.x1e{left:491.461200px;}
.x55{left:493.916190px;}
.x2a{left:502.020000px;}
.x3{left:503.287500px;}
.x1a{left:505.620000px;}
.x42{left:510.660000px;}
.x14{left:527.581050px;}
.x17{left:533.002050px;}
.x51{left:556.115550px;}
.x22{left:565.022802px;}
.x29{left:570.420000px;}
.x3c{left:583.918560px;}
.x46{left:586.440000px;}
.x38{left:594.334800px;}
.x1d{left:605.625840px;}
.x2b{left:606.780000px;}
.x2d{left:620.640000px;}
.x26{left:630.000000px;}
.x2{left:633.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-1.392000pt;}
.ls17{letter-spacing:-1.076480pt;}
.ls1c{letter-spacing:-0.706560pt;}
.ls3a{letter-spacing:-0.588800pt;}
.ls23{letter-spacing:-0.528000pt;}
.ls1f{letter-spacing:-0.400000pt;}
.ls1a{letter-spacing:-0.384000pt;}
.ls21{letter-spacing:-0.353280pt;}
.ls3d{letter-spacing:-0.336000pt;}
.ls16{letter-spacing:-0.296960pt;}
.ls19{letter-spacing:-0.288000pt;}
.ls1e{letter-spacing:-0.235520pt;}
.ls15{letter-spacing:-0.222720pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.176640pt;}
.ls22{letter-spacing:-0.144000pt;}
.ls3c{letter-spacing:-0.096000pt;}
.ls1d{letter-spacing:-0.058880pt;}
.ls24{letter-spacing:-0.048000pt;}
.ls14{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.058880pt;}
.ls37{letter-spacing:0.089600pt;}
.ls26{letter-spacing:0.096000pt;}
.ls38{letter-spacing:0.104960pt;}
.lsf{letter-spacing:0.115200pt;}
.ls13{letter-spacing:0.117760pt;}
.ls36{letter-spacing:0.122880pt;}
.lse{letter-spacing:0.148267pt;}
.ls27{letter-spacing:0.176640pt;}
.ls3b{letter-spacing:0.235520pt;}
.ls25{letter-spacing:0.294400pt;}
.ls12{letter-spacing:0.588800pt;}
.ls39{letter-spacing:0.647680pt;}
.ls10{letter-spacing:0.824320pt;}
.ls11{letter-spacing:0.883200pt;}
.ls8{letter-spacing:23.669760pt;}
.ls32{letter-spacing:26.849280pt;}
.ls31{letter-spacing:125.532160pt;}
.ls6{letter-spacing:135.777280pt;}
.lsa{letter-spacing:148.907520pt;}
.lsc{letter-spacing:159.152640pt;}
.ls30{letter-spacing:159.741440pt;}
.ls2d{letter-spacing:171.517440pt;}
.ls4{letter-spacing:205.196800pt;}
.ls0{letter-spacing:206.880000pt;}
.ls9{letter-spacing:207.198720pt;}
.ls7{letter-spacing:211.791360pt;}
.ls33{letter-spacing:215.559680pt;}
.ls28{letter-spacing:223.331840pt;}
.ls5{letter-spacing:249.533440pt;}
.ls40{letter-spacing:274.616320pt;}
.ls29{letter-spacing:355.811840pt;}
.ls2{letter-spacing:394.849280pt;}
.ls2a{letter-spacing:419.637760pt;}
.ls3f{letter-spacing:481.932800pt;}
.ls3{letter-spacing:579.261440pt;}
.ls34{letter-spacing:618.769920pt;}
.ls42{letter-spacing:753.251840pt;}
.lsb{letter-spacing:765.969920pt;}
.ls1{letter-spacing:815.840000pt;}
.ls2c{letter-spacing:905.044480pt;}
.ls41{letter-spacing:927.183360pt;}
.ls2b{letter-spacing:1241.602560pt;}
.ls2e{letter-spacing:1333.749760pt;}
.ls35{letter-spacing:1447.976960pt;}
.ls3e{letter-spacing:1476.416000pt;}
.ls2f{letter-spacing:1632.035840pt;}
.ws5{word-spacing:-14.896640pt;}
.ws6{word-spacing:-14.778880pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.661120pt;}
.ws7{word-spacing:-14.543360pt;}
.ws0{word-spacing:-14.366720pt;}
.ws4{word-spacing:-12.096000pt;}
.ws31{word-spacing:-11.952000pt;}
.ws2{word-spacing:-11.856000pt;}
.ws32{word-spacing:-11.664000pt;}
.ws41{word-spacing:-3.120640pt;}
.ws38{word-spacing:-3.002880pt;}
.ws47{word-spacing:-2.590720pt;}
.ws3e{word-spacing:-2.472960pt;}
.ws42{word-spacing:-2.001920pt;}
.ws49{word-spacing:-1.884160pt;}
.ws3a{word-spacing:-1.766400pt;}
.ws2b{word-spacing:-1.707520pt;}
.ws4d{word-spacing:-1.589760pt;}
.ws11{word-spacing:-1.354240pt;}
.ws23{word-spacing:-1.236480pt;}
.ws45{word-spacing:-1.118720pt;}
.ws3f{word-spacing:-0.824320pt;}
.ws4a{word-spacing:-0.706560pt;}
.ws12{word-spacing:-0.588800pt;}
.wsc{word-spacing:-0.529920pt;}
.wsf{word-spacing:-0.471040pt;}
.ws2c{word-spacing:-0.412160pt;}
.wsb{word-spacing:-0.320000pt;}
.ws4f{word-spacing:-0.294400pt;}
.ws43{word-spacing:-0.235520pt;}
.ws21{word-spacing:-0.058880pt;}
.ws8{word-spacing:0.000000pt;}
.ws14{word-spacing:0.058880pt;}
.ws2e{word-spacing:0.144000pt;}
.ws15{word-spacing:0.176640pt;}
.ws40{word-spacing:0.235520pt;}
.ws33{word-spacing:0.296960pt;}
.ws2a{word-spacing:0.588800pt;}
.wsd{word-spacing:0.647680pt;}
.ws10{word-spacing:0.706560pt;}
.wse{word-spacing:0.824320pt;}
.wsa{word-spacing:1.056000pt;}
.ws9{word-spacing:1.152000pt;}
.ws36{word-spacing:1.177600pt;}
.ws18{word-spacing:1.236480pt;}
.ws20{word-spacing:1.354240pt;}
.ws4e{word-spacing:1.472000pt;}
.ws3b{word-spacing:1.884160pt;}
.ws22{word-spacing:2.001920pt;}
.ws1f{word-spacing:2.119680pt;}
.ws46{word-spacing:2.531840pt;}
.ws16{word-spacing:2.649600pt;}
.ws25{word-spacing:2.767360pt;}
.ws17{word-spacing:3.061760pt;}
.ws39{word-spacing:3.120640pt;}
.ws1e{word-spacing:3.238400pt;}
.ws1d{word-spacing:3.415040pt;}
.ws34{word-spacing:3.768320pt;}
.ws29{word-spacing:3.886080pt;}
.ws30{word-spacing:4.003840pt;}
.ws37{word-spacing:4.239360pt;}
.ws48{word-spacing:4.416000pt;}
.ws44{word-spacing:4.828160pt;}
.ws1a{word-spacing:5.063680pt;}
.ws4c{word-spacing:5.181440pt;}
.ws28{word-spacing:5.711360pt;}
.ws4b{word-spacing:5.829120pt;}
.ws26{word-spacing:6.064640pt;}
.ws27{word-spacing:6.300160pt;}
.ws19{word-spacing:6.359040pt;}
.ws1c{word-spacing:6.417920pt;}
.ws35{word-spacing:6.476800pt;}
.ws2f{word-spacing:6.594560pt;}
.ws1b{word-spacing:6.653440pt;}
.ws13{word-spacing:7.006720pt;}
.ws24{word-spacing:7.124480pt;}
.ws2d{word-spacing:7.183360pt;}
.ws3d{word-spacing:8.890880pt;}
.ws3c{word-spacing:9.538560pt;}
._37{margin-left:-1.934080pt;}
._2{margin-left:-1.002240pt;}
._6{width:1.195200pt;}
._5{width:2.323712pt;}
._69{width:4.353387pt;}
._6a{width:5.315221pt;}
._39{width:6.359040pt;}
._3a{width:8.438933pt;}
._38{width:9.993493pt;}
._7c{width:23.652096pt;}
._1c{width:30.735360pt;}
._13{width:36.393728pt;}
._6f{width:37.730304pt;}
._2a{width:42.852864pt;}
._20{width:45.408256pt;}
._2d{width:53.728000pt;}
._1e{width:57.572864pt;}
._42{width:63.973120pt;}
._81{width:65.256704pt;}
._3f{width:66.522624pt;}
._84{width:71.651072pt;}
._15{width:79.334912pt;}
._12{width:81.254400pt;}
._8{width:83.209216pt;}
._5a{width:85.040384pt;}
._9{width:94.090240pt;}
._57{width:95.314944pt;}
._41{width:97.252096pt;}
._2c{width:99.866368pt;}
._25{width:101.762304pt;}
._40{width:103.010560pt;}
._56{width:110.052608pt;}
._3e{width:111.924992pt;}
._7e{width:113.997568pt;}
._16{width:115.163392pt;}
._7a{width:120.927744pt;}
._5e{width:125.396736pt;}
._79{width:134.370048pt;}
._6e{width:135.653632pt;}
._10{width:139.522048pt;}
._58{width:140.705536pt;}
._2e{width:143.967488pt;}
._3d{width:145.875200pt;}
._60{width:147.200000pt;}
._80{width:156.137984pt;}
._36{width:158.711040pt;}
._6d{width:159.982848pt;}
._6c{width:166.989568pt;}
._8e{width:174.673408pt;}
._d{width:176.015872pt;}
._62{width:179.189504pt;}
._71{width:180.478976pt;}
._33{width:183.022592pt;}
._b{width:186.296320pt;}
._2f{width:188.775168pt;}
._18{width:190.771200pt;}
._1b{width:198.425600pt;}
._22{width:201.569792pt;}
._78{width:208.005376pt;}
._61{width:211.873792pt;}
._1f{width:213.051392pt;}
._26{width:214.982656pt;}
._72{width:217.602816pt;}
._21{width:219.504640pt;}
._27{width:227.188480pt;}
._5b{width:228.990208pt;}
._2b{width:231.003904pt;}
._4c{width:235.520000pt;}
._59{width:237.398272pt;}
._74{width:241.231360pt;}
._8d{width:243.739648pt;}
._17{width:245.052672pt;}
._4a{width:247.054592pt;}
._6b{width:250.251776pt;}
._5c{width:252.112384pt;}
._5f{width:255.951360pt;}
._43{width:258.600960pt;}
._7b{width:261.739264pt;}
._32{width:263.994368pt;}
._11{width:266.202368pt;}
._14{width:274.469120pt;}
._30{width:296.902400pt;}
._82{width:298.857216pt;}
._8b{width:305.881600pt;}
._3b{width:309.061120pt;}
._3c{width:318.010880pt;}
._28{width:320.513280pt;}
._48{width:323.251200pt;}
._7{width:337.264640pt;}
._86{width:338.560000pt;}
._73{width:349.435136pt;}
._67{width:353.868800pt;}
._50{width:374.359040pt;}
._4b{width:378.227456pt;}
._4f{width:379.481600pt;}
._4e{width:397.381120pt;}
._4d{width:403.857920pt;}
._45{width:412.101120pt;}
._44{width:437.066240pt;}
._53{width:451.845120pt;}
._77{width:469.685760pt;}
._a{width:483.157504pt;}
._70{width:506.250240pt;}
._31{width:511.843840pt;}
._8c{width:527.388160pt;}
._47{width:537.633280pt;}
._7d{width:542.072832pt;}
._29{width:551.646720pt;}
._19{width:555.532800pt;}
._54{width:563.776000pt;}
._f{width:581.145600pt;}
._89{width:587.445760pt;}
._64{width:595.806720pt;}
._34{width:616.120320pt;}
._e{width:628.520448pt;}
._76{width:645.736960pt;}
._49{width:661.811200pt;}
._75{width:673.175040pt;}
._1d{width:708.503040pt;}
._8a{width:725.166080pt;}
._3{width:812.222720pt;}
._85{width:813.374208pt;}
._5d{width:854.431232pt;}
._46{width:862.120960pt;}
._4{width:884.903680pt;}
._c{width:908.047360pt;}
._51{width:914.465280pt;}
._65{width:941.314560pt;}
._0{width:1014.712320pt;}
._87{width:1058.426880pt;}
._1{width:1061.223680pt;}
._1a{width:1067.965440pt;}
._63{width:1171.829760pt;}
._24{width:1266.391040pt;}
._7f{width:1283.466240pt;}
._66{width:1291.532800pt;}
._23{width:1294.064640pt;}
._68{width:1298.480640pt;}
._88{width:1299.717120pt;}
._52{width:1338.813440pt;}
._35{width:1354.004480pt;}
._55{width:1453.276160pt;}
._83{width:1468.172800pt;}
.fs0{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:58.400000pt;}
.ya8{bottom:58.400640pt;}
.y40{bottom:58.404480pt;}
.y66{bottom:88.642560pt;}
.y86{bottom:88.649600pt;}
.y3f{bottom:90.729600pt;}
.y2b{bottom:90.729627pt;}
.y65{bottom:106.718720pt;}
.y85{bottom:106.725760pt;}
.y3e{bottom:108.805760pt;}
.y2a{bottom:108.805787pt;}
.y64{bottom:124.794880pt;}
.y84{bottom:124.801920pt;}
.y3d{bottom:127.043840pt;}
.y29{bottom:127.043867pt;}
.y63{bottom:143.047680pt;}
.y3c{bottom:145.120000pt;}
.y28{bottom:145.125760pt;}
.y62{bottom:161.123840pt;}
.y27{bottom:163.201920pt;}
.y61{bottom:179.200000pt;}
.y26{bottom:181.440000pt;}
.y25{bottom:181.452160pt;}
.y3b{bottom:181.453440pt;}
.y60{bottom:197.600000pt;}
.y24{bottom:199.528320pt;}
.y3a{bottom:199.529600pt;}
.y23{bottom:217.604480pt;}
.y39{bottom:217.605760pt;}
.y9d{bottom:223.544320pt;}
.y5f{bottom:227.520000pt;}
.y83{bottom:227.523840pt;}
.y22{bottom:235.842560pt;}
.y38{bottom:235.843840pt;}
.y9c{bottom:240.030720pt;}
.y5e{bottom:245.600000pt;}
.y82{bottom:245.621120pt;}
.y5d{bottom:245.630080pt;}
.y21{bottom:253.918720pt;}
.y37{bottom:253.920000pt;}
.y36{bottom:253.923840pt;}
.y81{bottom:263.859200pt;}
.y9b{bottom:269.956480pt;}
.y35{bottom:272.000000pt;}
.y34{bottom:272.022400pt;}
.y20{bottom:272.024320pt;}
.y80{bottom:281.935360pt;}
.y5c{bottom:281.944320pt;}
.y9a{bottom:288.032640pt;}
.y33{bottom:290.260480pt;}
.y1f{bottom:290.262400pt;}
.y7f{bottom:300.011520pt;}
.y5b{bottom:300.020480pt;}
.ya7{bottom:306.270720pt;}
.y32{bottom:308.336640pt;}
.y1e{bottom:308.338560pt;}
.y7e{bottom:318.249600pt;}
.y5a{bottom:318.258560pt;}
.y99{bottom:324.346880pt;}
.y31{bottom:326.574720pt;}
.y1d{bottom:326.576640pt;}
.y7d{bottom:336.325760pt;}
.y59{bottom:336.334720pt;}
.y98{bottom:342.423040pt;}
.y7c{bottom:354.401920pt;}
.y58{bottom:354.410880pt;}
.y30{bottom:356.647680pt;}
.y1c{bottom:356.649600pt;}
.y97{bottom:360.823040pt;}
.y7b{bottom:372.640000pt;}
.y7a{bottom:372.659200pt;}
.y57{bottom:372.663680pt;}
.y2f{bottom:374.723840pt;}
.y79{bottom:390.735360pt;}
.y56{bottom:390.739840pt;}
.y96{bottom:390.748800pt;}
.y1b{bottom:392.801920pt;}
.y78{bottom:408.811520pt;}
.y55{bottom:408.816000pt;}
.y95{bottom:408.824960pt;}
.y1a{bottom:411.040000pt;}
.y19{bottom:411.043840pt;}
.y77{bottom:427.049600pt;}
.y54{bottom:427.054080pt;}
.y94{bottom:427.063040pt;}
.y18{bottom:429.120000pt;}
.y17{bottom:429.125760pt;}
.y76{bottom:445.125760pt;}
.y53{bottom:445.130240pt;}
.y93{bottom:445.139200pt;}
.y16{bottom:447.201920pt;}
.y75{bottom:463.201920pt;}
.y52{bottom:463.206400pt;}
.y92{bottom:463.215360pt;}
.y15{bottom:465.440000pt;}
.y2e{bottom:465.447680pt;}
.y74{bottom:481.453440pt;}
.y51{bottom:481.459200pt;}
.y14{bottom:483.523840pt;}
.y73{bottom:499.529600pt;}
.y50{bottom:499.535360pt;}
.y13{bottom:501.600000pt;}
.y12{bottom:501.601920pt;}
.y72{bottom:517.605760pt;}
.y4f{bottom:517.611520pt;}
.y11{bottom:519.840000pt;}
.y10{bottom:519.840640pt;}
.y2d{bottom:519.841920pt;}
.y71{bottom:535.843840pt;}
.y4e{bottom:535.849600pt;}
.yf{bottom:538.093440pt;}
.y91{bottom:553.920000pt;}
.y4d{bottom:553.925760pt;}
.ya6{bottom:553.927680pt;}
.ye{bottom:568.019200pt;}
.y4c{bottom:572.001920pt;}
.y90{bottom:572.003840pt;}
.y2c{bottom:586.257280pt;}
.y4b{bottom:590.240000pt;}
.y8f{bottom:590.241920pt;}
.y70{bottom:590.245760pt;}
.yd{bottom:604.333440pt;}
.y4a{bottom:608.321920pt;}
.y8e{bottom:608.480000pt;}
.yc{bottom:622.409600pt;}
.y49{bottom:626.560000pt;}
.y6f{bottom:626.574720pt;}
.y48{bottom:626.577280pt;}
.y8d{bottom:638.421067pt;}
.ya5{bottom:638.421120pt;}
.yb{bottom:640.647680pt;}
.y6e{bottom:656.647680pt;}
.y47{bottom:656.650240pt;}
.ya4{bottom:656.659200pt;}
.ya{bottom:658.723840pt;}
.y6d{bottom:674.723840pt;}
.y46{bottom:674.726400pt;}
.y8c{bottom:674.735307pt;}
.ya3{bottom:674.735360pt;}
.y9{bottom:676.800000pt;}
.y6c{bottom:692.800000pt;}
.y45{bottom:692.802560pt;}
.y6b{bottom:692.805760pt;}
.y8b{bottom:692.811467pt;}
.ya2{bottom:692.811520pt;}
.y8{bottom:710.560000pt;}
.y44{bottom:711.040640pt;}
.y6a{bottom:711.043840pt;}
.y8a{bottom:711.049547pt;}
.ya1{bottom:711.049600pt;}
.y43{bottom:729.116800pt;}
.y69{bottom:729.123840pt;}
.y89{bottom:729.125707pt;}
.ya0{bottom:729.125760pt;}
.y7{bottom:736.800000pt;}
.y68{bottom:747.200640pt;}
.y88{bottom:747.201867pt;}
.y9f{bottom:747.201920pt;}
.y42{bottom:747.207680pt;}
.y6{bottom:762.720000pt;}
.y67{bottom:765.438720pt;}
.y87{bottom:765.440000pt;}
.y41{bottom:765.445760pt;}
.y9e{bottom:765.446400pt;}
.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;}
.h6{height:49.306250pt;}
.hb{height:49.334303pt;}
.h9{height:49.335000pt;}
.ha{height:49.736120pt;}
.h8{height:49.795000pt;}
.hc{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;}
.x4d{left:92.797440pt;}
.xc{left:93.759867pt;}
.x2c{left:95.200000pt;}
.x15{left:99.843840pt;}
.x27{left:103.840000pt;}
.x40{left:105.596160pt;}
.xa{left:110.562400pt;}
.x3e{left:115.040000pt;}
.x13{left:117.907200pt;}
.x1c{left:119.358720pt;}
.x59{left:123.542853pt;}
.xf{left:124.943360pt;}
.xb{left:128.320000pt;}
.x53{left:130.726213pt;}
.x4b{left:134.396160pt;}
.x28{left:135.680000pt;}
.x3d{left:136.730880pt;}
.x1{left:137.757333pt;}
.x37{left:140.661120pt;}
.x48{left:144.485147pt;}
.x5a{left:147.840000pt;}
.x3b{left:149.080960pt;}
.x6{left:151.360000pt;}
.x12{left:152.278400pt;}
.x49{left:162.239867pt;}
.x36{left:164.640000pt;}
.x19{left:168.492315pt;}
.x47{left:169.436800pt;}
.x21{left:172.336000pt;}
.x33{left:174.087067pt;}
.x23{left:175.988133pt;}
.x43{left:177.920000pt;}
.x3a{left:179.477760pt;}
.x44{left:183.200000pt;}
.x32{left:184.641307pt;}
.x52{left:190.253893pt;}
.x54{left:192.638533pt;}
.x9{left:196.470400pt;}
.x4c{left:201.592960pt;}
.x57{left:203.663813pt;}
.x18{left:215.355280pt;}
.x20{left:216.451840pt;}
.x45{left:229.760000pt;}
.x31{left:234.085787pt;}
.x1f{left:235.543680pt;}
.x50{left:239.006533pt;}
.x35{left:247.510693pt;}
.xd{left:250.240000pt;}
.x24{left:254.243867pt;}
.x56{left:261.587013pt;}
.x30{left:273.285147pt;}
.x11{left:274.410240pt;}
.x39{left:295.795200pt;}
.x1b{left:298.088960pt;}
.x4e{left:306.723200pt;}
.x2e{left:310.879360pt;}
.x7{left:312.160000pt;}
.x10{left:328.417920pt;}
.x4{left:330.237200pt;}
.x8{left:331.517467pt;}
.xe{left:337.426560pt;}
.x2f{left:341.600667pt;}
.x4f{left:348.230363pt;}
.x41{left:385.600000pt;}
.x3f{left:400.195333pt;}
.x58{left:405.460293pt;}
.x25{left:408.800000pt;}
.x16{left:410.553067pt;}
.x34{left:429.724667pt;}
.x4a{left:433.374080pt;}
.x1e{left:436.854400pt;}
.x55{left:439.036613pt;}
.x2a{left:446.240000pt;}
.x3{left:447.366667pt;}
.x1a{left:449.440000pt;}
.x42{left:453.920000pt;}
.x14{left:468.960933pt;}
.x17{left:473.779600pt;}
.x51{left:494.324933pt;}
.x22{left:502.242491pt;}
.x29{left:507.040000pt;}
.x3c{left:519.038720pt;}
.x46{left:521.280000pt;}
.x38{left:528.297600pt;}
.x1d{left:538.334080pt;}
.x2b{left:539.360000pt;}
.x2d{left:551.680000pt;}
.x26{left:560.000000pt;}
.x2{left:563.200000pt;}
}

