• DELETE FROM KEYWORDS WHERE ID_DOMAINE=2838838
  • DoneDoneDone

    URL:www.paulen.no

    Connection: keep-alive
    Date: Wed, 30 Oct 2024 14:19:59 GMT
    Content-Length: 162
    Content-Type: text/html
    Location: https://www.paulen.no/
    Server: nginx
    
    
    Location => https://www.paulen.no/
    Status => 301
    <html>
    <head><title>301 Moved Permanently</title></head>
    

    (vide) Tentative en https

    https://www.paulen.no/

    <!DOCTYPE html>
    <html lang="nb-NO" class="no-js no-svg">
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="profile" href="https://gmpg.org/xfn/11">
    
    <script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>
    <title>          Været i Paulen på Flekkerøy</title>
    <meta name='robots' content='max-image-preview:large' />
    <link rel="alternate" type="application/rss+xml" title="          Været i Paulen på Flekkerøy &raquo; strøm" href="https://www.paulen.no/?feed=rss2" />
    <link rel="alternate" type="application/rss+xml" title="          Været i Paulen på Flekkerøy &raquo; kommentarstrøm" href="https://www.paulen.no/?feed=comments-rss2" />
    <script>
    window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/www.paulen.no\/wp-includes\/js\/wp-emoji.js?ver=6.6.2","twemoji":"https:\/\/www.paulen.no\/wp-includes\/js\/twemoji.js?ver=6.6.2"}};
    /**
     * @output wp-includes/js/wp-emoji-loader.js
     */
    
    /**
     * Emoji Settings as exported in PHP via _print_emoji_detection_script().
     * @typedef WPEmojiSettings
     * @type {object}
     * @property {?object} source
     * @property {?string} source.concatemoji
     * @property {?string} source.twemoji
     * @property {?string} source.wpemoji
     * @property {?boolean} DOMReady
     * @property {?Function} readyCallback
     */
    
    /**
     * Support tests.
     * @typedef SupportTests
     * @type {object}
     * @property {?boolean} flag
     * @property {?boolean} emoji
     */
    
    /**
     * IIFE to detect emoji support and load Twemoji if needed.
     *
     * @param {Window} window
     * @param {Document} document
     * @param {WPEmojiSettings} settings
     */
    ( function wpEmojiLoader( window, document, settings ) {
    	if ( typeof Promise === 'undefined' ) {
    		return;
    	}
    
    	var sessionStorageKey = 'wpEmojiSettingsSupports';
    	var tests = [ 'flag', 'emoji' ];
    
    	/**
    	 * Checks whether the browser supports offloading to a Worker.
    	 *
    	 * @since 6.3.0
    	 *
    	 * @private
    	 *
    	 * @returns {boolean}
    	 */
    	function supportsWorkerOffloading() {
    		return (
    			typeof Worker !== 'undefined' &&
    			typeof OffscreenCanvas !== 'undefined' &&
    			typeof URL !== 'undefined' &&
    			URL.createObjectURL &&
    			typeof Blob !== 'undefined'
    		);
    	}
    
    	/**
    	 * @typedef SessionSupportTests
    	 * @type {object}
    	 * @property {number} timestamp
    	 * @property {SupportTests} supportTests
    	 */
    
    	/**
    	 * Get support tests from session.
    	 *
    	 * @since 6.3.0
    	 *
    	 * @private
    	 *
    	 * @returns {?SupportTests} Support tests, or null if not set or older than 1 week.
    	 */
    	function getSessionSupportTests() {
    		try {
    			/** @type {SessionSupportTests} */
    			var item = JSON.parse(
    				sessionStorage.getItem( sessionStorageKey )
    			);
    			if (
    				typeof item === 'object' &&
    				typeof item.timestamp === 'number' &&
    				new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds.
    				typeof item.supportTests === 'object'
    			) {
    				return item.supportTests;
    			}
    		} catch ( e ) {}
    		return null;
    	}
    
    	/**
    	 * Persist the supports in session storage.
    	 *
    	 * @since 6.3.0
    	 *
    	 * @private
    	 *
    	 * @param {SupportTests} supportTests Support tests.
    	 */
    	function setSessionSupportTests( supportTests ) {
    		try {
    			/** @type {SessionSupportTests} */
    			var item = {
    				supportTests: supportTests,
    				timestamp: new Date().valueOf()
    			};
    
    			sessionStorage.setItem(
    				sessionStorageKey,
    				JSON.stringify( item )
    			);
    		} catch ( e ) {}
    	}
    
    	/**
    	 * Checks if two sets of Emoji characters render the same visually.
    	 *
    	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
    	 * scope. Everything must be passed by parameters.
    	 *
    	 * @since 4.9.0
    	 *
    	 * @private
    	 *
    	 * @param {CanvasRenderingContext2D} context 2D Context.
    	 * @param {string} set1 Set of Emoji to test.
    	 * @param {string} set2 Set of Emoji to test.
    	 *
    	 * @return {boolean} True if the two sets render the same.
    	 */
    	function emojiSetsRenderIdentically( context, set1, set2 ) {
    		// Cleanup from previous test.
    		context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
    		context.fillText( set1, 0, 0 );
    		var rendered1 = new Uint32Array(
    			context.getImageData(
    				0,
    				0,
    				context.canvas.width,
    				context.canvas.height
    			).data
    		);
    
    		// Cleanup from previous test.
    		context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
    		context.fillText( set2, 0, 0 );
    		var rendered2 = new Uint32Array(
    			context.getImageData(
    				0,
    				0,
    				context.canvas.width,
    				context.canvas.height
    			).data
    		);
    
    		return rendered1.every( function ( rendered2Data, index ) {
    			return rendered2Data === rendered2[ index ];
    		} );
    	}
    
    	/**
    	 * Determines if the browser properly renders Emoji that Twemoji can supplement.
    	 *
    	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
    	 * scope. Everything must be passed by parameters.
    	 *
    	 * @since 4.2.0
    	 *
    	 * @private
    	 *
    	 * @param {CanvasRenderingContext2D} context 2D Context.
    	 * @param {string} type Whether to test for support of "flag" or "emoji".
    	 * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
    	 *
    	 * @return {boolean} True if the browser can render emoji, false if it cannot.
    	 */
    	function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) {
    		var isIdentical;
    
    		switch ( type ) {
    			case 'flag':
    				/*
    				 * Test for Transgender flag compatibility. Added in Unicode 13.
    				 *
    				 * To test for support, we try to render it, and compare the rendering to how it would look if
    				 * the browser doesn't render it correctly (white flag emoji + transgender symbol).
    				 */
    				isIdentical = emojiSetsRenderIdentically(
    					context,
    					'\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence
    					'\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space
    				);
    
    				if ( isIdentical ) {
    					return false;
    				}
    
    				/*
    				 * Test for UN flag compatibility. This is the least supported of the letter locale flags,
    				 * so gives us an easy test for full support.
    				 *
    				 * To test for support, we try to render it, and compare the rendering to how it would look if
    				 * the browser doesn't render it correctly ([U] + [N]).
    				 */
    				isIdentical = emojiSetsRenderIdentically(
    					context,
    					'\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points
    					'\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space
    				);
    
    				if ( isIdentical ) {
    					return false;
    				}
    
    				/*
    				 * Test for English flag compatibility. England is a country in the United Kingdom, it
    				 * does not have a two letter locale code but rather a five letter sub-division code.
    				 *
    				 * To test for support, we try to render it, and compare the rendering to how it would look if
    				 * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]).
    				 */
    				isIdentical = emojiSetsRenderIdentically(
    					context,
    					// as the flag sequence
    					'\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F',
    					// with each code point separated by a zero-width space
    					'\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F'
    				);
    
    				return ! isIdentical;
    			case 'emoji':
    				/*
    				 * Four and twenty blackbirds baked in a pie.
    				 *
    				 * To test for Emoji 15.0 support, try to render a new emoji: Blackbird.
    				 *
    				 * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square.,
    				 *
    				 * 0x1F426 (\uD83D\uDC26) == Bird
    				 * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or
    				 * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji.
    				 * 0x2B1B == Large Black Square
    				 *
    				 * When updating this test for future Emoji releases, ensure that individual emoji that make up the
    				 * sequence come from older emoji standards.
    				 */
    				isIdentical = emojiSetsRenderIdentically(
    					context,
    					'\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence
    					'\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space
    				);
    
    				return ! isIdentical;
    		}
    
    		return false;
    	}
    
    	/**
    	 * Checks emoji support tests.
    	 *
    	 * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
    	 * scope. Everything must be passed by parameters.
    	 *
    	 * @since 6.3.0
    	 *
    	 * @private
    	 *
    	 * @param {string[]} tests Tests.
    	 * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification.
    	 * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
    	 *
    	 * @return {SupportTests} Support tests.
    	 */
    	function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) {
    		var canvas;
    		if (
    			typeof WorkerGlobalScope !== 'undefined' &&
    			self instanceof WorkerGlobalScope
    		) {
    			canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement.
    		} else {
    			canvas = document.createElement( 'canvas' );
    		}
    
    		var context = canvas.getContext( '2d', { willReadFrequently: true } );
    
    		/*
    		 * Chrome on OS X added native emoji rendering in M41. Unfortunately,
    		 * it doesn't work when the font is bolder than 500 weight. So, we
    		 * check for bold rendering support to avoid invisible emoji in Chrome.
    		 */
    		context.textBaseline = 'top';
    		context.font = '600 32px Arial';
    
    		var supports = {};
    		tests.forEach( function ( test ) {
    			supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically );
    		} );
    		return supports;
    	}
    
    	/**
    	 * Adds a script to the head of the document.
    	 *
    	 * @ignore
    	 *
    	 * @since 4.2.0
    	 *
    	 * @param {string} src The url where the script is located.
    	 *
    	 * @return {void}
    	 */
    	function addScript( src ) {
    		var script = document.createElement( 'script' );
    		script.src = src;
    		script.defer = true;
    		document.head.appendChild( script );
    	}
    
    	settings.supports = {
    		everything: true,
    		everythingExceptFlag: true
    	};
    
    	// Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired.
    	var domReadyPromise = new Promise( function ( resolve ) {
    		document.addEventListener( 'DOMContentLoaded', resolve, {
    			once: true
    		} );
    	} );
    
    	// Obtain the emoji support from the browser, asynchronously when possible.
    	new Promise( function ( resolve ) {
    		var supportTests = getSessionSupportTests();
    		if ( supportTests ) {
    			resolve( supportTests );
    			return;
    		}
    
    		if ( supportsWorkerOffloading() ) {
    			try {
    				// Note that the functions are being passed as arguments due to minification.
    				var workerScript =
    					'postMessage(' +
    					testEmojiSupports.toString() +
    					'(' +
    					[
    						JSON.stringify( tests ),
    						browserSupportsEmoji.toString(),
    						emojiSetsRenderIdentically.toString()
    					].join( ',' ) +
    					'));';
    				var blob = new Blob( [ workerScript ], {
    					type: 'text/javascript'
    				} );
    				var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } );
    				worker.onmessage = function ( event ) {
    					supportTests = event.data;
    					setSessionSupportTests( supportTests );
    					worker.terminate();
    					resolve( supportTests );
    				};
    				return;
    			} catch ( e ) {}
    		}
    
    		supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically );
    		setSessionSupportTests( supportTests );
    		resolve( supportTests );
    	} )
    		// Once the browser emoji support has been obtained from the session, finalize the settings.
    		.then( function ( supportTests ) {
    			/*
    			 * Tests the browser support for flag emojis and other emojis, and adjusts the
    			 * support settings accordingly.
    			 */
    			for ( var test in supportTests ) {
    				settings.supports[ test ] = supportTests[ test ];
    
    				settings.supports.everything =
    					settings.supports.everything && settings.supports[ test ];
    
    				if ( 'flag' !== test ) {
    					settings.supports.everythingExceptFlag =
    						settings.supports.everythingExceptFlag &&
    						settings.supports[ test ];
    				}
    			}
    
    			settings.supports.everythingExceptFlag =
    				settings.supports.everythingExceptFlag &&
    				! settings.supports.flag;
    
    			// Sets DOMReady to false and assigns a ready function to settings.
    			settings.DOMReady = false;
    			settings.readyCallback = function () {
    				settings.DOMReady = true;
    			};
    		} )
    		.then( function () {
    			return domReadyPromise;
    		} )
    		.then( function () {
    			// When the browser can not render everything we need to load a polyfill.
    			if ( ! settings.supports.everything ) {
    				settings.readyCallback();
    
    				var src = settings.source || {};
    
    				if ( src.concatemoji ) {
    					addScript( src.concatemoji );
    				} else if ( src.wpemoji && src.twemoji ) {
    					addScript( src.twemoji );
    					addScript( src.wpemoji );
    				}
    			}
    		} );
    } )( window, document, window._wpemojiSettings );
    </script>
    <style id='wp-emoji-styles-inline-css'>
    
    	img.wp-smiley, img.emoji {
    		display: inline !important;
    		border: none !important;
    		box-shadow: none !important;
    		height: 1em !important;
    		width: 1em !important;
    		margin: 0 0.07em !important;
    		vertical-align: -0.1em !important;
    		background: none !important;
    		padding: 0 !important;
    	}
    </style>
    <link rel='stylesheet' id='wp-block-library-css' href='https://www.paulen.no/wp-includes/css/dist/block-library/style.css?ver=6.6.2' media='all' />
    <style id='wp-block-library-theme-inline-css'>
    .wp-block-audio :where(figcaption){
      color:#555;
      font-size:13px;
      text-align:center;
    }
    .is-dark-theme .wp-block-audio :where(figcaption){
      color:#ffffffa6;
    }
    
    .wp-block-audio{
      margin:0 0 1em;
    }
    
    .wp-block-code{
      border:1px solid #ccc;
      border-radius:4px;
      font-family:Menlo,Consolas,monaco,monospace;
      padding:.8em 1em;
    }
    
    .wp-block-embed :where(figcaption){
      color:#555;
      font-size:13px;
      text-align:center;
    }
    .is-dark-theme .wp-block-embed :where(figcaption){
      color:#ffffffa6;
    }
    
    .wp-block-embed{
      margin:0 0 1em;
    }
    
    .blocks-gallery-caption{
      color:#555;
      font-size:13px;
      text-align:center;
    }
    .is-dark-theme .blocks-gallery-caption{
      color:#ffffffa6;
    }
    
    :root :where(.wp-block-image figcaption){
      color:#555;
      font-size:13px;
      text-align:center;
    }
    .is-dark-theme :root :where(.wp-block-image figcaption){
      color:#ffffffa6;
    }
    
    .wp-block-image{
      margin:0 0 1em;
    }
    
    .wp-block-pullquote{
      border-bottom:4px solid;
      border-top:4px solid;
      color:currentColor;
      margin-bottom:1.75em;
    }
    .wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{
      color:currentColor;
      font-size:.8125em;
      font-style:normal;
      text-transform:uppercase;
    }
    
    .wp-block-quote{
      border-left:.25em solid;
      margin:0 0 1.75em;
      padding-left:1em;
    }
    .wp-block-quote cite,.wp-block-quote footer{
      color:currentColor;
      font-size:.8125em;
      font-style:normal;
      position:relative;
    }
    .wp-block-quote.has-text-align-right{
      border-left:none;
      border-right:.25em solid;
      padding-left:0;
      padding-right:1em;
    }
    .wp-block-quote.has-text-align-center{
      border:none;
      padding-left:0;
    }
    .wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote.is-style-plain{
      border:none;
    }
    
    .wp-block-search .wp-block-search__label{
      font-weight:700;
    }
    
    .wp-block-search__button{
      border:1px solid #ccc;
      padding:.375em .625em;
    }
    
    :where(.wp-block-group.has-background){
      padding:1.25em 2.375em;
    }
    
    .wp-block-separator.has-css-opacity{
      opacity:.4;
    }
    
    .wp-block-separator{
      border:none;
      border-bottom:2px solid;
      margin-left:auto;
      margin-right:auto;
    }
    .wp-block-separator.has-alpha-channel-opacity{
      opacity:1;
    }
    .wp-block-separator:not(.is-style-wide):not(.is-style-dots){
      width:100px;
    }
    .wp-block-separator.has-background:not(.is-style-dots){
      border-bottom:none;
      height:1px;
    }
    .wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){
      height:2px;
    }
    
    .wp-block-table{
      margin:0 0 1em;
    }
    .wp-block-table td,.wp-block-table th{
      word-break:normal;
    }
    .wp-block-table :where(figcaption){
      color:#555;
      font-size:13px;
      text-align:center;
    }
    .is-dark-theme .wp-block-table :where(figcaption){
      color:#ffffffa6;
    }
    
    .wp-block-video :where(figcaption){
      color:#555;
      font-size:13px;
      text-align:center;
    }
    .is-dark-theme .wp-block-video :where(figcaption){
      color:#ffffffa6;
    }
    
    .wp-block-video{
      margin:0 0 1em;
    }
    
    :root :where(.wp-block-template-part.has-background){
      margin-bottom:0;
      margin-top:0;
      padding:1.25em 2.375em;
    }
    </style>
    <style id='classic-theme-styles-inline-css'>
    /**
     * These rules are needed for backwards compatibility.
     * They should match the button element rules in the base theme.json file.
     */
    .wp-block-button__link {
    	color: #ffffff;
    	background-color: #32373c;
    	border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */
    
    	/* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */
    	box-shadow: none;
    	text-decoration: none;
    
    	/* The extra 2px are added to size solids the same as the outline versions.*/
    	padding: calc(0.667em + 2px) calc(1.333em + 2px);
    
    	font-size: 1.125em;
    }
    
    .wp-block-file__button {
    	background: #32373c;
    	color: #ffffff;
    	text-decoration: none;
    }
    
    </style>
    <style id='global-styles-inline-css'>
    :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
    :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
    :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
    :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
    </style>
    <link rel='stylesheet' id='twentyseventeen-fonts-css' href='https://www.paulen.no/wp-content/themes/twentyseventeen/assets/fonts/font-libre-franklin.css?ver=20230328' media='all' />
    <link rel='stylesheet' id='twentyseventeen-style-css' href='https://www.paulen.no/wp-content/themes/twentyseventeen/style.css?ver=20230328' media='all' />
    <link rel='stylesheet' id='twentyseventeen-block-style-css' href='https://www.paulen.no/wp-content/themes/twentyseventeen/assets/css/blocks.css?ver=20220912' media='all' />
    <!--[if lt IE 9]>
    <link rel='stylesheet' id='twentyseventeen-ie8-css' href='https://www.paulen.no/wp-content/themes/twentyseventeen/assets/css/ie8.css?ver=20161202' media='all' />
    <![endif]-->
    <!--[if lt IE 9]>
    <script src="https://www.paulen.no/wp-content/themes/twentyseventeen/assets/js/html5.js?ver=20161020" id="html5-js"></script>
    <![endif]-->
    <script src="https://www.paulen.no/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script>
    <script src="https://www.paulen.no/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script>
    <link rel="https://api.w.org/" href="https://www.paulen.no/index.php?rest_route=/" /><link rel="alternate" title="JSON" type="application/json" href="https://www.paulen.no/index.php?rest_route=/wp/v2/pages/8" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.paulen.no/xmlrpc.php?rsd" />
    <meta name="generator" content="WordPress 6.6.2" />
    <link rel="canonical" href="https://www.paulen.no/" />
    <link rel='shortlink' href='https://www.paulen.no/' />
    <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.paulen.no/index.php?rest_route=%2Foembed%2F1.0%2Fembed&#038;url=https%3A%2F%2Fwww.paulen.no%2F" />
    <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.paulen.no/index.php?rest_route=%2Foembed%2F1.0%2Fembed&#038;url=https%3A%2F%2Fwww.paulen.no%2F&#038;format=xml" />
    	<style type="text/css" id="custom-theme-colors" >
    		
    /**
     * Twenty Seventeen: Color Patterns
     *
     * Colors are ordered from dark to light.
     */
    
    .colors-custom a:hover,
    .colors-custom a:active,
    .colors-custom .entry-content a:focus,
    .colors-custom .entry-content a:hover,
    .colors-custom .entry-summary a:focus,
    .colors-custom .entry-summary a:hover,
    .colors-custom .comment-content a:focus,
    .colors-custom .comment-content a:hover,
    .colors-custom .widget a:focus,
    .colors-custom .widget a:hover,
    .colors-custom .site-footer .widget-area a:focus,
    .colors-custom .site-footer .widget-area a:hover,
    .colors-custom .posts-navigation a:focus,
    .colors-custom .posts-navigation a:hover,
    .colors-custom .comment-metadata a:focus,
    .colors-custom .comment-metadata a:hover,
    .colors-custom .comment-metadata a.comment-edit-link:focus,
    .colors-custom .comment-metadata a.comment-edit-link:hover,
    .colors-custom .comment-reply-link:focus,
    .colors-custom .comment-reply-link:hover,
    .colors-custom .widget_authors a:focus strong,
    .colors-custom .widget_authors a:hover strong,
    .colors-custom .entry-title a:focus,
    .colors-custom .entry-title a:hover,
    .colors-custom .entry-meta a:focus,
    .colors-custom .entry-meta a:hover,
    .colors-custom.blog .entry-meta a.post-edit-link:focus,
    .colors-custom.blog .entry-meta a.post-edit-link:hover,
    .colors-custom.archive .entry-meta a.post-edit-link:focus,
    .colors-custom.archive .entry-meta a.post-edit-link:hover,
    .colors-custom.search .entry-meta a.post-edit-link:focus,
    .colors-custom.search .entry-meta a.post-edit-link:hover,
    .colors-custom .page-links a:focus .page-number,
    .colors-custom .page-links a:hover .page-number,
    .colors-custom .entry-footer a:focus,
    .colors-custom .entry-footer a:hover,
    .colors-custom .entry-footer .cat-links a:focus,
    .colors-custom .entry-footer .cat-links a:hover,
    .colors-custom .entry-footer .tags-links a:focus,
    .colors-custom .entry-footer .tags-links a:hover,
    .colors-custom .post-navigation a:focus,
    .colors-custom .post-navigation a:hover,
    .colors-custom .pagination a:not(.prev):not(.next):focus,
    .colors-custom .pagination a:not(.prev):not(.next):hover,
    .colors-custom .comments-pagination a:not(.prev):not(.next):focus,
    .colors-custom .comments-pagination a:not(.prev):not(.next):hover,
    .colors-custom .logged-in-as a:focus,
    .colors-custom .logged-in-as a:hover,
    .colors-custom a:focus .nav-title,
    .colors-custom a:hover .nav-title,
    .colors-custom .edit-link a:focus,
    .colors-custom .edit-link a:hover,
    .colors-custom .site-info a:focus,
    .colors-custom .site-info a:hover,
    .colors-custom .widget .widget-title a:focus,
    .colors-custom .widget .widget-title a:hover,
    .colors-custom .widget ul li a:focus,
    .colors-custom .widget ul li a:hover {
    	color: hsl( 19, 50%, 0% ); /* base: #000; */
    }
    
    .colors-custom .entry-content a,
    .colors-custom .entry-summary a,
    .colors-custom .comment-content a,
    .colors-custom .widget a,
    .colors-custom .site-footer .widget-area a,
    .colors-custom .posts-navigation a,
    .colors-custom .widget_authors a strong {
    	-webkit-box-shadow: inset 0 -1px 0 hsl( 19, 50%, 6% ); /* base: rgba(15, 15, 15, 1); */
    	box-shadow: inset 0 -1px 0 hsl( 19, 50%, 6% ); /* base: rgba(15, 15, 15, 1); */
    }
    
    .colors-custom button,
    .colors-custom input[type="button"],
    .colors-custom input[type="submit"],
    .colors-custom .entry-footer .edit-link a.post-edit-link {
    	background-color: hsl( 19, 50%, 13% ); /* base: #222; */
    }
    
    .colors-custom input[type="text"]:focus,
    .colors-custom input[type="email"]:focus,
    .colors-custom input[type="url"]:focus,
    .colors-custom input[type="password"]:focus,
    .colors-custom input[type="search"]:focus,
    .colors-custom input[type="number"]:focus,
    .colors-custom input[type="tel"]:focus,
    .colors-custom input[type="range"]:focus,
    .colors-custom input[type="date"]:focus,
    .colors-custom input[type="month"]:focus,
    .colors-custom input[type="week"]:focus,
    .colors-custom input[type="time"]:focus,
    .colors-custom input[type="datetime"]:focus,
    .colors-custom .colors-custom input[type="datetime-local"]:focus,
    .colors-custom input[type="color"]:focus,
    .colors-custom textarea:focus,
    .colors-custom button.secondary,
    .colors-custom input[type="reset"],
    .colors-custom input[type="button"].secondary,
    .colors-custom input[type="reset"].secondary,
    .colors-custom input[type="submit"].secondary,
    .colors-custom a,
    .colors-custom .site-title,
    .colors-custom .site-title a,
    .colors-custom .navigation-top a,
    .colors-custom .dropdown-toggle,
    .colors-custom .menu-toggle,
    .colors-custom .page .panel-content .entry-title,
    .colors-custom .page-title,
    .colors-custom.page:not(.twentyseventeen-front-page) .entry-title,
    .colors-custom .page-links a .page-number,
    .colors-custom .comment-metadata a.comment-edit-link,
    .colors-custom .comment-reply-link .icon,
    .colors-custom h2.widget-title,
    .colors-custom mark,
    .colors-custom .post-navigation a:focus .icon,
    .colors-custom .post-navigation a:hover .icon,
    .colors-custom .site-content .site-content-light,
    .colors-custom .twentyseventeen-panel .recent-posts .entry-header .edit-link {
    	color: hsl( 19, 50%, 13% ); /* base: #222; */
    }
    
    .colors-custom .entry-content a:focus,
    .colors-custom .entry-content a:hover,
    .colors-custom .entry-summary a:focus,
    .colors-custom .entry-summary a:hover,
    .colors-custom .comment-content a:focus,
    .colors-custom .comment-content a:hover,
    .colors-custom .widget a:focus,
    .colors-custom .widget a:hover,
    .colors-custom .site-footer .widget-area a:focus,
    .colors-custom .site-footer .widget-area a:hover,
    .colors-custom .posts-navigation a:focus,
    .colors-custom .posts-navigation a:hover,
    .colors-custom .comment-metadata a:focus,
    .colors-custom .comment-metadata a:hover,
    .colors-custom .comment-metadata a.comment-edit-link:focus,
    .colors-custom .comment-metadata a.comment-edit-link:hover,
    .colors-custom .comment-reply-link:focus,
    .colors-custom .comment-reply-link:hover,
    .colors-custom .widget_authors a:focus strong,
    .colors-custom .widget_authors a:hover strong,
    .colors-custom .entry-title a:focus,
    .colors-custom .entry-title a:hover,
    .colors-custom .entry-meta a:focus,
    .colors-custom .entry-meta a:hover,
    .colors-custom.blog .entry-meta a.post-edit-link:focus,
    .colors-custom.blog .entry-meta a.post-edit-link:hover,
    .colors-custom.archive .entry-meta a.post-edit-link:focus,
    .colors-custom.archive .entry-meta a.post-edit-link:hover,
    .colors-custom.search .entry-meta a.post-edit-link:focus,
    .colors-custom.search .entry-meta a.post-edit-link:hover,
    .colors-custom .page-links a:focus .page-number,
    .colors-custom .page-links a:hover .page-number,
    .colors-custom .entry-footer .cat-links a:focus,
    .colors-custom .entry-footer .cat-links a:hover,
    .colors-custom .entry-footer .tags-links a:focus,
    .colors-custom .entry-footer .tags-links a:hover,
    .colors-custom .post-navigation a:focus,
    .colors-custom .post-navigation a:hover,
    .colors-custom .pagination a:not(.prev):not(.next):focus,
    .colors-custom .pagination a:not(.prev):not(.next):hover,
    .colors-custom .comments-pagination a:not(.prev):not(.next):focus,
    .colors-custom .comments-pagination a:not(.prev):not(.next):hover,
    .colors-custom .logged-in-as a:focus,
    .colors-custom .logged-in-as a:hover,
    .colors-custom a:focus .nav-title,
    .colors-custom a:hover .nav-title,
    .colors-custom .edit-link a:focus,
    .colors-custom .edit-link a:hover,
    .colors-custom .site-info a:focus,
    .colors-custom .site-info a:hover,
    .colors-custom .widget .widget-title a:focus,
    .colors-custom .widget .widget-title a:hover,
    .colors-custom .widget ul li a:focus,
    .colors-custom .widget ul li a:hover {
    	-webkit-box-shadow: inset 0 0 0 hsl( 19, 50%, 13% ), 0 3px 0 hsl( 19, 50%, 13% );
    	box-shadow: inset 0 0 0 hsl( 19, 50% , 13% ), 0 3px 0 hsl( 19, 50%, 13% );
    }
    
    body.colors-custom,
    .colors-custom button,
    .colors-custom input,
    .colors-custom select,
    .colors-custom textarea,
    .colors-custom h3,
    .colors-custom h4,
    .colors-custom h6,
    .colors-custom label,
    .colors-custom .entry-title a,
    .colors-custom.twentyseventeen-front-page .panel-content .recent-posts article,
    .colors-custom .entry-footer .cat-links a,
    .colors-custom .entry-footer .tags-links a,
    .colors-custom .format-quote blockquote,
    .colors-custom .nav-title,
    .colors-custom .comment-body,
    .colors-custom .site-content .wp-playlist-light .wp-playlist-current-item .wp-playlist-item-album {
    	color: hsl( 19, 40%, 20% ); /* base: #333; */
    }
    
    .colors-custom .social-navigation a:hover,
    .colors-custom .social-navigation a:focus {
    	background: hsl( 19, 40%, 20% ); /* base: #333; */
    }
    
    .colors-custom input[type="text"]:focus,
    .colors-custom input[type="email"]:focus,
    .colors-custom input[type="url"]:focus,
    .colors-custom input[type="password"]:focus,
    .colors-custom input[type="search"]:focus,
    .colors-custom input[type="number"]:focus,
    .colors-custom input[type="tel"]:focus,
    .colors-custom input[type="range"]:focus,
    .colors-custom input[type="date"]:focus,
    .colors-custom input[type="month"]:focus,
    .colors-custom input[type="week"]:focus,
    .colors-custom input[type="time"]:focus,
    .colors-custom input[type="datetime"]:focus,
    .colors-custom input[type="datetime-local"]:focus,
    .colors-custom input[type="color"]:focus,
    .colors-custom textarea:focus,
    .bypostauthor > .comment-body > .comment-meta > .comment-author .avatar {
    	border-color: hsl( 19, 40%, 20% ); /* base: #333; */
    }
    
    .colors-custom h2,
    .colors-custom blockquote,
    .colors-custom input[type="text"],
    .colors-custom input[type="email"],
    .colors-custom input[type="url"],
    .colors-custom input[type="password"],
    .colors-custom input[type="search"],
    .colors-custom input[type="number"],
    .colors-custom input[type="tel"],
    .colors-custom input[type="range"],
    .colors-custom input[type="date"],
    .colors-custom input[type="month"],
    .colors-custom input[type="week"],
    .colors-custom input[type="time"],
    .colors-custom input[type="datetime"],
    .colors-custom input[type="datetime-local"],
    .colors-custom input[type="color"],
    .colors-custom textarea,
    .colors-custom .site-description,
    .colors-custom .entry-content blockquote.alignleft,
    .colors-custom .entry-content blockquote.alignright,
    .colors-custom .colors-custom .taxonomy-description,
    .colors-custom .site-info a,
    .colors-custom .wp-caption,
    .colors-custom .gallery-caption {
    	color: hsl( 19, 50%, 40% ); /* base: #666; */
    }
    
    .colors-custom abbr,
    .colors-custom acronym {
    	border-bottom-color: hsl( 19, 50%, 40% ); /* base: #666; */
    }
    
    .colors-custom h5,
    .colors-custom .entry-meta,
    .colors-custom .entry-meta a,
    .colors-custom.blog .entry-meta a.post-edit-link,
    .colors-custom.archive .entry-meta a.post-edit-link,
    .colors-custom.search .entry-meta a.post-edit-link,
    .colors-custom .nav-subtitle,
    .colors-custom .comment-metadata,
    .colors-custom .comment-metadata a,
    .colors-custom .no-comments,
    .colors-custom .comment-awaiting-moderation,
    .colors-custom .page-numbers.current,
    .colors-custom .page-links .page-number,
    .colors-custom .navigation-top .current-menu-item > a,
    .colors-custom .navigation-top .current_page_item > a,
    .colors-custom .main-navigation a:hover,
    .colors-custom .site-content .wp-playlist-light .wp-playlist-current-item .wp-playlist-item-artist {
    	color: hsl( 19, 50%, 46% ); /* base: #767676; */
    }
    
    .colors-custom :not( .mejs-button ) > button:hover,
    .colors-custom :not( .mejs-button ) > button:focus,
    .colors-custom input[type="button"]:hover,
    .colors-custom input[type="button"]:focus,
    .colors-custom input[type="submit"]:hover,
    .colors-custom input[type="submit"]:focus,
    .colors-custom .entry-footer .edit-link a.post-edit-link:hover,
    .colors-custom .entry-footer .edit-link a.post-edit-link:focus,
    .colors-custom .social-navigation a,
    .colors-custom .prev.page-numbers:focus,
    .colors-custom .prev.page-numbers:hover,
    .colors-custom .next.page-numbers:focus,
    .colors-custom .next.page-numbers:hover,
    .colors-custom .site-content .wp-playlist-light .wp-playlist-item:hover,
    .colors-custom .site-content .wp-playlist-light .wp-playlist-item:focus {
    	background: hsl( 19, 50%, 46% ); /* base: #767676; */
    }
    
    .colors-custom button.secondary:hover,
    .colors-custom button.secondary:focus,
    .colors-custom input[type="reset"]:hover,
    .colors-custom input[type="reset"]:focus,
    .colors-custom input[type="button"].secondary:hover,
    .colors-custom input[type="button"].secondary:focus,
    .colors-custom input[type="reset"].secondary:hover,
    .colors-custom input[type="reset"].secondary:focus,
    .colors-custom input[type="submit"].secondary:hover,
    .colors-custom input[type="submit"].secondary:focus,
    .colors-custom hr {
    	background: hsl( 19, 50%, 73% ); /* base: #bbb; */
    }
    
    .colors-custom input[type="text"],
    .colors-custom input[type="email"],
    .colors-custom input[type="url"],
    .colors-custom input[type="password"],
    .colors-custom input[type="search"],
    .colors-custom input[type="number"],
    .colors-custom input[type="tel"],
    .colors-custom input[type="range"],
    .colors-custom input[type="date"],
    .colors-custom input[type="month"],
    .colors-custom input[type="week"],
    .colors-custom input[type="time"],
    .colors-custom input[type="datetime"],
    .colors-custom input[type="datetime-local"],
    .colors-custom input[type="color"],
    .colors-custom textarea,
    .colors-custom select,
    .colors-custom fieldset,
    .colors-custom .widget .tagcloud a:hover,
    .colors-custom .widget .tagcloud a:focus,
    .colors-custom .widget.widget_tag_cloud a:hover,
    .colors-custom .widget.widget_tag_cloud a:focus,
    .colors-custom .wp_widget_tag_cloud a:hover,
    .colors-custom .wp_widget_tag_cloud a:focus {
    	border-color: hsl( 19, 50%, 73% ); /* base: #bbb; */
    }
    
    .colors-custom thead th {
    	border-bottom-color: hsl( 19, 50%, 73% ); /* base: #bbb; */
    }
    
    .colors-custom .entry-footer .cat-links .icon,
    .colors-custom .entry-footer .tags-links .icon {
    	color: hsl( 19, 50%, 73% ); /* base: #bbb; */
    }
    
    .colors-custom button.secondary,
    .colors-custom input[type="reset"],
    .colors-custom input[type="button"].secondary,
    .colors-custom input[type="reset"].secondary,
    .colors-custom input[type="submit"].secondary,
    .colors-custom .prev.page-numbers,
    .colors-custom .next.page-numbers {
    	background-color: hsl( 19, 50%, 87% ); /* base: #ddd; */
    }
    
    .colors-custom .widget .tagcloud a,
    .colors-custom .widget.widget_tag_cloud a,
    .colors-custom .wp_widget_tag_cloud a {
    	border-color: hsl( 19, 50%, 87% ); /* base: #ddd; */
    }
    
    .colors-custom.twentyseventeen-front-page article:not(.has-post-thumbnail):not(:first-child),
    .colors-custom .widget ul li {
    	border-top-color: hsl( 19, 50%, 87% ); /* base: #ddd; */
    }
    
    .colors-custom .widget ul li {
    	border-bottom-color: hsl( 19, 50%, 87% ); /* base: #ddd; */
    }
    
    .colors-custom pre,
    .colors-custom mark,
    .colors-custom ins {
    	background: hsl( 19, 50%, 93% ); /* base: #eee; */
    }
    
    .colors-custom .navigation-top,
    .colors-custom .main-navigation > div > ul,
    .colors-custom .pagination,
    .colors-custom .comments-pagination,
    .colors-custom .entry-footer,
    .colors-custom .site-footer {
    	border-top-color: hsl( 19, 50%, 93% ); /* base: #eee; */
    }
    
    .colors-custom .navigation-top,
    .colors-custom .main-navigation li,
    .colors-custom .entry-footer,
    .colors-custom .single-featured-image-header,
    .colors-custom .site-content .wp-playlist-light .wp-playlist-item,
    .colors-custom tr {
    	border-bottom-color: hsl( 19, 50%, 93% ); /* base: #eee; */
    }
    
    .colors-custom .site-content .wp-playlist-light {
    	border-color: hsl( 19, 50%, 93% ); /* base: #eee; */
    }
    
    .colors-custom .site-header,
    .colors-custom .single-featured-image-header {
    	background-color: hsl( 19, 50%, 98% ); /* base: #fafafa; */
    }
    
    .colors-custom button,
    .colors-custom input[type="button"],
    .colors-custom input[type="submit"],
    .colors-custom .entry-footer .edit-link a.post-edit-link,
    .colors-custom .social-navigation a,
    .colors-custom .site-content .wp-playlist-light a.wp-playlist-caption:hover,
    .colors-custom .site-content .wp-playlist-light .wp-playlist-item:hover a,
    .colors-custom .site-content .wp-playlist-light .wp-playlist-item:focus a,
    .colors-custom .site-content .wp-playlist-light .wp-playlist-item:hover,
    .colors-custom .site-content .wp-playlist-light .wp-playlist-item:focus,
    .colors-custom .prev.page-numbers:focus,
    .colors-custom .prev.page-numbers:hover,
    .colors-custom .next.page-numbers:focus,
    .colors-custom .next.page-numbers:hover,
    .colors-custom.has-header-image .site-title,
    .colors-custom.has-header-video .site-title,
    .colors-custom.has-header-image .site-title a,
    .colors-custom.has-header-video .site-title a,
    .colors-custom.has-header-image .site-description,
    .colors-custom.has-header-video .site-description {
    	color: hsl( 19, 50%, 100% ); /* base: #fff; */
    }
    
    body.colors-custom,
    .colors-custom .navigation-top,
    .colors-custom .main-navigation ul {
    	background: hsl( 19, 50%, 100% ); /* base: #fff; */
    }
    
    .colors-custom .widget ul li a,
    .colors-custom .site-footer .widget-area ul li a {
    	-webkit-box-shadow: inset 0 -1px 0 hsl( 19, 50%, 100% ); /* base: rgba(255, 255, 255, 1); */
    	box-shadow: inset 0 -1px 0 hsl( 19, 50%, 100% );  /* base: rgba(255, 255, 255, 1); */
    }
    
    .colors-custom .menu-toggle,
    .colors-custom .menu-toggle:hover,
    .colors-custom .menu-toggle:focus,
    .colors-custom .menu .dropdown-toggle,
    .colors-custom .menu-scroll-down,
    .colors-custom .menu-scroll-down:hover,
    .colors-custom .menu-scroll-down:focus {
    	background-color: transparent;
    }
    
    .colors-custom .widget .tagcloud a,
    .colors-custom .widget .tagcloud a:focus,
    .colors-custom .widget .tagcloud a:hover,
    .colors-custom .widget.widget_tag_cloud a,
    .colors-custom .widget.widget_tag_cloud a:focus,
    .colors-custom .widget.widget_tag_cloud a:hover,
    .colors-custom .wp_widget_tag_cloud a,
    .colors-custom .wp_widget_tag_cloud a:focus,
    .colors-custom .wp_widget_tag_cloud a:hover,
    .colors-custom .entry-footer .edit-link a.post-edit-link:focus,
    .colors-custom .entry-footer .edit-link a.post-edit-link:hover {
    	-webkit-box-shadow: none !important;
    	box-shadow: none !important;
    }
    
    /* Reset non-customizable hover styling for links */
    .colors-custom .entry-content a:hover,
    .colors-custom .entry-content a:focus,
    .colors-custom .entry-summary a:hover,
    .colors-custom .entry-summary a:focus,
    .colors-custom .comment-content a:focus,
    .colors-custom .comment-content a:hover,
    .colors-custom .widget a:hover,
    .colors-custom .widget a:focus,
    .colors-custom .site-footer .widget-area a:hover,
    .colors-custom .site-footer .widget-area a:focus,
    .colors-custom .posts-navigation a:hover,
    .colors-custom .posts-navigation a:focus,
    .colors-custom .widget_authors a:hover strong,
    .colors-custom .widget_authors a:focus strong {
    	-webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 3px 0 rgba(0, 0, 0, 1);
    	box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 3px 0 rgba(0, 0, 0, 1);
    }
    
    .colors-custom .gallery-item a,
    .colors-custom .gallery-item a:hover,
    .colors-custom .gallery-item a:focus {
    	-webkit-box-shadow: none;
    	box-shadow: none;
    }
    
    @media screen and (min-width: 48em) {
    
    	.colors-custom .nav-links .nav-previous .nav-title .icon,
    	.colors-custom .nav-links .nav-next .nav-title .icon {
    		color: hsl( 19, 50%, 20% ); /* base: #222; */
    	}
    
    	.colors-custom .main-navigation li li:hover,
    	.colors-custom .main-navigation li li.focus {
    		background: hsl( 19, 50%, 46% ); /* base: #767676; */
    	}
    
    	.colors-custom .navigation-top .menu-scroll-down {
    		color: hsl( 19, 50%, 46% ); /* base: #767676; */;
    	}
    
    	.colors-custom abbr[title] {
    		border-bottom-color: hsl( 19, 50%, 46% ); /* base: #767676; */;
    	}
    
    	.colors-custom .main-navigation ul ul {
    		border-color: hsl( 19, 50%, 73% ); /* base: #bbb; */
    		background: hsl( 19, 50%, 100% ); /* base: #fff; */
    	}
    
    	.colors-custom .main-navigation ul li.menu-item-has-children:before,
    	.colors-custom .main-navigation ul li.page_item_has_children:before {
    		border-bottom-color: hsl( 19, 50%, 73% ); /* base: #bbb; */
    	}
    
    	.colors-custom .main-navigation ul li.menu-item-has-children:after,
    	.colors-custom .main-navigation ul li.page_item_has_children:after {
    		border-bottom-color: hsl( 19, 50%, 100% ); /* base: #fff; */
    	}
    
    	.colors-custom .main-navigation li li.focus > a,
    	.colors-custom .main-navigation li li:focus > a,
    	.colors-custom .main-navigation li li:hover > a,
    	.colors-custom .main-navigation li li a:hover,
    	.colors-custom .main-navigation li li a:focus,
    	.colors-custom .main-navigation li li.current_page_item a:hover,
    	.colors-custom .main-navigation li li.current-menu-item a:hover,
    	.colors-custom .main-navigation li li.current_page_item a:focus,
    	.colors-custom .main-navigation li li.current-menu-item a:focus {
    		color: hsl( 19, 50%, 100% ); /* base: #fff; */
    	}
    }	</style>
    			<style id="twentyseventeen-custom-header-styles" type="text/css">
    				.site-title a,
    		.colors-dark .site-title a,
    		.colors-custom .site-title a,
    		body.has-header-image .site-title a,
    		body.has-header-video .site-title a,
    		body.has-header-image.colors-dark .site-title a,
    		body.has-header-video.colors-dark .site-title a,
    		body.has-header-image.colors-custom .site-title a,
    		body.has-header-video.colors-custom .site-title a,
    		.site-description,
    		.colors-dark .site-description,
    		.colors-custom .site-description,
    		body.has-header-image .site-description,
    		body.has-header-video .site-description,
    		body.has-header-image.colors-dark .site-description,
    		body.has-header-video.colors-dark .site-description,
    		body.has-header-image.colors-custom .site-description,
    		body.has-header-video.colors-custom .site-description {
    			color: #dd3535;
    		}
    		</style>
    		<link rel="icon" href="https://www.paulen.no/wp-content/uploads/2018/11/cropped-ani_anemometer1-1-1-32x32.gif" sizes="32x32" />
    <link rel="icon" href="https://www.paulen.no/wp-content/uploads/2018/11/cropped-ani_anemometer1-1-1-192x192.gif" sizes="192x192" />
    <link rel="apple-touch-icon" href="https://www.paulen.no/wp-content/uploads/2018/11/cropped-ani_anemometer1-1-1-180x180.gif" />
    <meta name="msapplication-TileImage" content="https://www.paulen.no/wp-content/uploads/2018/11/cropped-ani_anemometer1-1-1-270x270.gif" />
    </head>
    
    

    Været i Paulen på Flekkerøy

    Recherche META Description de la page

    Recherche META Keywords de la page

    UPDATE DOMAINES SET server='nginx',redirection='https://www.paulen.no/',Status='200',err='',[TITRE]=N'Været i Paulen på Flekkerøy',[DESCRIPTION]=N'',[KEYWORDS]=N'' WHERE id=2838838
  • 0

    Været i Paulen på Flekkerøy

  • 0. Været (5)
  • --------->0
  • 1. i (1)
  • --------->0
  • 2. Paulen (6)
  • --------->0
  • 3. (2)
  • --------->0
  • 4. Flekkerøy (9)
  • --------->0
    INSERT INTO KEYWORDS (keyword,id_domaine) VALUES (N'Været',2838838),(N'i',2838838),(N'Paulen',2838838),(N'på',2838838),(N'Flekkerøy',2838838)